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

8 lines
132 B
C++

#pragma once
#include "DFA/DFAGraph.hpp"
namespace converters {
using namespace DFA;
DFAGraph DFAGraphToMinDFAGraph(DFAGraph&&);
}