formalang/include/converters/InvertFDFA.hpp
2021-10-05 17:03:03 +03:00

8 lines
126 B
C++

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