14 lines
360 B
C++
14 lines
360 B
C++
![]() |
#pragma once
|
||
|
#include "NFA/NFATree.hpp"
|
||
|
#include "DFA/DFAGraph.hpp"
|
||
|
|
||
|
namespace converters {
|
||
|
using namespace NFA;
|
||
|
using namespace DFA;
|
||
|
NFATree AddAllEpsilonTransitions(NFATree&&);
|
||
|
NFATree AddAllPossibleStartFilnal(NFATree&&);
|
||
|
NFATree DeleteEpsilonTransitions(NFATree&&);
|
||
|
NFATree DeleteTransitionsByOneLetter(NFATree&&);
|
||
|
DFAGraph NFATreeToDFAGraph(NFATree&&);
|
||
|
}
|