nfa__add_transition_cube Subroutine

private pure subroutine nfa__add_transition_cube(self, src, dst, cube)

Type Bound

nfa_state_node_t

Arguments

Type IntentOptional Attributes Name
class(nfa_state_node_t), intent(inout) :: self
integer(kind=int32), intent(in) :: src
integer(kind=int32), intent(in) :: dst
type(cube_t), intent(in) :: cube

Source Code

   pure subroutine nfa__add_transition_cube(self, src, dst, cube)
      implicit none
      class(nfa_state_node_t), intent(inout) :: self
      integer(int32), intent(in) :: src, dst
      type(cube_t), intent(in) :: cube

      integer :: j, k

      j = NFA_NULL_TRANSITION
      if (allocated(self%forward)) then
         do k = 1, self%forward_top
            if (dst==self%forward(k)%dst) then
               j = k
            end if
         end do
      end if

      if (j == NFA_NULL_TRANSITION) then
         j = self%forward_top
      end if

      if (.not. allocated(self%forward)) then
         call self%realloc_forward()
      end if

      call self%forward(j)%c%add(cube)
      self%forward(j)%dst = dst
      self%forward(j)%is_registered = .true.

      if (j==self%forward_top) self%forward_top = self%forward_top + 1

   end subroutine nfa__add_transition_cube