This commit is contained in:
IlyaShurupov 2024-02-07 19:20:29 +03:00 committed by Ilusha
parent 81a2247bf2
commit 4f88c45c9e
8 changed files with 120 additions and 117 deletions

View 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) {}
};
}