Skip to main content

solverforge_solver/phase/
mod.rs

1/* Solver phases for different solving strategies
2
3Phases are the main building blocks of solving:
4- ConstructionHeuristicPhase: Builds an initial solution
5- LocalSearchPhase: Improves an existing solution
6- ExhaustiveSearchPhase: Explores entire solution space
7- PartitionedSearchPhase: Parallel solving via partitioning
8- VndPhase: Variable Neighborhood Descent
9*/
10
11pub mod construction;
12pub mod exhaustive;
13pub mod localsearch;
14pub mod partitioned;
15mod traits;
16mod tuple_impl;
17pub mod vnd;
18
19pub use traits::Phase;