assertEquals(TH.eval(a, 1), 0.);
assertEquals(TH.eval(a, 10), 2.993222846126);
}
public void testASIN() throws Exception {
ASIN a = new ASIN();
TH.testDoubleInOutFunction(a);
for (int i = 0; i < 100; i++) {
double d = Math.random() * Math.PI;
assertEquals("ASIN not working", TH.eval(a, d), Math.asin(d));
}