formalang/include/converters/DFAToMinDFA.hpp

8 lines
122 B
C++
Raw Normal View History

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