This crate provides a general template for Branch & Bound algorithms.
The base building block is the BranchingOperator
trait and the BoundingOperator
trait. Implement these for your custom structs that represent solutions and run the use the BranchAndBound
struct to run the algorithm.
See the documentation for more details and an example.