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 8f71149 commit 46ae4ddCopy full SHA for 46ae4dd
test/basictests.jl
@@ -94,6 +94,8 @@ end
94
# Test that refactoring is checked and handled.
95
cache = SciMLBase.init(prob1, UMFPACKFactorization(); cache_kwargs...) # initialize cache
96
y = solve(cache)
97
+ cache = LinearSolve.set_A(cache, A2)
98
+ @test A2 * solve(cache) ≈ b1
99
X = sprand(n, n, 0.8)
100
cache = LinearSolve.set_A(cache, X)
101
@test X * solve(cache) ≈ b1
@@ -115,6 +117,8 @@ end
115
117
# Test that refactoring wrong is checked and handled.
116
118
cache = SciMLBase.init(prob1, KLUFactorization(); cache_kwargs...) # initialize cache
119
120
121
122
123
124
0 commit comments