formalang/include/converters/RegularToNFA.hpp

11 lines
185 B
C++
Raw Normal View History

2021-10-05 12:01:30 +00:00
#pragma once
#include "regular/RegularTree.hpp"
#include "NFA/NFATree.hpp"
namespace converters {
using namespace NFA;
using namespace regular;
NFATree RegularToNFA(RegularTree&&);
}