solverforge-scoring 0.8.4

Incremental constraint scoring for SolverForge
Documentation
1
2
3
4
5
6
7
8
9
10
/* Performance comparison: full recalc vs incremental scoring.

This module demonstrates the performance difference between:
- Full recalculation on every move (O(n) or O(n²) per move)
- Incremental delta scoring (O(affected entities) per move)
*/

#[cfg(test)]
#[path = "benchmarks.rs"]
mod benchmarks;