@@ -160,7 +160,7 @@ sol = Optim.optimize(f, g_FD!, x0, Optim.ConjugateGradient(; manifold=ManifoldWr
160160Cq .= randn (3 )
161161# Cq[
162162@show sol. minimizer
163- @test isapprox ( f (sol. minimizer), 0 ; atol= 1e-8 )
163+ @test isapprox ( f (sol. minimizer), 0 ; atol= 1e-3 )
164164@test isapprox ( 0 , sum (abs .(log (M, e0, compose (M, inv (M,q), sol. minimizer)))); atol= 1e-5 )
165165
166166# #
@@ -206,8 +206,8 @@ sol = Optim.optimize(f, g_FD!, x0, Optim.ConjugateGradient(; manifold=ManifoldWr
206206# Cq .= 0.5*randn(6)
207207# Cq[
208208@show sol. minimizer
209- @test isapprox ( f (sol. minimizer), 0 ; atol= 1e-8 )
210- @test isapprox ( 0 , sum (abs .(log (M, e0, compose (M, inv (M,q), sol. minimizer)))); atol= 1e-5 )
209+ @test isapprox ( f (sol. minimizer), 0 ; atol= 1e-3 )
210+ @test isapprox ( 0 , sum (abs .(log (M, e0, compose (M, inv (M,q), sol. minimizer)))); atol= 1e-3 )
211211
212212
213213# #
@@ -229,7 +229,7 @@ f(p) = distance(M, p, q)^2
229229sol = IncrementalInference. optimizeManifold_FD (M,f,x0)
230230
231231@show sol. minimizer
232- @test isapprox ( f (sol. minimizer), 0 ; atol= 1e-8 )
232+ @test isapprox ( f (sol. minimizer), 0 ; atol= 1e-3 )
233233@test isapprox ( 0 , sum (abs .(log (M, e0, compose (M, inv (M,q), sol. minimizer)))); atol= 1e-5 )
234234
235235
0 commit comments