We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d01ed commit 80872bfCopy full SHA for 80872bf
test/pardiso/pardiso.jl
@@ -12,7 +12,7 @@ lambda = 3
12
n = 4
13
e = ones(n)
14
e2 = ones(n - 1)
15
-A2 = spdiagm(-1 => im * e2, 0 => lambda * e, 1 => -im * e2)
+A2 = spdiagm(-1 => 1.0 .+ im * e2, 0 => lambda * e, 1 => 1.0 .+ -im * e2)
16
b2 = rand(n) + im * zeros(n)
17
cache_kwargs = (; abstol = 1e-8, reltol = 1e-8, maxiter = 30)
18
0 commit comments