MimIR 0.1
MimIR is my Intermediate Representation
Loading...
Searching...
No Matches
nfa2dfa.h
Go to the documentation of this file.
1#pragma once
2
3#include <memory>
4
5#include "automaton/dfa.h"
6#include "automaton/nfa.h"
7
8namespace automaton {
9std::unique_ptr<DFA> nfa2dfa(const NFA& nfa);
10} // namespace automaton
std::unique_ptr< DFA > nfa2dfa(const NFA &nfa)
Definition nfa2dfa.cpp:33