This subroutine initialize the top index of the transition array of the dfa node with the value of the given argument.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(dfa_state_node_t), | intent(inout) | :: | self | |||
integer, | intent(in) | :: | top |
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