Open
Description
DFG is about having access to various graphing technologies in a way that allows info/data/etc to be easily transferred between technologies in a standard way. For example:
# copy from one dfg to another, regardless of different SolverParams types
copyGraph!(localdfg, cgdfg, args...)
merge!(CloudDFG, FileDFG)
merge!(FileDFG, CloudDFG)
merge!(CloudDFG, LightDFG)
merge!(GraphsDFG, LightDFG)
merge!(GraffDFG, CloudDFG) # seems excessive, but its about the philosophy
# ...
updateVariables!(LigthDFG, CloudDFG)
updateVariables!(FileDFG, GraphDFG) # to illustrate point
updateVariables!(FuseDFG, LightDFG) # to illustrate point
# ...
buildSubgraph(::LightDFG, GraphDFG, ...)
buildSubgraph(::CloudDFG, LightDFG, ...)
buildSubgraph(::FileDFG, CloudDFG, ...)
# ...
Originates from hard discussions on:
- [BUG] subgraph functions not working for LightDFG #261
- Mini cleanup on solvable for GetSubgraphAroundNode on LightGraphs #214
- Copying CGDFG -> local fails with cryptic error #507
EDIT: GraphsDFG has since been archived in favor of LightDFG.