rkf78_order Function

private pure function rkf78_order(me) result(p)

Returns the order of the rkf78 method.

Type Bound

rkf78_class

Arguments

Type IntentOptional Attributes Name
class(rkf78_class), intent(in) :: me

Return Value integer

order of the method


Source Code

    pure function rkf78_order(me) result(p)

    implicit none

    class(rkf78_class),intent(in) :: me
    integer                       :: p    !! order of the method

    p = 7

    end function rkf78_order