|
|
real(wp) | rtol = -1._wp |
| | Relative tolerance for the solver.
|
| |
|
real(wp) | atol = -1._wp |
| | Absolute tolerance for the solver.
|
| |
|
integer | max_iter = -1 |
| | Maximum number of iterations for the solver.
|
| |
|
integer | verbosity = -1 |
| | Verbosity level for the solver (default: VERBOSITY_WARN_ON_FAILURE)
|
| |
◆ make_solver_solve_options()
| type(solversolveoptions) function m_mform_solver::solversolveoptions::make_solver_solve_options |
( |
real(wp), intent(in), optional | rtol, |
|
|
real(wp), intent(in), optional | atol, |
|
|
integer, intent(in), optional | max_iter, |
|
|
character(*), intent(in), optional | verbosity, |
|
|
integer, intent(in), optional | verbosity_flag ) |
Create a SolverSolveOptions object from the provided arguments.
- Parameters
-
| [in] | rtol | _(optional)_ The relative tolerance for the solver (default is 1.e-10, or the value set in the init() method) |
| [in] | atol | _(optional)_ The absolute tolerance for the solver (default is 1.e-20, or the value set in the init() method) |
| [in] | max_iter | _(optional)_ The maximum number of iterations for the solver (default is the value set in the init() method) |
| [in] | verbosity | _(optional)_ The verbosity level for the solver (default is the value set in the init() method) |
| [in] | verbosity_flag | _(optional)_ The verbosity flag for the solver (default is the value set in the init() method) |
The documentation for this interface was generated from the following file:
- /builds/rwr/bspline_feec/src/mform/m_mform_solver.f90