File tree Expand file tree Collapse file tree 5 files changed +37
-6
lines changed Expand file tree Collapse file tree 5 files changed +37
-6
lines changed Original file line number Diff line number Diff line change 18
18
fail-fast : false
19
19
matrix :
20
20
version :
21
- - ' ~ 1.10.0-0 '
21
+ - ' 1.10'
22
22
- ' nightly'
23
23
os :
24
24
- ubuntu-latest
82
82
- name : Setup julia
83
83
uses : julia-actions/setup-julia@v1
84
84
with :
85
- version : 1.9
85
+ version : ' 1.10 '
86
86
arch : x64
87
87
88
88
- name : Build Docs
Original file line number Diff line number Diff line change @@ -37,28 +37,39 @@ GraphPlot = "a2cc645c-3eea-5389-862e-a155d0052231"
37
37
DFGPlots = " GraphPlot"
38
38
39
39
[compat ]
40
+ Aqua = " 0.8"
41
+ Base64 = " 1.10"
40
42
CSV = " 0.10"
41
43
CodecZlib = " 0.7"
42
44
Colors = " 0.10, 0.11, 0.12"
45
+ DataStructures = " 0.18"
46
+ Dates = " 1.10"
43
47
Distributions = " 0.23, 0.24, 0.25"
44
48
DocStringExtensions = " 0.8, 0.9"
45
49
FileIO = " 1"
46
50
GraphPlot = " 0.5.0"
47
51
Graphs = " 1.4"
52
+ InteractiveUtils = " 1.10"
48
53
JSON3 = " 1"
54
+ LinearAlgebra = " 1.10"
49
55
ManifoldsBase = " 0.14, 0.15"
56
+ Manifolds = " 0.9"
50
57
OrderedCollections = " 1.4"
51
58
Pkg = " 1.4, 1.5"
52
59
ProgressMeter = " 1"
53
60
RecursiveArrayTools = " 2, 3"
54
61
Reexport = " 1"
55
62
SHA = " 0.7, 1"
63
+ SparseArrays = " 1.10"
56
64
StaticArrays = " 1"
65
+ Statistics = " 1.10"
57
66
StructTypes = " 1"
58
67
Tar = " 1.9"
68
+ Test = " 1.10"
59
69
TensorCast = " 0.3.3, 0.4"
60
70
TimeZones = " 1.3.1"
61
- julia = " 1.9"
71
+ UUIDs = " 1.10"
72
+ julia = " 1.10"
62
73
63
74
[extras ]
64
75
Aqua = " 4c88cf16-eb10-579e-8560-4a9242c79595"
Original file line number Diff line number Diff line change 124
124
# # Additional Downstream dispatches
125
125
# # =================================
126
126
127
+ """
128
+ $SIGNATURES
129
+
130
+ Default non-parametric graph solution.
131
+ """
127
132
function solveGraph! end
133
+
134
+ """
135
+ $SIGNATURES
136
+
137
+ Standard parametric graph solution (Experimental).
138
+ """
128
139
function solveGraphParametric! end
Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ loadDFG!(dfg, "/tmp/savedgraph.tar.gz")
91
91
# Use the DFG as you do normally.
92
92
ls(dfg)
93
93
```
94
+
95
+ See also: [`loadDFG`](@ref), [`saveDFG`](@ref)
94
96
"""
95
97
function loadDFG! (
96
98
dfgLoadInto:: AbstractDFG ,
@@ -218,6 +220,13 @@ function loadDFG!(
218
220
return dfgLoadInto
219
221
end
220
222
223
+ """
224
+ $SIGNATURES
225
+
226
+ Convenience graph loader into a default `LocalDFG`.
227
+
228
+ See also: [`loadDFG!`](@ref), [`saveDFG`](@ref)
229
+ """
221
230
function loadDFG (file:: AbstractString )
222
231
223
232
# add if doesn't have .tar.gz extension
@@ -238,7 +247,7 @@ function loadDFG(file::AbstractString)
238
247
fgPacked = JSON3. read (jstr, GraphsDFGs. PackedGraphsDFG)
239
248
dfg = GraphsDFGs. unpackDFGMetadata (fgPacked)
240
249
241
- @debug " DFG.loadDFG! is deleting a temp folder created during unzip, $loaddir "
250
+ @debug " DFG.loadDFG is deleting a temp folder created during unzip, $loaddir "
242
251
# cleanup temporary folder
243
252
Base. rm (loaddir; recursive = true , force = true )
244
253
Original file line number Diff line number Diff line change 148
148
Aqua. test_ambiguities ([DistributedFactorGraphs])
149
149
Aqua. test_unbound_args (DistributedFactorGraphs)
150
150
Aqua. test_undefined_exports (DistributedFactorGraphs)
151
- Aqua. test_piracy (DistributedFactorGraphs)
151
+ Aqua. test_piracies (DistributedFactorGraphs)
152
152
Aqua. test_project_extras (DistributedFactorGraphs)
153
153
Aqua. test_stale_deps (DistributedFactorGraphs; ignore = [:Colors ])
154
154
Aqua. test_deps_compat (DistributedFactorGraphs)
155
- Aqua. test_project_toml_formatting (DistributedFactorGraphs)
155
+ # Aqua.test_project_toml_formatting(DistributedFactorGraphs) # deprecated in Aqua.jl v0.8
156
156
end
You can’t perform that action at this time.
0 commit comments