reset_le_grids_config Subroutine

private subroutine reset_le_grids_config(self)

Resets the config object to the initial empty state

Type Bound

le_grids_config_type

Arguments

Type IntentOptional Attributes Name
class(le_grids_config_type), intent(inout) :: self

Contents

Source Code


Source Code

  subroutine reset_le_grids_config(self)
    class(le_grids_config_type), intent(in out) :: self
    type(le_grids_config_type) :: empty
    select type (self)
    type is (le_grids_config_type)
       self = empty
    end select
  end subroutine reset_le_grids_config