twips 0.12.2

Twizzle Pattern Searcher — Twisty puzzle search library
Documentation
// We explictly use `pub use` instead of `pub mod` here so that it's possible to
// tell from this single file exactly what is exported (and impossible to
// accidentally export more).

mod common;
pub use common::KPuzzleSource;
pub use common::PatternSource; // TODO // TODO

mod search_api;
pub use search_api::{search, SearchOptions};

mod gods_algorithm_api;
pub use gods_algorithm_api::{gods_algorithm, GodsAlgorithmOptions};

mod multi_phase_search;
pub use multi_phase_search::{MultiPhaseSearch, MultiPhaseSearchOptions};

mod search_phase;
pub use search_phase::SearchPhase;

mod kpuzzle_simple_mask_phase;
pub use kpuzzle_simple_mask_phase::{
    KPuzzleSimpleMaskPhase, KPuzzleSimpleMaskPhaseConstructionOptions,
};

mod compound_puzzle;
pub use compound_puzzle::{
    CompoundPuzzle, // CompoundDerivedPuzzle, PuzzleWithDerivedPattern, QuadrupleCompoundPuzzle, TripleCompoundPuzzle,
};

mod compound_derived_puzzle;
pub use compound_derived_puzzle::CompoundDerivedPuzzle;

pub mod derived_puzzle_search_phase;

mod constant_alg_search_phase;
pub use constant_alg_search_phase::ConstantAlgSearchPhase;