File size: 311 Bytes
195a426 |
1 2 3 4 5 6 7 8 9 10 11 12 |
//! Employee Scheduling Quickstart for SolverForge
//!
//! This library provides the domain model, typed constraints, and solver for
//! employee scheduling optimization.
//!
//! Uses zero-erasure typed constraints via `TypedScoreDirector`.
pub mod api;
pub mod constraints;
pub mod demo_data;
pub mod domain;
|