Skip to content

Commit

Permalink
Fix stupid typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tkralphs authored Aug 18, 2024
1 parent 845e8c6 commit 268c142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CoinDenseVector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class CoinDenseVector {
{
T norm = 0;
for (size_t i = 0; i < elements_.size(); i++)
norm = std::max(norm, std:abs(elements_[i]));
norm = std::max(norm, std::abs(elements_[i]));
return norm;
}
/// sum of vector elements
Expand Down

0 comments on commit 268c142

Please sign in to comment.