Alpha_complex_options.h
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): Vincent Rouvreau
4 *
5 * Copyright (C) 2018 Inria
6 *
7 * Modification(s):
8 * - YYYY/MM Author: Description of the modification
9 */
10
11#ifndef ALPHA_COMPLEX_OPTIONS_H_
12#define ALPHA_COMPLEX_OPTIONS_H_
13
14namespace Gudhi {
15
16namespace alpha_complex {
17
23enum class complexity : char {
24 FAST = 'f',
25 SAFE = 's',
26 EXACT = 'e',
27};
28
29} // namespace alpha_complex
30
31} // namespace Gudhi
32
33#endif // ALPHA_COMPLEX_OPTIONS_H_
complexity
Alpha complex complexity template parameter possible values.
Definition: Alpha_complex_options.h:23