Skip to content

Commit

Permalink
Show limit in message [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbASF committed Dec 23, 2023
1 parent a8e7c2b commit b0cefc5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public void testCircleFitting() {
}

final int numEval = optimizer.getEvaluations();
Assert.assertTrue("n=" + numEval, numEval > 750);
Assert.assertTrue("n=" + numEval, numEval < 950);
Assert.assertTrue("exp: n > 750, act: " + numEval, numEval > 750);
Assert.assertTrue("exp: n < 950, act: " + numEval, numEval < 950);

Assert.assertEquals(3.1267527, optimum.getValue(), 1e-8);
}
Expand Down

0 comments on commit b0cefc5

Please sign in to comment.