formalang/include/converters/DFAToMinDFA.hpp

8 lines
132 B
C++
Raw Permalink Normal View History

2021-10-05 12:01:30 +00:00
#pragma once
#include "DFA/DFAGraph.hpp"
namespace converters {
using namespace DFA;
2021-10-05 13:11:24 +00:00
DFAGraph DFAGraphToMinDFAGraph(DFAGraph&&);
2021-10-05 12:01:30 +00:00
}