watchmaker_vm 1.0.1

A Rust implementation of a virtual machine for use with genetic algorithms.
Documentation
mod code_offset;
#[allow(clippy::module_inception)]
mod instruction;
mod left_double;
mod left_integer;
mod mode;
mod operand;
mod right_double;
mod right_integer;

pub use code_offset::*;
pub use instruction::Instruction::*;
pub use instruction::*;
pub use left_double::*;
pub use left_integer::*;
pub use mode::*;
pub use operand::*;
pub use right_double::*;
pub use right_integer::*;