@@ -69,24 +69,26 @@ function ProjectionIntegrator(
69
69
projectionmethod:: ProjectionMethod ,
70
70
solvermethod:: SolverMethod ,
71
71
iguess:: Extrapolation ,
72
+ parent_solveroptions:: Options ,
72
73
parent_solvermethod:: SolverMethod ,
73
74
parent_iguess:: Extrapolation ;
74
75
kwargs...
75
76
)
76
- subint = GeometricIntegrator (problem, parent (projectionmethod), parent_solvermethod, parent_iguess)
77
- ProjectionIntegrator (problem, projectionmethod, solvermethod, iguess, subint)
77
+ subint = GeometricIntegrator (problem, parent (projectionmethod), parent_solvermethod, parent_iguess; options = parent_solveroptions )
78
+ ProjectionIntegrator (problem, projectionmethod, solvermethod, iguess, subint; kwargs ... )
78
79
end
79
80
80
81
function GeometricIntegrator (
81
82
problem:: AbstractProblem ,
82
83
method:: ProjectionMethod ;
83
84
solver = default_solver (method),
84
85
initialguess = default_iguess (method),
86
+ parent_options = default_options (),
85
87
parent_solver = default_solver (parent (method)),
86
88
parent_initialguess = default_iguess (parent (method)),
87
89
kwargs...
88
90
)
89
- ProjectionIntegrator (problem, method, solver, initialguess, parent_solver, parent_initialguess; kwargs... )
91
+ ProjectionIntegrator (problem, method, solver, initialguess, parent_options, parent_solver, parent_initialguess; kwargs... )
90
92
end
91
93
92
94
0 commit comments