| 36 | namespace Gecode { namespace Int { |
| 37 | |
| 38 | forceinline int |
| 39 | plus(int x, int y) { |
| 40 | assert(y != -Limits::infinity); |
| 41 | return (x == -Limits::infinity) ? x : x+y; |
| 42 | } |
| 43 | |
| 44 | forceinline long long int |
| 45 | plus(long long int x, long long int y) { |
no outgoing calls
no test coverage detected