Relaxed tolerance in unit test (related to commit 1331849).

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1331891 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-04-29 10:08:23 +00:00
parent 48d4f49acb
commit 55824972ea
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class PowellOptimizerTest {
for (int i = 0; i < dim; i++) {
init[i] = minPoint[i] + 3;
}
doTest(func, minPoint, init, GoalType.MINIMIZE, 1e-9, 1e-7);
doTest(func, minPoint, init, GoalType.MINIMIZE, 1e-9, 1e-5);
}
@Test