Skip to content

Commit 5f83270

Browse files
committed
Fix type error
1 parent b958e4e commit 5f83270

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ LaTeXStrings = "1"
5050
LinearAlgebra = "1"
5151
Logging = "1"
5252
Measures = "0.3"
53-
NonlinearSolve = "=4.5.0"
53+
NonlinearSolve = "4.8.0"
5454
Parameters = "0.12"
5555
Pkg = "1"
5656
PreallocationTools = "0.4.25"

src/solver.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ sol::VSMSolution = VSMSolution(): The result of calling [solve!](@ref)
107107

108108
# Nonlin solver fields
109109
prob::Union{NonlinearProblem, Nothing} = nothing
110-
nonlin_cache::Union{NonlinearSolve.AbstractNonlinearSolveCache, Nothing} = nothing
110+
nonlin_cache::Union{NonlinearSolveFirstOrder.GeneralizedFirstOrderAlgorithmCache, Nothing} = nothing
111111
atol::Float64 = 1e-5
112112

113113
# Damping settings

0 commit comments

Comments
 (0)