summaryrefslogtreecommitdiff
path: root/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-10-10 14:32:18 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-10-10 14:32:18 +0000
commit63666b64129b8ca4ba95504393f863e01f76c51b (patch)
treec7e203bccfeab0e27cc2ac35ff029875872c24f0 /src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp
parentfb7c3e76da15aca382ed7a6795d1a6fb3c1716c2 (diff)
Fix tests and homogenize code
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/weighted_alpha_complex_fix@2775 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: bdcc278981e2683a5b49f241f07704f3d5c7ca4e
Diffstat (limited to 'src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp')
-rw-r--r--src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp b/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp
index a0db9b42..df96fcfd 100644
--- a/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp
+++ b/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp
@@ -39,6 +39,7 @@
#include <utility>
#include <list>
#include <vector>
+#include <cstdlib>
#include "alpha_complex_3d_helper.h"
@@ -78,7 +79,7 @@ using Persistent_cohomology =
void usage(const std::string& progName) {
std::cerr << "Usage: " << progName
- << " path_to_file_graph coeff_field_characteristic[integer > 0] min_persistence[float >= -1.0]\n";
+ << " path_to_the_OFF_file coeff_field_characteristic[integer > 0] min_persistence[float >= -1.0]\n";
exit(-1);
}
@@ -90,13 +91,7 @@ int main(int argc, char* const argv[]) {
}
int coeff_field_characteristic = atoi(argv[2]);
-
- Filtration_value min_persistence = 0.0;
- int returnedScanValue = sscanf(argv[3], "%f", &min_persistence);
- if ((returnedScanValue == EOF) || (min_persistence < -1.0)) {
- std::cerr << "Error: " << argv[3] << " is not correct\n";
- usage(argv[0]);
- }
+ Filtration_value min_persistence = strtof(argv[3], nullptr);
// Read points from file
std::string offInputFile(argv[1]);