Modules/Language/public/ContextFreeAutomata.hpp
IlyaShurupov 70b6bf4d77 tmp
2024-11-24 22:41:13 +03:00

18 lines
326 B
C++

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