1
2
3
4
5
6
7
8
9
10
// Does not work with backticks.
// #![doc = include_str!("../README.md")]

mod common;
mod genetic;
mod solver;

pub use common::*;
pub use genetic::*;
pub use solver::*;