Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions src/R2DH.jl
Original file line number Diff line number Diff line change
Expand Up @@ -454,20 +454,7 @@ function SolverCore.solve!(
end

if verbose > 0 && stats.status == :first_order
@info log_row(
Any[
stats.iter,
fk,
hk,
sqrt_ξ_νInv,
ρk,
σk,
norm(xk),
norm(s),
"",
],
colsep = 1,
)
@info log_row(Any[stats.iter, fk, hk, sqrt_ξ_νInv, ρk, σk, norm(xk), norm(s), ""], colsep = 1)
@info "R2DH: terminating with √(ξ/ν) = $(sqrt_ξ_νInv)"
end

Expand Down
14 changes: 1 addition & 13 deletions src/R2N.jl
Original file line number Diff line number Diff line change
Expand Up @@ -493,19 +493,7 @@ function SolverCore.solve!(

if verbose > 0 && stats.status == :first_order
@info log_row(
Any[
stats.iter,
0,
fk,
hk,
sqrt_ξ1_νInv,
ρk,
σk,
norm(xk),
norm(s),
λmax,
"",
],
Any[stats.iter, 0, fk, hk, sqrt_ξ1_νInv, ρk, σk, norm(xk), norm(s), λmax, ""],
colsep = 1,
)
@info "R2N: terminating with √(ξ1/ν) = $(sqrt_ξ1_νInv)"
Expand Down
15 changes: 1 addition & 14 deletions src/R2_alg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -518,20 +518,7 @@ function SolverCore.solve!(
end

if verbose > 0 && stats.status == :first_order
@info log_row(
Any[
stats.iter,
fk,
hk,
sqrt_ξ_νInv,
ρk,
σk,
norm(xk),
norm(s),
"",
],
colsep = 1,
)
@info log_row(Any[stats.iter, fk, hk, sqrt_ξ_νInv, ρk, σk, norm(xk), norm(s), ""], colsep = 1)
@info "R2: terminating with √(ξ/ν) = $(sqrt_ξ_νInv)"
end

Expand Down