Skip to content

Commit a812e24

Browse files
Update src/multilevel.jl
1 parent ba47f94 commit a812e24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/multilevel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ struct BackslashSolver{T,F} <: CoarseSolver
6565
function BackslashSolver{T}(A) where T
6666
# Use Julia's built-in factorize - automatically picks best method
6767
# (UMFPACK for sparse nonsymmetric, CHOLMOD for sparse SPD, etc.)
68-
fact = qr(A)
68+
fact = qr(A, ColumnNorm())
6969
new{T,typeof(fact)}(fact)
7070
end
7171
end

0 commit comments

Comments
 (0)