summaryrefslogtreecommitdiff
path: root/src/Simplex_tree/concept/SimplexTreeOptions.h
diff options
context:
space:
mode:
authorglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-11-10 16:31:49 +0000
committerglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-11-10 16:31:49 +0000
commite6f639a50ecbad06d3c61a2cd4a7cb2822318914 (patch)
treecae8c7fd2540a8075d5ab9f0d67080231ee79665 /src/Simplex_tree/concept/SimplexTreeOptions.h
parent416b251a88afb83d05d4fb891863e8b99afdab2b (diff)
parent72f647ad4b802d08072925a374324e7ace4b2c4d (diff)
Merge from trunk.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/contiguous_vertices@900 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 9b9e886cd54b1a91c5c794242fe099e57e6d6a19
Diffstat (limited to 'src/Simplex_tree/concept/SimplexTreeOptions.h')
-rw-r--r--src/Simplex_tree/concept/SimplexTreeOptions.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Simplex_tree/concept/SimplexTreeOptions.h b/src/Simplex_tree/concept/SimplexTreeOptions.h
index 4a88f936..d072cf34 100644
--- a/src/Simplex_tree/concept/SimplexTreeOptions.h
+++ b/src/Simplex_tree/concept/SimplexTreeOptions.h
@@ -34,9 +34,9 @@ struct SimplexTreeOptions {
/// Must be a signed integer type.
typedef SimplexKey Simplex_key;
/// If true, each simplex has extra storage for one `Simplex_key`. Necessary for `Persistent_cohomology`.
- 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;
+ static const 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::expansion`. Without it, `Persistent_cohomology` degenerates to computing usual (non-persistent) cohomology.
+ static const 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;
};