7 pure module function oe_get_max_eval(this) result(n)
8 class(equation_optimizer),
intent(in) :: this
14 module subroutine oe_set_max_eval(this, n)
15 class(equation_optimizer),
intent(inout) :: this
16 integer(int32),
intent(in) :: n
21 pure module function oe_get_tol(this) result(x)
22 class(equation_optimizer),
intent(in) :: this
28 module subroutine oe_set_tol(this, x)
29 class(equation_optimizer),
intent(inout) :: this
30 real(real64),
intent(in) :: x
35 pure module function oe_get_print_status(this) result(x)
36 class(equation_optimizer),
intent(in) :: this
38 x = this%m_printStatus
42 module subroutine oe_set_print_status(this, x)
43 class(equation_optimizer),
intent(inout) :: this
44 logical,
intent(in) :: x
45 this%m_printStatus = x