summaryrefslogtreecommitdiff
path: root/src/Persistent_cohomology/example/plain_homology.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-08-25 13:04:27 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-08-25 13:04:27 +0000
commit11621bfac96fb3fa5d057880fe8e7d890a7c363d (patch)
tree5ccf7746828cba4debfcf4cc92c381890f5a6ce6 /src/Persistent_cohomology/example/plain_homology.cpp
parentd85e942e8ce71ec1f004ef527f219b67d640513a (diff)
Modify the comment about uint_8 -> max is 255
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/3billions_simplices_fix@1455 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 6ca626c7d0f4a690587946bf7b9e4d31c8effc23
Diffstat (limited to 'src/Persistent_cohomology/example/plain_homology.cpp')
-rw-r--r--src/Persistent_cohomology/example/plain_homology.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Persistent_cohomology/example/plain_homology.cpp b/src/Persistent_cohomology/example/plain_homology.cpp
index 2c4e7aa2..ae82c817 100644
--- a/src/Persistent_cohomology/example/plain_homology.cpp
+++ b/src/Persistent_cohomology/example/plain_homology.cpp
@@ -40,7 +40,7 @@ struct MyOptions : Simplex_tree_options_full_featured {
static const bool store_key = true;
// I have few vertices
typedef short Vertex_handle;
- // Maximum number of simplices to compute persistence is 2^8 = 256.
+ // Maximum number of simplices to compute persistence is 2^8 - 1 = 255. One is reserved for null_key
typedef std::uint8_t Simplex_key;
};
typedef Simplex_tree<MyOptions> ST;