copy_dfa_transition Subroutine

public pure subroutine copy_dfa_transition(src, dst)

This subroutine copies the data of a specified transition into the variables of another dfa_transition_t.

Arguments

Type IntentOptional Attributes Name
type(dfa_transition_t), intent(in) :: src
type(dfa_transition_t), intent(inout) :: dst

Source Code

   pure subroutine copy_dfa_transition(src, dst)
      implicit none
      type(dfa_transition_t), intent(in) :: src
      type(dfa_transition_t), intent(inout) :: dst

      dst%c = src%c
      dst%dst = src%dst
      dst%nfa_set = src%nfa_set
      dst%own_j = src%own_j
   end subroutine copy_dfa_transition