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

9 lines
149 B
C++

#pragma once
#include "DFA/DFAGraph.hpp"
#include <string>
namespace converters {
using namespace DFA;
std::string DFAGraphToRegular(DFAGraph&&);
}