Skip to content

Commit 00759b7

Browse files
committed
formatting
1 parent cd65401 commit 00759b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/quadratic_newton.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function descent_dir!(solver::QuadraticOTSolver{<:QuadraticOTNewton})
125125
# cg step
126126
b = -eps * vcat(vec(sum(γ; dims=2)) .- μ, vec(sum(γ; dims=1)) .- ν)
127127
fill!(x, zero(eltype(x)))
128-
cg!(x, G, b; initially_zero = true)
128+
cg!(x, G, b; initially_zero=true)
129129
copyto!(δu, 1, x, 1, M)
130130
copyto!(δv, 1, x, M + 1, N)
131131

0 commit comments

Comments
 (0)