formalang/include/converters/InvertFDFA.hpp

8 lines
126 B
C++
Raw Normal View History

2021-10-05 14:03:03 +00:00
#pragma once
#include "DFA/DFAGraph.hpp"
namespace converters {
using namespace DFA;
DFAGraph InvertFDFAGraph(DFAGraph&&);
}