free Subroutine

private elemental subroutine free(self)

Free dynamic memory.

Arguments

TypeIntentOptionalAttributesName
class(option), intent(inout) :: self

Option data.


Contents

Source Code


Source Code

  elemental subroutine free(self)
  !< Free dynamic memory.
  class(option), intent(inout) :: self !< Option data.

  call self%oname%free
  call self%ovals%free
  call self%ocomm%free
  endsubroutine free