watchmaker_vm 1.0.1

A Rust implementation of a virtual machine for use with genetic algorithms.
Documentation
1
2
3
4
5
6
7
use crate::instruction::mode::Mode;

#[derive(Clone, Debug, PartialEq)]
pub enum RightDouble {
    State(u16, Mode),
    Output(u16, Mode),
}