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 9203848 commit 550dbdcCopy full SHA for 550dbdc
test/runtests.jl
@@ -7,5 +7,5 @@ using Test
7
prob = LinearProblem(A, b)
8
@test A * solve(prob, LUFactorization();alias_A = false, alias_b = false) ≈ b
9
@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
+ @test A * solve(prob, SVDFactorization();alias_A = false, alias_b = false) ≈ b
11
end
0 commit comments