|
| 1 | +(set-logic FP) |
| 2 | + |
| 3 | +(define-fun zero () (_ FloatingPoint 11 53) ((_ to_fp 11 53) RNE 0)) |
| 4 | +(define-fun minus-zero () (_ FloatingPoint 11 53) (fp.neg zero)) |
| 5 | +(define-fun one () (_ FloatingPoint 11 53) ((_ to_fp 11 53) RNE 1)) |
| 6 | +(define-fun minus-one () (_ FloatingPoint 11 53) (fp.neg one)) |
| 7 | +(define-fun zero-point-one () (_ FloatingPoint 11 53) ((_ to_fp 11 53) RNE 0.1)) |
| 8 | +(define-fun minus-zero-point-one () (_ FloatingPoint 11 53) (fp.neg zero-point-one)) |
| 9 | +(define-fun ten-point-one () (_ FloatingPoint 11 53) ((_ to_fp 11 53) RNE 10.1)) |
| 10 | +(define-fun minus-ten-point-one () (_ FloatingPoint 11 53) (fp.neg ten-point-one)) |
| 11 | +(define-fun ten () (_ FloatingPoint 11 53) ((_ to_fp 11 53) RNE 10)) |
| 12 | +(define-fun minus-ten () (_ FloatingPoint 11 53) (fp.neg ten)) |
| 13 | +(define-fun eleven () (_ FloatingPoint 11 53) ((_ to_fp 11 53) RNE 11)) |
| 14 | +(define-fun minus-eleven () (_ FloatingPoint 11 53) (fp.neg eleven)) |
| 15 | +(define-fun magic () (_ FloatingPoint 11 53) (fp #b0 #b10000110011 #x0000000000000)) |
| 16 | +(define-fun dmax () (_ FloatingPoint 11 53) (fp #b0 #b11111111110 #xFFFFFFFFFFFFF)) |
| 17 | + |
| 18 | +(assert (not (and |
| 19 | + |
| 20 | + ; round up |
| 21 | + (= (fp.roundToIntegral RTP (_ NaN 11 53)) (_ NaN 11 53)) |
| 22 | + (= (fp.roundToIntegral RTP (_ +oo 11 53)) (_ +oo 11 53)) |
| 23 | + (= (fp.roundToIntegral RTP (_ -oo 11 53)) (_ -oo 11 53)) |
| 24 | + (= (fp.roundToIntegral RTP zero) zero) |
| 25 | + (= (fp.roundToIntegral RTP minus-zero) minus-zero) |
| 26 | + (= (fp.roundToIntegral RTP one) one) |
| 27 | + (= (fp.roundToIntegral RTP zero-point-one) one) |
| 28 | + (= (fp.roundToIntegral RTP minus-zero-point-one) minus-zero) |
| 29 | + (= (fp.roundToIntegral RTP ten-point-one) eleven) |
| 30 | + (= (fp.roundToIntegral RTP minus-ten-point-one) minus-ten) |
| 31 | + (= (fp.roundToIntegral RTP magic) magic) |
| 32 | + (= (fp.roundToIntegral RTP dmax) dmax) |
| 33 | + |
| 34 | + ; round down |
| 35 | + (= (fp.roundToIntegral RTN (_ NaN 11 53)) (_ NaN 11 53)) |
| 36 | + (= (fp.roundToIntegral RTN (_ +oo 11 53)) (_ +oo 11 53)) |
| 37 | + (= (fp.roundToIntegral RTN (_ -oo 11 53)) (_ -oo 11 53)) |
| 38 | + (= (fp.roundToIntegral RTN zero) zero) |
| 39 | + (= (fp.roundToIntegral RTN minus-zero) minus-zero) |
| 40 | + (= (fp.roundToIntegral RTN one) one) |
| 41 | + (= (fp.roundToIntegral RTN zero-point-one) zero) |
| 42 | + (= (fp.roundToIntegral RTN minus-zero-point-one) minus-one) |
| 43 | + (= (fp.roundToIntegral RTN ten-point-one) ten) |
| 44 | + (= (fp.roundToIntegral RTN minus-ten-point-one) minus-eleven) |
| 45 | + (= (fp.roundToIntegral RTN magic) magic) |
| 46 | + (= (fp.roundToIntegral RTN dmax) dmax) |
| 47 | + |
| 48 | + ; round to nearest ties to even |
| 49 | + (= (fp.roundToIntegral RNE (_ NaN 11 53)) (_ NaN 11 53)) |
| 50 | + (= (fp.roundToIntegral RNE (_ +oo 11 53)) (_ +oo 11 53)) |
| 51 | + (= (fp.roundToIntegral RNE (_ -oo 11 53)) (_ -oo 11 53)) |
| 52 | + (= (fp.roundToIntegral RNE zero) zero) |
| 53 | + (= (fp.roundToIntegral RNE minus-zero) minus-zero) |
| 54 | + (= (fp.roundToIntegral RNE one) one) |
| 55 | + (= (fp.roundToIntegral RNE zero-point-one) zero) |
| 56 | + (= (fp.roundToIntegral RNE minus-zero-point-one) minus-zero) |
| 57 | + (= (fp.roundToIntegral RNE ten-point-one) ten) |
| 58 | + (= (fp.roundToIntegral RNE minus-ten-point-one) minus-ten) |
| 59 | + (= (fp.roundToIntegral RNE magic) magic) |
| 60 | + (= (fp.roundToIntegral RNE dmax) dmax) |
| 61 | + |
| 62 | + ; round to zero |
| 63 | + (= (fp.roundToIntegral RTZ (_ NaN 11 53)) (_ NaN 11 53)) |
| 64 | + (= (fp.roundToIntegral RTZ (_ +oo 11 53)) (_ +oo 11 53)) |
| 65 | + (= (fp.roundToIntegral RTZ (_ -oo 11 53)) (_ -oo 11 53)) |
| 66 | + (= (fp.roundToIntegral RTZ zero) zero) |
| 67 | + (= (fp.roundToIntegral RTZ minus-zero) minus-zero) |
| 68 | + (= (fp.roundToIntegral RTZ one) one) |
| 69 | + (= (fp.roundToIntegral RTZ zero-point-one) zero) |
| 70 | + (= (fp.roundToIntegral RTZ minus-zero-point-one) minus-zero) |
| 71 | + (= (fp.roundToIntegral RTZ ten-point-one) ten) |
| 72 | + (= (fp.roundToIntegral RTZ minus-ten-point-one) minus-ten) |
| 73 | + (= (fp.roundToIntegral RTZ magic) magic) |
| 74 | + (= (fp.roundToIntegral RTZ dmax) dmax) |
| 75 | +))) |
| 76 | + |
| 77 | +; should be unsat |
| 78 | +(check-sat) |
0 commit comments