forgex_nfa_graph_m Module

This module defines the nfa_graph_t derived-type which represents the NFA graph.



Derived Types

type, public ::  nfa_graph_t

Components

Type Visibility Attributes Name Initial
integer(kind=int32), public :: entry = 0
integer(kind=int32), public :: exit = 0
type(nfa_state_node_t), public, allocatable :: graph(:)
integer(kind=int32), public :: nfa_base = NFA_STATE_BASE
integer(kind=int32), public :: nfa_limit = NFA_STATE_LIMIT
integer(kind=int32), public :: top = 0

Type-Bound Procedures

procedure, public :: build => nfa_graph__build
procedure, public :: collect_epsilon_transition => nfa_graph__collect_epsilon_transition
procedure, public :: disjoin => nfa_graph__disjoin
procedure, public :: is_exceeded => nfa_graph__is_exceeded
procedure, public :: mark_epsilon_transition => nfa_graph__mark_epsilon_transition
procedure, public :: new_nfa_node => nfa_graph__new_node
procedure, public :: print => nfa_graph__print
procedure, public :: reallocate => nfa_graph__reallocate

Functions

public pure function nfa_graph__is_exceeded(self) result(ret)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(in) :: self

Return Value logical


Subroutines

public pure subroutine disjoin_nfa_each_transition(transition, seg_list)

This subroutine updates the NFA state transitions by disjoining the segments.

Read more…

Arguments

Type IntentOptional Attributes Name
type(nfa_transition_t), intent(inout) :: transition
type(segment_t), intent(in) :: seg_list(:)

public pure recursive subroutine generate_nfa(tree, idx, nfa, entry_i, exit_i)

Arguments

Type IntentOptional Attributes Name
type(tree_t), intent(in) :: tree
integer(kind=int32), intent(in) :: idx
type(nfa_graph_t), intent(inout) :: nfa
integer(kind=int32), intent(in) :: entry_i
integer(kind=int32), intent(in) :: exit_i

public pure recursive subroutine generate_nfa_closure(tree, idx, nfa, entry_i, exit_i)

Arguments

Type IntentOptional Attributes Name
type(tree_t), intent(in) :: tree
integer(kind=int32), intent(in) :: idx
type(nfa_graph_t), intent(inout) :: nfa
integer(kind=int32), intent(in) :: entry_i
integer(kind=int32), intent(in) :: exit_i

public pure recursive subroutine generate_nfa_concatenate(tree, idx, nfa, entry_i, exit_i)

Arguments

Type IntentOptional Attributes Name
type(tree_t), intent(in) :: tree
integer(kind=int32), intent(in) :: idx
type(nfa_graph_t), intent(inout) :: nfa
integer(kind=int32), intent(in) :: entry_i
integer(kind=int32), intent(in) :: exit_i

public pure subroutine nfa_graph__build(self, tree, entry_i, exit_i, entire)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(inout) :: self
type(tree_t), intent(in) :: tree
integer(kind=int32), intent(inout) :: entry_i
integer(kind=int32), intent(inout) :: exit_i
type(cube_t), intent(inout) :: entire

public pure subroutine nfa_graph__collect_epsilon_transition(self, state_set)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(in) :: self
type(nfa_state_set_t), intent(inout) :: state_set

public pure subroutine nfa_graph__disjoin(self, cube)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(inout) :: self
type(cube_t), intent(inout) :: cube

public pure recursive subroutine nfa_graph__mark_epsilon_transition(self, state_set, idx)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(in) :: self
type(nfa_state_set_t), intent(inout) :: state_set
integer, intent(in) :: idx

public pure subroutine nfa_graph__new_node(self)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(inout) :: self

public subroutine nfa_graph__print(self, uni, nfa_exit)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(in) :: self
integer(kind=int32), intent(in) :: uni
integer(kind=int32), intent(in) :: nfa_exit

public pure subroutine nfa_graph__reallocate(self)

Arguments

Type IntentOptional Attributes Name
class(nfa_graph_t), intent(inout) :: self