From cab1f15a8e2fe74771fee68c76a7830056f7da0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Sat, 1 Jun 2024 00:20:47 +0200 Subject: [PATCH] dparms should be Float64 --- src/extension_algs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension_algs.jl b/src/extension_algs.jl index e59c984a..30db6e63 100644 --- a/src/extension_algs.jl +++ b/src/extension_algs.jl @@ -163,7 +163,7 @@ struct PardisoJL{T1, T2} <: LinearSolve.SciMLLinearSolveAlgorithm matrix_type = nothing, cache_analysis = false, iparm::Union{Vector{Tuple{Int, Int}}, Nothing} = nothing, - dparm::Union{Vector{Tuple{Int, Int}}, Nothing} = nothing) + dparm::Union{Vector{Tuple{Int, Float64}}, Nothing} = nothing) ext = Base.get_extension(@__MODULE__, :LinearSolvePardisoExt) if ext === nothing error("PardisoJL requires that Pardiso is loaded, i.e. `using Pardiso`")