summaryrefslogtreecommitdiff
path: root/src/Simplex_tree/concept
diff options
context:
space:
mode:
authorglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-10-06 15:31:40 +0000
committerglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-10-06 15:31:40 +0000
commit5ea1f5a9e96a3c937531516176cabc7226bed9da (patch)
tree0653bb4243698deea105f31ebe07181a72f18913 /src/Simplex_tree/concept
parent021b0ba10e22fd39a21f9b300c0e8b928ee5b471 (diff)
Introduce Options::contiguous_vertices.
For now only used and checked in find_vertex. git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/contiguous_vertices@833 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: ceee8ba85eb21991a836b8f1d1117bcaafeb8c1b
Diffstat (limited to 'src/Simplex_tree/concept')
-rw-r--r--src/Simplex_tree/concept/SimplexTreeOptions.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Simplex_tree/concept/SimplexTreeOptions.h b/src/Simplex_tree/concept/SimplexTreeOptions.h
index a50a2bf1..4a88f936 100644
--- a/src/Simplex_tree/concept/SimplexTreeOptions.h
+++ b/src/Simplex_tree/concept/SimplexTreeOptions.h
@@ -37,5 +37,7 @@ struct SimplexTreeOptions {
static constexpr bool store_key;
/// If true, each simplex has extra storage for one `Filtration_value`, and this value is propagated by operations like `Gudhi::Simplex_tree<SimplexTreeOptions>::expansion`. Without it, `Persistent_cohomology` degenerates to computing usual (non-persistent) cohomology.
static constexpr bool store_filtration;
+ /// If true, the list of vertices present in the complex must always be 0, ..., num_vertices-1, without any hole.
+ static constexpr bool contiguous_vertices;
};