Skip to content

Commit eb6bf63

Browse files
committed
Trying to find out why it runs locally on 1.6 but not on Mac OS CI.
1 parent 0c8af58 commit eb6bf63

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

docs/src/solvers/adaptive-regularization-with-cubics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Manopt.LanczosState
3232
There is a generic objective, that implements the sub problem
3333

3434
```@docs
35-
zAdaptiveRagularizationWithCubicsModelObjective
35+
AdaptiveRagularizationWithCubicsModelObjective
3636
```
3737

3838
Since the sub problem is given on the tangent space, you have to provide

test/solvers/test_adaptive_regularization_with_cubics.jl

+8-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,14 @@ include("../utils/example_tasks.jl")
122122
@test isapprox(M, p1, p2)
123123
# Third with approximate Hessian
124124
p3 = adaptive_regularization_with_cubics(
125-
M, f, grad_f, p0; θ=0.5, σ=100.0, retraction_method=PolarRetraction()
125+
M,
126+
f,
127+
grad_f,
128+
p0;
129+
θ=0.5,
130+
σ=100.0,
131+
retraction_method=PolarRetraction(),
132+
debug=[:Iteration, :Cost, , :ρ_denonimator, "\n"],
126133
)
127134
@test isapprox(M, p1, p3)
128135
# Fourth with approximate Hessian _and_ random point

0 commit comments

Comments
 (0)