prancing_pony 1.0.0

Simple implementation of Knight's tour using backtrack
Documentation
1
2
3
4
5
6
7
8
9
10
mod matrix;
mod moves;

mod tour_guide;
mod position;

pub use tour_guide::TourInput;
pub use tour_guide::Tour;
pub use tour_guide::TourResult;
pub use tour_guide::find_solution;