From bfc48b5a166ece5f7c1c97abee0aec9d40147720 Mon Sep 17 00:00:00 2001 From: Emil Koutanov Date: Fri, 19 Jan 2024 15:24:33 +1100 Subject: [PATCH] Typo --- Overround.Tests/SolverTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Overround.Tests/SolverTest.cs b/Overround.Tests/SolverTest.cs index fd680ae..820673b 100644 --- a/Overround.Tests/SolverTest.cs +++ b/Overround.Tests/SolverTest.cs @@ -39,6 +39,6 @@ public void TestExhaustMaxIterations() var solution = Solver.Solve(4, 0.01, Delta, 10, est => Math.Pow(est - 5, 2)); Assert.AreEqual(4.09, solution.Value, Delta); Assert.AreEqual(10, solution.Iterations); - Assert.AreEqual(0.8281, solution.Error, Delta); // (5-4.49)^2 + Assert.AreEqual(0.8281, solution.Error, Delta); // (5-4.09)^2 } } \ No newline at end of file