node = getInstance(getA(3));
ValueNode<Double> res2 = node.calc(null);
assertTrue(res2.getValue().compareTo(Math.asin(1.)) == 0);
node = getInstance(getA(4));
res2 = node.calc(null);
assertTrue(res2.getValue().compareTo(Math.asin(-1.)) == 0);
node = getInstance(getA(5));
res2 = node.calc(null);
assertTrue(res2.getValue().compareTo(Math.asin(0.)) == 0);