rkf1412_order Function

private pure function rkf1412_order(me) result(p)

Returns the order of the rkf1412 method.

Type Bound

rkf1412_class

Arguments

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

Return Value integer

order of the method


Source Code

    pure function rkf1412_order(me) result(p)

    implicit none

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

    p = 14

    end function rkf1412_order