solverforge-solver 0.18.0

Solver engine for SolverForge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shared list-access protocol for typed and dynamic planning-list slots.
//!
//! Canonical list kernels import this declaration-only module. Physical
//! typed/dynamic dispatch lives in sibling modules; route and savings stay
//! separate semantic bundles.

mod dynamic;
mod route;
mod static_access;
mod types;

pub(crate) use route::{RouteAccess, RouteSequenceAccess, SavingsAccess};
pub(crate) use types::{ListAccess, ListAccessCapability, ListAccessError};