# solverforge WIREFRAME
Facade crate: re-exports the public API from all sub-crates under a single `solverforge` dependency.
**Location:** `crates/solverforge/`
**Workspace Release:** `0.12.0`
The CLI lives in the standalone `solverforge-cli` repository and is not part of this workspace or facade crate.
## Dependencies
- `solverforge-core` (path) — Score types, domain traits
- `solverforge-macros` (path) — Attribute and derive macros
- `solverforge-scoring` (path) — Constraint API, Director
- `solverforge-solver` (path) — Solver engine, manager, phases
- `solverforge-config` (path) — Configuration types
- `solverforge-cvrp` (path) — CVRP domain helpers
- `solverforge-console` (path, optional) — Console output (feature-gated)
## Features
| Feature | Effect |
|---------|--------|
| `decimal` | Enables `solverforge-core/decimal` (HardSoftDecimalScore backed by rust_decimal) |
| `serde` | Enables `solverforge-core/serde` (Serialize/Deserialize for score types) |
| `console` | Enables `dep:solverforge-console` (terminal output) |
| `verbose-logging` | Enables verbose tracing output |
## File Map
```
src/
├── __internal.rs — Hidden macro support re-exports and helpers
├── cvrp.rs — CVRP facade re-exports
├── lib.rs — Top-level crate re-exports and module declarations
├── planning.rs — Planning target helpers for scalar groups, coverage groups, and conflict repair
├── prelude.rs — Prelude exports
└── stream.rs — Fluent constraint stream facade
```
## Public Re-exports
### Model Macros (from `solverforge-macros`)
- `planning_model`
- `planning_entity`
- `planning_solution`
- `problem_fact`
### Score Types (from `solverforge-core`)
- `Score` (trait)
- `SoftScore`
- `HardSoftScore`
- `HardMediumSoftScore`
- `HardSoftDecimalScore`
- `BendableScore`
### Constraint API (from `solverforge-scoring`)
- `ConstraintSet` (trait)
- `ConstraintMetadata<'a>` (borrowed constraint identity view)
- `IncrementalConstraint` (trait)
- `IncrementalUniConstraint`
- `IncrementalBiConstraint`
- `Projection` (trait)
- `ProjectionSink` (trait)
### Score Director (from `solverforge-scoring`)
- `Director` (trait)
- `ScoreDirector`
- `RecordingDirector`
### Configuration (from `solverforge-config`)
- `AcceptorConfig`
- `ConstructionHeuristicType`
- `ConstructionObligation`
- `EnvironmentMode`
- `ForagerConfig`
- `HardRegressionPolicyConfig`
- `MoveSelectorConfig`
- `MoveThreadCount`
- `PhaseConfig`
- `RecreateHeuristicType`
- `SolverConfig`
- `SolverConfigOverride`
- `UnionSelectionOrder`
### Solver (from `solverforge-solver`)
- `run_solver`
- `run_solver_with_config`
- `analyze` (free function)
- `Solvable` (trait)
- `Analyzable` (trait)
- `RepairLimits`
- `ConflictRepair`
- `CoverageGroup`
- `CoverageGroupLimits`
- `RepairCandidate`
- `RepairProvider`
- `ScalarCandidate`
- `ScalarEdit`
- `ScalarGroup`
- `ScalarGroupLimits`
- `ScalarTarget`
- `ScalarCandidateProvider`
- `SolverManager`
- `SolverRuntime`
- `SolverEvent`
- `SolverEventMetadata`
- `SolverLifecycleState`
- `SolverStatus`
- `SolverManagerError`
- `SolverSnapshot`
- `SolverSnapshotAnalysis`
- `SolverTelemetry`
- `SelectorTelemetry`
- `SolverTerminalReason`
- `ScoreAnalysis`
- `ConstraintAnalysis` (solver-level serializable analysis)
- `DefaultDistanceMeter`
- `CrossEntityDistanceMeter`
### Planning Helpers
Module: `solverforge::planning`
- `EntitySourceTargetExt` — extension trait for macro-generated model-owned
planning entity sources. `scalar(&self, variable_name)` borrows the source
and returns a `ScalarTarget<S>`, so one bound generated source can declare
multiple scalar targets for grouped scalar construction or local search.
- Scalar helpers — `ScalarTarget<S>`, `ScalarEdit<S>`, `ScalarCandidate<S>`,
`ScalarGroup<S>`, and `ScalarGroupLimits` describe public grouped-scalar
construction and local-search declarations.
- Coverage helpers — `CoverageGroup<S>` and `CoverageGroupLimits` declare
required-slot coverage construction and repair. Runtime bindings remain hidden
under `solverforge::__internal`.
- Conflict-repair helpers — `ConflictRepair<S>`, `RepairCandidate<S>`, and
`RepairLimits` describe domain-provided repair candidates while the framework
owns filtering, scoring, hard-improvement gates, and selector telemetry.
### CVRP Domain Helpers (from `solverforge-cvrp`)
Module: `solverforge::cvrp`
- `VrpSolution` (trait)
- `ProblemData`
- `MatrixDistanceMeter`
- `MatrixIntraDistanceMeter`
- `replace_route`, `get_route`
- `capacity`, `depot_for_cw`, `depot_for_entity`
- `distance`, `element_load`
- `is_kopt_feasible`, `is_time_feasible`
### Console (feature-gated)
- `solverforge::console` module (re-exports `solverforge-console`)
## `prelude` Module
Convenient single import for user code:
```rust
pub use crate::planning::EntitySourceTargetExt;
pub use crate::stream::collector::{consecutive_runs, count, load_balance, sum, Run, Runs};
pub use crate::stream::{joiner, ConstraintFactory};
pub use crate::{
planning_entity, planning_model, planning_solution, problem_fact,
BendableScore, ConflictRepair, ConstraintMetadata, ConstraintSet,
CoverageGroup, CoverageGroupLimits, Director, HardMediumSoftScore,
HardSoftDecimalScore, HardSoftScore, Projection, ProjectionSink,
RepairCandidate, RepairLimits, ScalarCandidate, ScalarEdit, ScalarGroup,
ScalarGroupLimits, ScalarTarget, Score, ScoreDirector, SoftScore,
};
```
## `stream` Module
Re-exports the fluent constraint stream API:
```rust
pub use solverforge_scoring::stream::collection_extract::vec;
pub use solverforge_scoring::stream::collection_extract::{
CollectionExtract, FlattenExtract, VecExtract,
};
pub use solverforge_scoring::stream::collector;
pub use solverforge_scoring::stream::{joiner, ConstraintFactory, FlattenedCollectionTarget};
```
Key stream API: `ConstraintFactory::new().for_each(extractor).filter(pred).penalize(weight).named("name")`. Use `.join(target)` for all join patterns: self-join, keyed cross-join, and predicate cross-join.
Collector helpers are available at `solverforge::stream::collector`, and the
prelude re-exports `count`, `sum`, `load_balance`, `consecutive_runs`, `Run`,
and `Runs`.
## Workspace Examples
- `examples/scalar-graph-coloring` — scalar assignment using `planning_model!`, generated sources, `solver.toml`, and `SolverManager`
- `examples/minimal-shift-scheduling` — compact public solver path using `CoverageGroup`, `consecutive_runs`, generated sources, `solver.toml`, and `SolverManager`
- `examples/list-tsp` — list-variable route optimization
- `examples/mixed-job-shop` — mixed scalar/list planning model
- `examples/nqueens` — scalar assignment model
Extractor ergonomics: all `for_each` and join extractor params accept `CollectionExtract<S, Item = A>`. Use `|s| s.field.as_slice()` for slices, or `vec(|s| &s.field)` when the field is a `Vec<A>` and you prefer `&field` syntax.
Model-owned keyed joins use solution source methods generated by `#[planning_solution]`, preserving hidden descriptor/static metadata:
```rust
ConstraintFactory::<Plan, HardSoftScore>::new()
.for_each(Plan::assignments())
.join((
ConstraintFactory::<Plan, HardSoftScore>::new().for_each(Plan::furnaces()),
equal_bi(|assignment| assignment.furnace_idx(), |furnace| Some(furnace.id)),
))
```
Generated existence ergonomics: there is one public `ConstraintFactory::for_each(...)`. `#[planning_solution]` generates inherent source methods such as `Plan::assignments()` and `Plan::furnaces()` with hidden descriptor/static metadata so localized incremental callbacks use entity indexes only for the owning planning-entity collection. Raw facade `for_each(...)` extractors do not carry localized source ownership. Flattened existence targets use `.flattened(...)` and `FlattenedCollectionTarget`.
Projected scoring ergonomics: `ConstraintFactory::new().for_each(Plan::assignments()).project(TaskShiftWorkEntries)` creates bounded scoring rows from a named `Projection<A>` type without materializing facts or entities. Keyed cross joins use `.project(|assignment, capacity| Row { ... })` to emit one scoring row per retained joined pair. Projected streams can be filtered, self-joined, merged, grouped, and weighted like normal scoring state. Single-source projection implementations emit through `ProjectionSink` and declare `MAX_EMITS`; joined-pair closures do not need a helper type. Projected output rows, projected self-join keys, and grouped collector values do not need `Clone`. Projected self-join ordering is coordinate-stable by `ProjectedRowCoordinate`, not sparse storage row id.
## `__internal` Module (`#[doc(hidden)]`)
Used exclusively by macro-generated code. Not public API.
### Re-exports
**Domain types (from `solverforge-core::domain`):**
- `PlanningEntity`, `PlanningSolution`, `PlanningId`, `ProblemFact`
- `EntityDescriptor`, `SolutionDescriptor`, `ProblemFactDescriptor`, `VariableDescriptor`
- `EntityCollectionExtractor`
- `ShadowVariableKind`, `ValueRangeType`
**Scoring (from `solverforge-scoring`):**
- `Director`, `ScoreDirector`
- `SolvableSolution`
**Solver infrastructure (from `solverforge-solver`):**
- `ListVariableSlot`, `LocalSearch`, `RuntimeModel`, `ScalarGroupBinding`, `ScalarGroupMemberBinding`, `ScalarVariableSlot`, `ValueSource`, `VariableSlot`, `Vnd`
- `FromSolutionEntitySelector`, `DefaultCrossEntityDistanceMeter`, `DefaultDistanceMeter`
- `KOptPhaseBuilder`, `ListConstructionPhaseBuilder`
- `PhaseFactory`, `SolverFactory`
- `Construction`, `PhaseSequence`, `RuntimePhase`
- `ProgressCallback`, `SolverScope`
- `SolverRuntime`, `SolverEvent`, `SolverTelemetry`
- `build_phases`, `descriptor_has_bindings`, `log_solve_start`, `run_solver`, `run_solver_with_config`
- `ListVariableEntity`, `ListVariableMetadata`
- `PlanningModelSupport`
Grouped scalar re-exports include the construction metadata surface on
`ScalarCandidate` and the split `ScalarGroupLimits` fields used by grouped
construction and grouped local-search selectors.
**Config (from `solverforge-config`):**
- `PhaseConfig`, `SolverConfig`
**Async bridge types:**
- `tokio::sync::mpsc::UnboundedSender`
**Stream types for macro-generated source methods (from `solverforge-scoring`):**
- `ChangeSource`, `CollectionExtract`, `SourceExtract`
- `UniConstraintStream`, `UniConstraintBuilder`
- `TrueFilter`, `UniFilter`, `FnUniFilter`, `AndUniFilter`
- `source`, `UnassignedEntity`
**Macro support (hidden):**
- Attribute macros route their support derives through `__internal`; users should not import those derive macros directly.
### Functions
| Function | Signature | Note |
|----------|-----------|------|
| `init_console` | `fn()` | No-op unless `console` feature enabled |
| `load_solver_config` | `fn() -> SolverConfig` | Loads `solver.toml`, falling back to `SolverConfig::default()` |
## Architectural Notes
- **Pure re-export crate.** Contains zero implementation logic — only `pub use` statements and the `__internal` module.
- **`__internal` module** exists so that macro-generated code can reference types via `::solverforge::__internal::*` paths. This allows derive macros in `solverforge-macros` to generate code that compiles in user crates that only depend on `solverforge`.
- **Shape-aware startup telemetry.** Hidden runtime logging helpers under `__internal` emit `element_count` for list solves and average `candidate_count` for scalar solves so console startup output can label the scale correctly.
- **Macro-built runtime slots stay model-owned.** `planning_model!` generates
the hidden `PlanningModelSupport` impl that attaches nearby hooks plus scalar
construction order-key hooks from `#[planning_variable]`, while list
construction capabilities continue to come from `#[planning_list_variable]`.
Construction order-key hooks are construction-only and do not reorder
local-search scalar candidate neighborhoods.
- **Retained lifecycle surface.** The facade re-exports the retained job / snapshot / checkpoint lifecycle contract from `solverforge-solver`, including exact pause/resume, lifecycle-complete events, and snapshot-bound analysis types.
- **Prelude** provides the common surface for generated and hand-written
application code. Users import `use solverforge::prelude::*` and get
attribute macros, score types, constraint traits, stream entry points,
model-source scalar target helpers, and the public scalar/group/coverage
declaration types needed by generated applications.
- **Feature flags** propagate to sub-crates: `decimal` → `solverforge-core/decimal`, `serde` → `solverforge-core/serde`.