1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
17 <= 42 returns true
42 <= 17 returns false
17 <= 17 returns true
The following test is not certified (both values are probably equal)
sin((pi) / 3) <= sqrt(3) / 2 returns true
sin((pi) / 3) <= sqrt(3) / 2 * (1 + 6.2230152778611417071440640537801242405902521687212e-61) returns true
Unexpected warning 478
sin((pi) / 3) - sqrt(3) / 2 <= 1 returns true
The test will rely on pure FP evaluation.
sin((pi) / 3) - sqrt(3) / 2 <= 0 returns true
1 <= sin((pi) / 3) - sqrt(3) / 2 returns false
The test will rely on pure FP evaluation.
0 <= sin((pi) / 3) - sqrt(3) / 2 returns true
Warning: the following test involves a NaN
1 <= log(-17) returns false
Warning: the following test involves a NaN
log(-17) <= 1 returns false
The test will rely on pure FP evaluation.
1 <= tan((pi) / 2)^2 returns true
The test will rely on pure FP evaluation.
1 <= -(tan((pi) / 2)^2) returns false
The test will rely on pure FP evaluation.
tan((pi) / 2)^2 <= 1 returns false
The test will rely on pure FP evaluation.
-(tan((pi) / 2)^2) <= 1 returns true
The test will rely on pure FP evaluation.
infty <= -(tan((pi) / 2)^2) returns false
The test will rely on pure FP evaluation.
-(tan((pi) / 2)^2) <= infty returns true
The test will rely on pure FP evaluation.
infty <= tan((pi) / 2)^2 returns false
The test will rely on pure FP evaluation.
tan((pi) / 2)^2 <= infty returns true
The following expression is not correctly typed.
error <= 17 returns error
The following expression is not correctly typed.
error <= error returns error
The following expression is not correctly typed.
NaN <= error returns error
NaN <= NaN returns false
NaN <= 1 returns false
The following expression is not correctly typed.
Hello! <= Hella! returns error
|