nfa_transition_t Derived Type

type, public :: nfa_transition_t


Components

Type Visibility Attributes Name Initial
type(cube_t), public :: c
integer(kind=int32), public :: dst = NFA_NULL_TRANSITION
logical, public :: is_registered = .false.
integer(kind=int32), public :: own_j = NFA_NULL_TRANSITION

Source Code

   type, public :: nfa_transition_t
      type(cube_t) :: c
      integer(int32) :: dst = NFA_NULL_TRANSITION
      integer(int32) :: own_j = NFA_NULL_TRANSITION
      logical        :: is_registered = .false.
   end type nfa_transition_t