first_run Function

private pure function first_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 first_run(this) result(ir)
        class(core_space_t), intent(in) :: this
        integer :: ir

        ir = this%min_run
    end function first_run