formalang/include/converters/RegularToNFA.hpp
2021-10-05 16:11:24 +03:00

11 lines
192 B
C++

#pragma once
#include "regular/RegularTree.hpp"
#include "NFA/NFAGraph.hpp"
namespace converters {
using namespace NFA;
using namespace regular;
NFAGraph RegularToNFAGraph(RegularTree&&);
}