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
9
10
11
12
// Does not work with backticks.
// #![doc = include_str!("../README.md")]

//! See [README.md](https://github.com/thomasbratt/clockwork/blob/main/core/README.md) for a description
//!
mod bytecode;
mod execution;
mod instruction;

pub use bytecode::*;
pub use execution::*;
pub use instruction::*;