summaryrefslogtreecommitdiff
path: root/src/Witness_complex
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-11-21 16:15:13 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-11-21 16:15:13 +0000
commit22f0bc7f98e4ead21616fa10a3b3c3279a922ee4 (patch)
treeb9183ecc5f4b5e3bae2d45c6ec780f413147c990 /src/Witness_complex
parent786f13354f48a652232ca51112386ed0173f23d1 (diff)
Fixed small bug in an example. Thanks to Clément
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/relaxed-witness@1765 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: ef71f8be01c177a6b0da8ff58849f1041659e523
Diffstat (limited to 'src/Witness_complex')
-rw-r--r--src/Witness_complex/doc/Witness_complex_doc.h2
-rw-r--r--src/Witness_complex/example/example_witness_complex_off.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Witness_complex/doc/Witness_complex_doc.h b/src/Witness_complex/doc/Witness_complex_doc.h
index ba258ddc..fa45e359 100644
--- a/src/Witness_complex/doc/Witness_complex_doc.h
+++ b/src/Witness_complex/doc/Witness_complex_doc.h
@@ -34,7 +34,7 @@
which leads to definitions of **weak relaxed witness complex** (or just relaxed witness complex for short) and **strong relaxed witness complex** respectively.
- \image html "swit.svg" "Strong witness witnesses the whole simplex in the witnessing ball"
+ \image html "swit.svg" "Strongly witnessed simplex"
In particular case of 0-relaxation, weak complex corresponds to **witness complex** introduced in \cite de2004topological, whereas 0-relaxed strong witness complex consists of just vertices and is not very interesting.
Hence for small relaxation weak version is preferable.
diff --git a/src/Witness_complex/example/example_witness_complex_off.cpp b/src/Witness_complex/example/example_witness_complex_off.cpp
index 2677499a..c057c118 100644
--- a/src/Witness_complex/example/example_witness_complex_off.cpp
+++ b/src/Witness_complex/example/example_witness_complex_off.cpp
@@ -21,7 +21,7 @@ typedef std::vector< Vertex_handle > typeVectorVertex;
typedef std::vector< Point_d > Point_vector;
int main(int argc, char * const argv[]) {
- if (argc != 4) {
+ if (argc != 5) {
std::cerr << "Usage: " << argv[0]
<< " path_to_point_file number_of_landmarks max_squared_alpha limit_dimension\n";
return 0;