File size: 424 Bytes
4f50b67
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SolverForge field-service routing application.
//!
//! The crate follows the same teaching shape as the other use cases: `domain`
//! defines the planning model, `constraints` defines scoring, `data` builds the
//! deterministic Bergamo instance, `solver` owns retained runtime jobs, and
//! `api` exposes the browser-facing HTTP surface.

pub mod api;
pub mod constraints;
pub mod data;
pub mod domain;
pub mod solver;