To reproduce:
In a constant combinator, add a signal and make its count 9876543210Similarly, in a decider combinator, change the constant being compared to to 9876543210
Actual result:
The constant combinator gets a value of 1286608618 [wraparound]The decider combinator gets a value of 2147483647 [saturating to maximum 32-bit int]
Expected result:
Both interfaces should result in the same value, either by saturation [capping to the maximum/minimum 32-bit int] or wraparound [essentially doing modulo 2^32 as when doing addition]All other entities tested (arithmetic combinator, selector combinator, an inserter) saturate to 2147483647
Likely related to viewtopic.php?t=128129 where constant combinators were made to add with overflow arithmetic.
As a combinator nerd, I would prefer for it to overflow. This is also consistent with how addition along a signal on a wire works


