T=d f ld
V=x
R=-4,4,0.25
F=1*(tanh(x)=2) + \
  2*(tanh(x)<2) + \
  4*(tanh(x)<=2) + \
  8*(tanh(x)>2) + \
  16*(tanh(x)>=2) + \
  32*(tanh(x)!=2)
C=1*fp_equal(fp_tanh(x),2) + \
  2*fp_less(fp_tanh(x),2) + \
  4*fp_lessOrEq(fp_tanh(x),2) + \
  8*fp_greater(fp_tanh(x),2) + \
  16*fp_greaterOrEq(fp_tanh(x),2) + \
  32*fp_nequal(fp_tanh(x),2)
