Run the Solver Sequence
There are different ways to run the solver sequence:
Use the methods runAll to run the entire solver configuration node:
model.sol(<soltag>).runAll
You can also use the method run(<ftag>) to run the solver sequence up to the solver feature with the tag <ftag>:
model.sol(<soltag>).run(<ftag>)
When you want to continue solving a sequence, use the method runFrom(<ftag>) to run the solver configuration from the solver feature with the tag <ftag>:
model.sol(<soltag>).runFrom(<ftag>)
Instead of using the low level API method shown above it is possible to instead use the function mphrun for starting the solver. This function also takes care of showing the progress bar.
In order to run all solvers on all studies use this command:
mphrun(model)
or use this command to run a specific study:
mphrun(model, <studytag>)
or use this command to run a specific solver:
mphrun(model, <soltag>)