All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
persistence_interval.h
Go to the documentation of this file.
1/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
2 * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
3 * Author(s): Hannah Schreiber
4 *
5 * Copyright (C) 2024 Inria
6 *
7 * Modification(s):
8 * - YYYY/MM Author: Description of the modification
9 */
10
17#ifndef PM_INTERVAL_INCLUDED
18#define PM_INTERVAL_INCLUDED
19
20#include <ostream> //std::ostream
21#include <limits> //std::numeric_limits
22#include <tuple>
23#include <utility> //std::move
24
25namespace Gudhi {
26namespace persistence_matrix {
27
39template <typename Dimension, typename Event_value>
50 static constexpr Event_value inf = std::numeric_limits<Event_value>::has_infinity
51 ? std::numeric_limits<Event_value>::infinity()
52 : static_cast<Event_value>(-1);
53
61 Persistence_interval(Event_value birth = inf, Event_value death = inf, Dimension dim = -1)
62 : dim(dim), birth(birth), death(death) {}
63
64 Dimension dim;
65 Event_value birth;
66 Event_value death;
74 inline friend std::ostream& operator<<(std::ostream& stream, const Persistence_interval& interval) {
75 stream << "[" << interval.dim << "] ";
76 if constexpr (std::numeric_limits<Event_value>::has_infinity) {
77 stream << interval.birth << " - " << interval.death;
78 } else {
79 if (interval.birth == inf)
80 stream << "inf";
81 else
82 stream << interval.birth;
83 stream << " - ";
84 if (interval.death == inf)
85 stream << "inf";
86 else
87 stream << interval.death;
88 }
89 return stream;
90 }
91
98 template <std::size_t I>
99 constexpr auto& get() & noexcept {
100 static_assert(I < 3, "Value mismatch at argument 1 in template parameter list. Maximal possible value is 2.");
101
102 if constexpr (I == 0) return birth;
103 if constexpr (I == 1) return death;
104 if constexpr (I == 2) return dim;
105 }
106
113 template <std::size_t I>
114 constexpr const auto& get() const& noexcept {
115 static_assert(I < 3, "Value mismatch at argument 1 in template parameter list. Maximal possible value is 2.");
116
117 if constexpr (I == 0) return birth;
118 if constexpr (I == 1) return death;
119 if constexpr (I == 2) return dim;
120 }
121
128 template <std::size_t I>
129 constexpr auto&& get() && noexcept {
130 static_assert(I < 3, "Value mismatch at argument 1 in template parameter list. Maximal possible value is 2.");
131
132 if constexpr (I == 0) return std::move(birth);
133 if constexpr (I == 1) return std::move(death);
134 if constexpr (I == 2) return std::move(dim);
135 }
136
143 template <std::size_t I>
144 constexpr const auto&& get() const&& noexcept {
145 static_assert(I < 3, "Value mismatch at argument 1 in template parameter list. Maximal possible value is 2.");
146
147 if constexpr (I == 0) return std::move(birth);
148 if constexpr (I == 1) return std::move(death);
149 if constexpr (I == 2) return std::move(dim);
150 }
151};
152
153} // namespace persistence_matrix
154} // namespace Gudhi
155
156namespace std {
157
166template <typename Dimension, typename Event_value>
167struct tuple_size<Gudhi::persistence_matrix::Persistence_interval<Dimension, Event_value> >
168 : integral_constant<size_t, 3> {};
169
180template <size_t I, typename Dimension, typename Event_value>
181struct tuple_element<I, Gudhi::persistence_matrix::Persistence_interval<Dimension, Event_value> > {
182 static_assert(I < 3, "Value mismatch at argument 1 in template parameter list. Maximal possible value is 2.");
183
184 using type = typename conditional <I < 2, Event_value, Dimension>::type;
185};
186
198template <size_t I, typename Dimension, typename Event_value>
200 return i.template get<I>();
201}
202
214template <size_t I, typename Dimension, typename Event_value>
216 return i.template get<I>();
217}
218
230template <size_t I, typename Dimension, typename Event_value>
232 return std::move(i).template get<I>();
233}
234
246template <size_t I, typename Dimension, typename Event_value>
248 return std::move(i).template get<I>();
249}
250
251} // namespace std
252
253#endif // PM_INTERVAL_INCLUDED
constexpr auto & get(Gudhi::persistence_matrix::Persistence_interval< Dimension, Event_value > &i) noexcept
Partial specialization of get for Gudhi::persistence_matrix::Persistence_interval.
Definition: persistence_interval.h:199
Gudhi namespace.
Definition: SimplicialComplexForAlpha.h:14
STL namespace.
Type for an interval in a persistent diagram or barcode. Stores the birth, death and dimension of the...
Definition: persistence_interval.h:40
constexpr const auto && get() const &&noexcept
Specialization of get for Gudhi::persistence_matrix::Persistence_interval.
Definition: persistence_interval.h:144
Dimension dim
Definition: persistence_interval.h:64
static constexpr Event_value inf
Stores the infinity value for birth and death events. Its value depends on the template parameter Eve...
Definition: persistence_interval.h:50
constexpr auto && get() &&noexcept
Specialization of get for Gudhi::persistence_matrix::Persistence_interval.
Definition: persistence_interval.h:129
Event_value death
Definition: persistence_interval.h:66
constexpr auto & get() &noexcept
Specialization of get for Gudhi::persistence_matrix::Persistence_interval.
Definition: persistence_interval.h:99
constexpr const auto & get() const &noexcept
Specialization of get for Gudhi::persistence_matrix::Persistence_interval.
Definition: persistence_interval.h:114
Event_value birth
Definition: persistence_interval.h:65
friend std::ostream & operator<<(std::ostream &stream, const Persistence_interval &interval)
operator<<
Definition: persistence_interval.h:74
Persistence_interval(Event_value birth=inf, Event_value death=inf, Dimension dim=-1)
Constructor.
Definition: persistence_interval.h:61