1
Fork 0
mirror of https://github.com/Jaxan/hybrid-ads.git synced 2025-04-27 15:07:45 +02:00
hybrid-ads/lib/read_mealy_from_txt.hpp
2015-05-13 17:53:36 +02:00

15 lines
433 B
C++

#pragma once
#include "types.hpp"
#include "read_mealy_from_dot.hpp"
#include <iosfwd>
struct mealy;
/// \brief reads a mealy machine from plain txt file (as provided by A. T. Endo)
/// States, inputs and outputs in these files are already integral (and contiguous)
mealy read_mealy_from_txt(std::istream & in);
mealy read_mealy_from_txt(std::string const & filename);
translation create_translation_for_mealy(mealy const & m);