You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Saturate the over-size subset sum and the boundary case of the subset-minimum sum
sum_of_minimum_over_size_among_subsets raised OverflowError once a
shared-atom group exceeded 1023 values: its Python-int coefficient
2**(a+1) exceeds float64 range at the division. The coefficient now
saturates to +inf — the same uninformative ceiling as
sum_of_minimum_among_subsets — with zero values contributing nothing.
In sum_of_minimum_among_subsets, every count can fit float64 while
their sum does not (exactly at 1024 values); the summation now runs
under the same errstate so the total saturates to inf instead of
escalating an overflow warning under warning-as-error configurations.
Also adds the changelog fragments and roadmap record for the full set
of condor smoke-test fixes.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015f42ka7k2RhfsyKFLqyLdv
0 commit comments