tmp
This commit is contained in:
parent
6279323a84
commit
70b6bf4d77
8 changed files with 120 additions and 117 deletions
18
Language/public/ContextFreeAutomata.hpp
Normal file
18
Language/public/ContextFreeAutomata.hpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "Strings.hpp"
|
||||
#include "Automata.hpp"
|
||||
#include "Buffer2D.hpp"
|
||||
|
||||
namespace tp {
|
||||
|
||||
template <typename tAlphabetType, typename tStateType>
|
||||
class ContextFreeAutomata {
|
||||
|
||||
public:
|
||||
ContextFreeAutomata() = default;
|
||||
|
||||
void construct(const FiniteStateAutomation<tAlphabetType, tStateType>& automata) {}
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue