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 001b741 commit 9203848Copy full SHA for 9203848
test/runtests.jl
@@ -6,6 +6,6 @@ using Test
6
b = rand(5)
7
prob = LinearProblem(A, b)
8
@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
+ @test A * solve(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