optimize: relax gradient tolerance for Newton test

This commit is contained in:
Dan Kortschak
2020-02-20 22:20:13 +10:30
parent fd1732d5e6
commit c3867503e7

View File

@@ -938,7 +938,8 @@ var newtonTests = []unconstrainedTest{
Grad: functions.BrownBadlyScaled{}.Grad,
Hess: functions.BrownBadlyScaled{}.Hess,
},
x: []float64{1, 1},
x: []float64{1, 1},
gradTol: 1e-9,
},
{
name: "PowellBadlyScaled",