We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e49d1c4 commit ca115a2Copy full SHA for ca115a2
src/Serialization/services/DispatchPackedConversions.jl
@@ -50,7 +50,10 @@ function reconstFactorData(
50
certainhypo = packed.certainhypo,
51
inflation = packed.inflation,
52
userCache,
53
- _blockRecursion=!getSolverParams(dfg).attemptGradients,
+ # Block recursion if NoSolverParams or if set to not attempt gradients.
54
+ _blockRecursion=
55
+ getSolverParams(dfg) isa NoSolverParams ||
56
+ !getSolverParams(dfg).attemptGradients,
57
)
58
#
59
0 commit comments