summaryrefslogtreecommitdiff
path: root/tests/10optimizer_bytecode/cmp_powy_p_p
blob: 3ff2fe690e485d40fb0acedca8c07541ab483008 (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))