• Home
  • Raw
  • Download

Lines Matching refs:execute

55     abstract public CR execute(CR x);  in execute()  method in UnaryCRFunction
177 public CR execute(CR x) { in execute() method in sin_UnaryCRFunction
183 public CR execute(CR x) { in execute() method in cos_UnaryCRFunction
189 public CR execute(CR x) { in execute() method in tan_UnaryCRFunction
195 public CR execute(CR x) { in execute() method in asin_UnaryCRFunction
201 public CR execute(CR x) { in execute() method in acos_UnaryCRFunction
212 public CR execute(CR x) { in execute() method in atan_UnaryCRFunction
221 public CR execute(CR x) { in execute() method in exp_UnaryCRFunction
227 public CR execute(CR x) { in execute() method in ln_UnaryCRFunction
233 public CR execute(CR x) { in execute() method in identity_UnaryCRFunction
239 public CR execute(CR x) { in execute() method in negate_UnaryCRFunction
245 public CR execute(CR x) { in execute() method in inverse_UnaryCRFunction
251 public CR execute(CR x) { in execute() method in abs_UnaryCRFunction
257 public CR execute(CR x) { in execute() method in sqrt_UnaryCRFunction
269 public CR execute(CR x) { in execute() method in compose_UnaryCRFunction
270 return f1.execute(f2.execute(x)); in execute()
306 CR tmp_f_low = func.execute(l); in inverseMonotone_UnaryCRFunction()
307 CR tmp_f_high = func.execute(h); in inverseMonotone_UnaryCRFunction()
418 f_h = fn.execute(h_cr).get_appr(working_eval_prec); in approximate()
427 f_l = fn.execute(l_cr).get_appr(working_eval_prec); in approximate()
494 CR f_guess_cr = fn.execute(guess_cr); in approximate()
518 f_l = fn.execute(l_cr) in approximate()
524 f_h = fn.execute(h_cr) in approximate()
567 public CR execute(CR x) { in execute() method in inverseMonotone_UnaryCRFunction
600 f_low[0] = func.execute(l); in monotoneDerivative_UnaryCRFunction()
601 f_mid[0] = func.execute(mid[0]); in monotoneDerivative_UnaryCRFunction()
602 f_high[0] = func.execute(h); in monotoneDerivative_UnaryCRFunction()
619 f_arg = f[0].execute(x); in monotoneDerivativeCR()
643 CR f_left = f[0].execute(left); in approximate()
644 CR f_right = f[0].execute(right); in approximate()
664 public CR execute(CR x) { in execute() method in monotoneDerivative_UnaryCRFunction