Skip to content

Commit 1ee48a8

Browse files
update theta default value
1 parent 339a505 commit 1ee48a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/input_struct.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mutable struct ROSolverOptions{R}
3434
α::R = 1 / eps(R),
3535
ν::R = eps(R)^(1 / 5),
3636
γ::R = R(3),
37-
θ::R = eps(R)^(1 / 5),
37+
θ::R = 1/(1+eps(R)^(1 / 5)),
3838
β::R = 1 / eps(R),
3939
reduce_TR::Bool = true,
4040
) where {R <: Real}

0 commit comments

Comments
 (0)