Skip to content

Commit

Permalink
hide normalization prints
Browse files Browse the repository at this point in the history
  • Loading branch information
mlivesu committed Oct 20, 2023
1 parent 9db5cd6 commit 650c817
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/cinolib/scalar_field.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ void ScalarField::normalize_in_01()
max = std::max(max, (*this)[i]);
}

std::cout << std::endl;
std::cout << "Min value " << min << std::endl;
std::cout << "Max value " << max << std::endl;
std::cout << "Normalized in the range [0,1]" << std::endl;
std::cout << std::endl;
//std::cout << std::endl;
//std::cout << "Min value " << min << std::endl;
//std::cout << "Max value " << max << std::endl;
//std::cout << "Normalized in the range [0,1]" << std::endl;
//std::cout << std::endl;

double delta = max - min;

Expand Down

0 comments on commit 650c817

Please sign in to comment.