-
Notifications
You must be signed in to change notification settings - Fork 157
chore: Switch to computed scores across the autopilot #3415
Copy link
Copy link
Open
Labels
Description
Background
The recent combinatorial auction implementation highlighted the need to stop relying on scores provided by solvers and to start using our computed scores instead. While the combinatorial auction logic already relies solely on computed scores, other parts of the autopilot—such as the legacy MaxScore implementation and database storage—still use solver-provided scores.
Once the combinatorial auction cutover (#3387) is complete, we should fully transition to computed scores:
- Compute the score during construction of the
Solutionstruct - Use a single field for the score (currently, we have both
Solution.scoreandSolution.computed_score) - Remove the score from the solver API, so solvers no longer need to provide it
- Store the computed score in the database
Ref: #3397 (comment)
Reactions are currently unavailable