Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Koutanov committed Jan 19, 2024
1 parent 169c3ba commit bfc48b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Overround.Tests/SolverTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit bfc48b5

Please sign in to comment.