last_run Function

private pure function last_run(this) result(ir)

Type Bound

core_space_t

Arguments

Type IntentOptional Attributes Name
class(core_space_t), intent(in) :: this

Return Value integer


Contents

Source Code


Source Code

    pure function last_run(this) result(ir)
        class(core_space_t), intent(in) :: this
        integer :: ir

        ir = this%max_run
    end function last_run