Skip to content

Commit

Permalink
Formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
jajhall committed Dec 20, 2024
1 parent e143468 commit 0e2765c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lp_data/HighsLp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,10 @@ void HighsLpStats::workTerms(double* terms) {
terms[HighsLpWorkTermMatrixDensity] = this->a_matrix_density;
terms[HighsLpWorkTermMatrixNzPerCol] = this->a_matrix_nz_per_col;
terms[HighsLpWorkTermMatrixNzPerRow] = this->a_matrix_nz_per_row;
terms[HighsLpWorkTermRelativemaxMatrixEntry] = this->relative_max_matrix_entry;
terms[HighsLpWorkTermRelativeNumEqualMatrixNz] = this->relative_num_equal_a_matrix_nz;
terms[HighsLpWorkTermRelativemaxMatrixEntry] =
this->relative_max_matrix_entry;
terms[HighsLpWorkTermRelativeNumEqualMatrixNz] =
this->relative_num_equal_a_matrix_nz;
terms[HighsLpWorkTermRelativeNumDenseRow] = this->relative_num_dense_row;
}

Expand Down

0 comments on commit 0e2765c

Please sign in to comment.