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 59b8d46 commit a0cd9d0Copy full SHA for a0cd9d0
src/LinearSolve.jl
@@ -52,15 +52,15 @@ isopenblas() = IS_OPENBLAS[]
52
import SnoopPrecompile
53
54
SnoopPrecompile.@precompile_all_calls begin
55
- A = rand(4,4)
+ A = rand(4, 4)
56
b = rand(4)
57
prob = LinearProblem(A, b)
58
sol = solve(prob)
59
sol = solve(prob, LUFactorization())
60
sol = solve(prob, RFLUFactorization())
61
sol = solve(prob, KrylovJL_GMRES())
62
63
- A = sprand(4,4,0.9)
+ A = sprand(4, 4, 0.9)
64
65
66
sol = solve(prob, KLUFactorization())
0 commit comments