Skip to content

Commit 2598c96

Browse files
committed
fix wrong pardiso matrix type in complex case
1 parent 1adbd98 commit 2598c96

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
@@ -1,7 +1,7 @@
11
name = "ExtendableSparse"
22
uuid = "95c220a8-a1cf-11e9-0c77-dbfce5f500b3"
33
authors = ["Juergen Fuhrmann <juergen.fuhrmann@wias-berlin.de>"]
4-
version = "0.6.5"
4+
version = "0.6.6"
55

66
[deps]
77
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"

src/pardiso_lu.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function default_initialize!(fact::AbstractPardisoLU{Tv,Ti}, iparm,dparm,mtype)
8888
my_mtype=Pardiso.REAL_NONSYM
8989
end
9090

91-
Pardiso.set_matrixtype!(fact.ps,Pardiso.REAL_NONSYM)
91+
Pardiso.set_matrixtype!(fact.ps,my_mtype)
9292

9393
if !isnothing(iparm)
9494
for i=1:min(length(iparm),length(fact.ps.iparm))

0 commit comments

Comments
 (0)