run_type Derived Type

type, private :: run_type

Used to pass state around in a stack among helper functions for the ORD_SORT and SORT_INDEX algorithms


Components

Type Visibility Attributes Name Initial
integer(kind=int_index), public :: base = 0
integer(kind=int_index), public :: len = 0

Source Code

   type run_type
!! Used to pass state around in a stack among helper functions for the
!! `ORD_SORT` and `SORT_INDEX` algorithms
      integer(int_index) :: base = 0
      integer(int_index) :: len = 0
   end type run_type