solverforge-solver 0.8.6

Solver engine for SolverForge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod bindings;
mod construction;
mod move_types;
mod selectors;

pub use bindings::{descriptor_has_bindings, standard_target_matches, standard_work_remaining};
pub use construction::{
    build_descriptor_construction, DescriptorConstruction, DescriptorEntityPlacer,
};
pub use move_types::{DescriptorChangeMove, DescriptorEitherMove, DescriptorSwapMove};
pub use selectors::{
    build_descriptor_move_selector, DescriptorChangeMoveSelector, DescriptorLeafSelector,
    DescriptorSwapMoveSelector,
};

#[cfg(test)]
mod tests;