#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&&); }