Skip to main content

lgp/
lib.rs

1//#![warn(rustdoc::all)]
2//#![warn(missing_docs)]
3
4//! A library to solve problems using linear genetic programming!
5//!
6//! Provides a bootstrapped implementation to help you start exploring problems immediately.
7pub mod core;
8pub mod extensions;
9pub mod problems;
10pub mod utils;