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:
parent
48d4f49acb
commit
55824972ea
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue