Summary
The ILP solver finds a valid target solution for SequencingToMinimizeWeightedTardiness (Or(true)), but extract_solution decodes the Lehmer code back to an invalid source config.
Reproduction
pred create --example ThreePartition -o tp.json
pred reduce tp.json --to SequencingToMinimizeWeightedTardiness -o bundle.json
pred solve bundle.json
Result: Target evaluates to Or(true), but extracted source config [1,0,0,1,1,1] evaluates to Or(false).
The correct source config [0,0,0,1,1,1] evaluates to Or(true) — the Lehmer code decoding is producing wrong group assignments.
Origin
Reduction implemented in PR #972.