formalang/include/converters/DFAToFDFA.hpp

8 lines
165 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 DFAGraphToFDFAGraph(DFAGraph&&, const std::vector<char>& alphabet);
}