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
8
use crate::instruction::mode::Mode;

#[derive(Clone, Debug, PartialEq)]
pub enum LeftInteger {
    State(u16, Mode),
    Input(u16, Mode),
    Constant(i16),
}