Skip to content

Commit 4c4de37

Browse files
committed
Minor formatting changes
1 parent 923d1cb commit 4c4de37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/elliptic/box/crs_box_cholmod_impl.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ static struct cholmod_csr *sparse_cholmod_factor(uint n, const uint *Arp,
1818
B->nr = n;
1919

2020
const uint nnz = Arp[n];
21-
cholmod_triplet *T =
22-
cholmod_allocate_triplet(n, n, nnz, -1, CHOLMOD_REAL, &B->cm);
21+
cholmod_triplet *T = cholmod_allocate_triplet(n, n, nnz, -1, CHOLMOD_REAL, &B->cm);
2322

2423
int32_t *Ti = (int32_t *)T->i, *Tj = (int32_t *)T->j;
2524
TT *Tx = (TT *)T->x;

0 commit comments

Comments
 (0)