Пример #1
0
 public void ACos()
 {
     foreach (var n in new[] { -1, -0.5, 0, 0.5, 1, 0.675 })
     {
         Assert.AreEqual(Math.Acos(n), Core.ACos(n));
     }
 }