File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1
1
name = " DistributedFactorGraphs"
2
2
uuid = " b5cc3c7e-6572-11e9-2517-99fb8daf2f04"
3
- version = " 0.23.5 "
3
+ version = " 0.23.6 "
4
4
5
5
[deps ]
6
6
Base64 = " 2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
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
You can’t perform that action at this time.
0 commit comments