Skip to content

Commit c529415

Browse files
committed
🤖 Format .jl files
1 parent 9343138 commit c529415

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/presolve/presolve_utils.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,13 @@ end
5454
find_empty_rowscols(v_cnt::Vector{Int}) = findall(isequal(0), v_cnt)
5555
find_singleton_rowscols(v_cnt::Vector{Int}) = findall(isequal(1), v_cnt)
5656

57-
function remove_rowscols_A_H!(A::SparseMatrixCOO, H::SparseMatrixCOO, qmp::QuadraticModelPresolveData, nvarps, nconps)
57+
function remove_rowscols_A_H!(
58+
A::SparseMatrixCOO,
59+
H::SparseMatrixCOO,
60+
qmp::QuadraticModelPresolveData,
61+
nvarps,
62+
nconps,
63+
)
5864
Arows, Acols, Avals = A.rows, A.cols, A.vals
5965
Hrows, Hcols, Hvals = H.rows, H.cols, H.vals
6066
kept_rows, kept_cols = qmp.kept_rows, qmp.kept_cols

0 commit comments

Comments
 (0)