formalang/include/converters/NFAToDFA.hpp
2021-10-05 15:01:30 +03:00

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