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 616e21c commit c1c683aCopy full SHA for c1c683a
test/basictests.jl
@@ -349,10 +349,10 @@ end
349
end
350
351
@testset "Solve Function" begin
352
- A1 = rand(n) |> Diagonal |> Array
+ A1 = rand(n) |> Diagonal
353
b1 = rand(n)
354
x1 = zero(b1)
355
- A2 = rand(n) |> Diagonal |> Array
+ A2 = rand(n) |> Diagonal
356
b2 = rand(n)
357
x2 = zero(b1)
358
@@ -384,7 +384,7 @@ end
384
385
@testset "DirectLdiv!" begin
386
function get_operator(A, u)
387
- F = lu(A)
+ F = lu(Array(A))
388
389
function f(du, u, p, t)
390
println("using FunctionOperator mul!")
0 commit comments