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 99a74ea commit 001b741Copy full SHA for 001b741
test/runtests.jl
@@ -5,7 +5,7 @@ using Test
5
A = rand(5, 5)
6
b = rand(5)
7
prob = LinearProblem(A, b)
8
- @test A * solve(deepcopy(prob), LUFactorization();alias_A = false, alias_b = false) ≈ b
+ @test A * solve(prob, LUFactorization();alias_A = false, alias_b = false) ≈ b
9
@test A * solve(deepcopy(prob), QRFactorization();alias_A = false, alias_b = false) ≈ b
10
@test A * solve(deepcopy(prob), SVDFactorization();alias_A = false, alias_b = false) ≈ b
11
end
0 commit comments