1
2
3
4
5
6
7
8
//! This module contains some pre-implemented problems for demonstration and testing purposes. To
//! implement your own problems, simply create a class that implements the ```Solution``` trait.

mod structure;
pub use structure::Structure;

mod ackley;
pub use ackley::Ackley;