1 2 3 4 5 6 7 8 9 10 11 12 13
/// Module for CFOP method solver. pub mod cfop; /// Module for LBL method. pub mod lbl; /// Module for Roux method. pub mod roux; /// Module for min2phase method. pub mod min2phase; pub use cfop::CFOPSolver; pub use lbl::LBLSolver; pub use roux::RouxSolver; pub use min2phase::Min2PhaseSolver;