Skip to content

Commit a0cd9d0

Browse files
format
1 parent 59b8d46 commit a0cd9d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LinearSolve.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ isopenblas() = IS_OPENBLAS[]
5252
import SnoopPrecompile
5353

5454
SnoopPrecompile.@precompile_all_calls begin
55-
A = rand(4,4)
55+
A = rand(4, 4)
5656
b = rand(4)
5757
prob = LinearProblem(A, b)
5858
sol = solve(prob)
5959
sol = solve(prob, LUFactorization())
6060
sol = solve(prob, RFLUFactorization())
6161
sol = solve(prob, KrylovJL_GMRES())
6262

63-
A = sprand(4,4,0.9)
63+
A = sprand(4, 4, 0.9)
6464
prob = LinearProblem(A, b)
6565
sol = solve(prob)
6666
sol = solve(prob, KLUFactorization())

0 commit comments

Comments
 (0)