11 lines
298 B
C++
11 lines
298 B
C++
#pragma once
|
|
#include "DFA/DFAGraph.hpp"
|
|
#include "FDFA/FDFAGraph.hpp"
|
|
|
|
namespace converters {
|
|
using namespace DFA;
|
|
using namespace FDFA;
|
|
DFAGraph DFAGraphToFDFAGraph(DFAGraph&&, const std::vector<char>& alphabet);
|
|
// FDFAGraph DFAGraphToFDFAGraph(DFAGraph&&, const std::vector<char>& alphabet);
|
|
}
|