nfa_graph__new_node Subroutine

public pure subroutine nfa_graph__new_node(self)

Type Bound

nfa_graph_t

Arguments

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

Source Code

   pure subroutine nfa_graph__new_node(self)
      implicit none
      class(nfa_graph_t), intent(inout) :: self

      self%top = self%top + 1
   end subroutine nfa_graph__new_node