summaryrefslogtreecommitdiff
path: root/src/Rips_complex/example
diff options
context:
space:
mode:
authorpdlotko <pdlotko@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-02-08 10:37:21 +0000
committerpdlotko <pdlotko@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-02-08 10:37:21 +0000
commit82c0652b06949b0b002781688565d7ecf30f04fe (patch)
tree393bb80b81d6d812f37be5169b3bb24a5734a754 /src/Rips_complex/example
parentb5667b282e8cee9e1d2bfcf90bdfbbf2bc0030b2 (diff)
Fixed comments from Marc and Vincent.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/rips_complex_from_correlation_matrix@3234 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 8b5e08c38cd05512ba8b2824f13a62d35f39bac3
Diffstat (limited to 'src/Rips_complex/example')
-rw-r--r--src/Rips_complex/example/example_one_skeleton_rips_from_correlation_matrix.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Rips_complex/example/example_one_skeleton_rips_from_correlation_matrix.cpp b/src/Rips_complex/example/example_one_skeleton_rips_from_correlation_matrix.cpp
index f66c4b04..a34ce15c 100644
--- a/src/Rips_complex/example/example_one_skeleton_rips_from_correlation_matrix.cpp
+++ b/src/Rips_complex/example/example_one_skeleton_rips_from_correlation_matrix.cpp
@@ -40,11 +40,11 @@ int main() {
std::cerr << "The input matrix is not a correlation matrix. The program will now terminate.\n";
throw "The input matrix is not a correlation matrix. The program will now terminate.\n";
}
- correlations[i][j] = 1 - correlations[i][j];
- }
- //Here we make sure that we will get the treshold value equal to maximal
- //distance in the matrix.
- if ( correlations[i][j] > threshold )threshold = correlations[i][j];
+ correlations[i][j] = 1 - correlations[i][j];
+ //Here we make sure that we will get the treshold value equal to maximal
+ //distance in the matrix.
+ if ( correlations[i][j] > threshold )threshold = correlations[i][j];
+ }
}
//-----------------------------------------------------------------------------