Returns the order of the RK method
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(rk_variable_step_class), | intent(in) | :: | me |
order of the method
pure function order(me) result(p) class(rk_variable_step_class),intent(in) :: me integer :: p !! order of the method type(rklib_properties) :: properties properties = me%properties() p = properties%order end function order