summaryrefslogtreecommitdiff
path: root/src/Persistence_representations/include/gudhi/PSSK.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-01-08 12:32:49 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-01-08 12:32:49 +0000
commit7cf0599b211bc6cd5e8a64a75550cdf40b3fbb14 (patch)
tree768f0681a7798d382150643d6a21b893c7199728 /src/Persistence_representations/include/gudhi/PSSK.h
parentd37d7b65e5ecaf3f7ada2874197cae4184594574 (diff)
parentc64433834bdf168975aa7785b03cdcfdd67c6915 (diff)
Merge of persistence_representations_fix_reading branch + clang format files
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@3116 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 0bae116ddc294d46e347d61fecc6e76b1e13f053
Diffstat (limited to 'src/Persistence_representations/include/gudhi/PSSK.h')
-rw-r--r--src/Persistence_representations/include/gudhi/PSSK.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Persistence_representations/include/gudhi/PSSK.h b/src/Persistence_representations/include/gudhi/PSSK.h
index e2d4225e..630f5623 100644
--- a/src/Persistence_representations/include/gudhi/PSSK.h
+++ b/src/Persistence_representations/include/gudhi/PSSK.h
@@ -121,10 +121,10 @@ void PSSK::construct(const std::vector<std::pair<double, double> >& intervals_,
for (size_t pt_nr = 0; pt_nr != intervals_.size(); ++pt_nr) {
// compute the value of intervals_[pt_nr] in the grid:
- int x_grid = static_cast<int>((intervals_[pt_nr].first - this->min_) /
- (this->max_ - this->min_) * number_of_pixels);
- int y_grid = static_cast<int>((intervals_[pt_nr].second - this->min_) /
- (this->max_ - this->min_) * number_of_pixels);
+ int x_grid =
+ static_cast<int>((intervals_[pt_nr].first - this->min_) / (this->max_ - this->min_) * number_of_pixels);
+ int y_grid =
+ static_cast<int>((intervals_[pt_nr].second - this->min_) / (this->max_ - this->min_) * number_of_pixels);
if (dbg) {
std::cerr << "point : " << intervals_[pt_nr].first << " , " << intervals_[pt_nr].second << std::endl;