Closed tcunis closed 2 years ago
This pull request adds a info structure to the iterative which can be used to store information about various subproblems. The info structure is handled via the Step.run method interface:
Step.run
[sol,info,stop] = run(obj,prob,info,sol,symbols,assigns,varargin);
After each step, the info structure is logged in the Iteration.run routine.
Iteration.run
This pull request also adds a few minor improvements and corrections.
@renatoloureiro, pray check if this PR fully addresses Issue #9?
This pull request adds a info structure to the iterative which can be used to store information about various subproblems. The info structure is handled via the
Step.run
method interface:After each step, the info structure is logged in the
Iteration.run
routine.This pull request also adds a few minor improvements and corrections.