1
Fork 0
mirror of https://github.com/Jaxan/hybrid-ads.git synced 2025-04-27 23:17:44 +02:00
hybrid-ads/lib/transfer_sequences.hpp
2015-03-19 17:25:34 +01:00

10 lines
265 B
C++

#pragma once
#include "types.hpp"
struct mealy;
using transfer_sequences = std::vector<word>;
transfer_sequences create_transfer_sequences(mealy const & machine, state s);
transfer_sequences create_randomized_transfer_sequences(mealy const & machine, state s);