summaryrefslogtreecommitdiff
path: root/src/Collapse/include
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-03-18 22:39:58 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-03-18 22:40:30 +0100
commit00709233ad05a22597295ab819df2ee6394ad0b2 (patch)
tree8001f24d1d5a234d1e43bd35fa83bc3baf363675 /src/Collapse/include
parentac06d17b3eb9fb45160dd5f1d17a527d54e075ca (diff)
Remove some strong collapse useless parameters and variables for edge collapse
Diffstat (limited to 'src/Collapse/include')
-rw-r--r--src/Collapse/include/gudhi/PointSetGen.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Collapse/include/gudhi/PointSetGen.h b/src/Collapse/include/gudhi/PointSetGen.h
index af78b63b..a7d6956d 100644
--- a/src/Collapse/include/gudhi/PointSetGen.h
+++ b/src/Collapse/include/gudhi/PointSetGen.h
@@ -19,7 +19,6 @@ class PointSetGen {
public:
void program_options(int argc, char * const argv[]
, std::size_t & number_of_points
- , double & begin_thresold
, double & steps
, double & end_thresold
, int & repetetions
@@ -36,9 +35,6 @@ class PointSetGen {
("help,h", "produce help message")
("number,n", po::value<std::size_t>(&number_of_points)->default_value(0),
"Number of generated point_vector.")
-
- ("begin_thresold,b", po::value<double>(&begin_thresold)->default_value(0),
- "Initial threshold for rips complex.")
("steps,s", po::value<double>(&steps)->default_value(0.1),
"Steps of the threshold")
("end_thresold,e", po::value<double>(&end_thresold)->default_value(1),
@@ -70,7 +66,7 @@ class PointSetGen {
if (vm.count("help")) {
std::cout << std::endl;
- std::cout << "Computes rips complexes of different threshold values, from 'begin_thresold' to 'end_thresold', with priodic steps of 'steps' from a n random uniform point_vector on a selected manifold, . \n";
+ std::cout << "Computes rips complexes of different threshold values, to 'end_thresold', with priodic steps of 'steps' from a n random uniform point_vector on a selected manifold, . \n";
std::cout << "Strongly collapses all the rips complexes and output the results in out_file. \n";
std::cout << "The experiments are repeted 'repete' num of times for each threshold value. \n";
std::cout << "type -m for manifold options, 's' for uni sphere, 'b' for unit ball, 'f' for file. \n";