Skip to content

Commit

Permalink
R2: pass kwargs through
Browse files Browse the repository at this point in the history
Without this change, a callback (for example), is not passed through to R2.
  • Loading branch information
dpo authored Dec 12, 2024
1 parent b84a2b1 commit 050d75e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/R2_alg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ function R2(
η1 = options.η1,
η2 = options.η2,
ν = options.ν,
γ = options.γ,
γ = options.γ;
kwargs...
)
outdict = Dict(
:Fhist => stats.solver_specific[:Fhist],
Expand Down

0 comments on commit 050d75e

Please sign in to comment.