Home | History | Annotate | Download | only in creals

Lines Matching full:asin

44 // Added basic asin and acos tests, improved messages,
111 UnaryCRFunction asin = UnaryCRFunction.asinFunction;
116 check_eq(asin.execute(one),half_pi, "asin(1) failed");
117 check_eq(asin.execute(one.negate()),
118 half_pi.negate(), "asin(-1) failed");
119 check_eq(asin.execute(zero), zero, "asin(0) failed");
120 check_eq(asin.execute(half.sin()), half, "asin(sin(0.5)) failed");
126 check_eq(asin.execute(one.sin()), one, "asin(sin(1) failed");
148 check_appr_eq(Math.asin(0.1*n),
149 CR.valueOf(0.1*n).asin().doubleValue(),
150 "asin failed at " + 0.1*n);