Skip to content

Commit c24479e

Browse files
authored
Fix error
1 parent def5a9f commit c24479e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/algorithms/primaldual.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ struct AFBA{R}
171171
theta::R=R(1), mu::R=R(1), lambda::R=R(1), maxit::Int=10000,
172172
tol::R=R(1e-5), verbose::Bool=false, freq::Int=100
173173
) where R
174-
@assert gamma1 === nothing || gamma > 0
175-
@assert gamma2 === nothing || gamma > 0
174+
@assert gamma1 === nothing || gamma1 > 0
175+
@assert gamma2 === nothing || gamma2 > 0
176176
@assert theta >= 0
177177
@assert 0 <= mu <= 1
178178
@assert lambda > 0

0 commit comments

Comments
 (0)