summaryrefslogtreecommitdiff
path: root/tests/10optimizer_bytecode/cmp_powy_p_n
blob: 0a26e8f96a1917c4d1798a752f5fb1a7382120e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
T=d f ld
V=x
R=0.25,3,0.25
F=1*((x^5.1)=(x^-6.1)) +\
  2*((x^5.1)<(x^-6.1)) +\
  4*((x^5.1)<=(x^-6.1)) +\
  8*((x^5.1)>(x^-6.1)) +\
  16*((x^5.1)>=(x^-6.1)) +\
  32*((x^5.1)!=(x^-6.1))
C=1*fp_equal(fp_pow(x,5.1),fp_pow(x,-6.1)) +\
  2*fp_less(fp_pow(x,5.1),fp_pow(x,-6.1)) +\
  4*fp_lessOrEq(fp_pow(x,5.1),fp_pow(x,-6.1)) +\
  8*fp_greater(fp_pow(x,5.1),fp_pow(x,-6.1)) +\
  16*fp_greaterOrEq(fp_pow(x,5.1),fp_pow(x,-6.1)) +\
  32*fp_nequal(fp_pow(x,5.1),fp_pow(x,-6.1))