dfa_state_node__initialize_transition_top Subroutine

private pure subroutine dfa_state_node__initialize_transition_top(self, top)

This subroutine initialize the top index of the transition array of the dfa node with the value of the given argument.

Type Bound

dfa_state_node_t

Arguments

Type IntentOptional Attributes Name
class(dfa_state_node_t), intent(inout) :: self
integer, intent(in) :: top

Source Code

   pure subroutine dfa_state_node__initialize_transition_top(self, top)
      implicit none
      class(dfa_state_node_t), intent(inout) :: self
      integer, intent(in) :: top

      self%tra_top = top
   end subroutine dfa_state_node__initialize_transition_top