Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
greole committed Nov 15, 2023
1 parent 6f63f46 commit b7aae49
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions HostMatrix/HostMatrixFreeFunctions.C
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,11 @@ void non_symmetric_update(const label total_nnz, const label upper_nnz,
}
}

void init_local_sparsity(
const label nrows,
const label upper_nnz,
const bool is_symmetric,
const label* upper,
const label* lower,
label *rows,
label *cols,
label *permute
){
void init_local_sparsity(const label nrows, const label upper_nnz,
const bool is_symmetric, const label *upper,
const label *lower, label *rows, label *cols,
label *permute)
{
label after_neighbours = (is_symmetric) ? upper_nnz : 2 * upper_nnz;
label element_ctr = 0;
label upper_ctr = 0;
Expand Down

0 comments on commit b7aae49

Please sign in to comment.