formalang/include/converters/DFAToRegular.hpp

9 lines
149 B
C++
Raw Normal View History

2021-10-05 12:01:30 +00:00
#pragma once
#include "DFA/DFAGraph.hpp"
#include <string>
namespace converters {
using namespace DFA;
std::string DFAGraphToRegular(DFAGraph&&);
}