root_method Derived Type

type, public :: root_method

a type to define enums for the different methods


Components

Type Visibility Attributes Name Initial
integer, private :: id = 0

unique ID code for the method

character(len=name_len), private :: name = ''

name of the method


Source Code

    type,public :: root_method
        !! a type to define enums for the different methods
        private
        integer :: id = 0 !! unique ID code for the method
        character(len=name_len) :: name = '' !! name of the method
    end type root_method