Skip to content

Commit 80872bf

Browse files
Fix Pardiso.jl tests (#701)
1 parent e7d01ed commit 80872bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pardiso/pardiso.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ lambda = 3
1212
n = 4
1313
e = ones(n)
1414
e2 = ones(n - 1)
15-
A2 = spdiagm(-1 => im * e2, 0 => lambda * e, 1 => -im * e2)
15+
A2 = spdiagm(-1 => 1.0 .+ im * e2, 0 => lambda * e, 1 => 1.0 .+ -im * e2)
1616
b2 = rand(n) + im * zeros(n)
1717
cache_kwargs = (; abstol = 1e-8, reltol = 1e-8, maxiter = 30)
1818

0 commit comments

Comments
 (0)