rkf108_order Function

private pure function rkf108_order(me) result(p)

Returns the order of the rkf108 method.

Type Bound

rkf108_class

Arguments

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

Return Value integer

order of the method


Source Code

    pure function rkf108_order(me) result(p)

    implicit none

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

    p = 10

    end function rkf108_order