mirror of
https://github.com/Jaxan/hybrid-ads.git
synced 2025-04-27 15:07:45 +02:00
10 lines
292 B
C++
10 lines
292 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, uint_fast32_t random_seed);
|