Skip to content

Commit d0e3b55

Browse files
committed
R2: pass kwargs through
Without this change, a callback (for example), is not passed through to R2.
1 parent b84a2b1 commit d0e3b55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/R2_alg.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ function R2(
269269
η1 = options.η1,
270270
η2 = options.η2,
271271
ν = options.ν,
272-
γ = options.γ,
272+
γ = options.γ;
273+
kwargs...
273274
)
274275
outdict = Dict(
275276
:Fhist => stats.solver_specific[:Fhist],

0 commit comments

Comments
 (0)