summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/include/gudhi/Alpha_complex_options.h
blob: 85c8367229e7887f5b0c9454f98f33a6facb7b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*    This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
 *    See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
 *    Author(s):       Vincent Rouvreau
 *
 *    Copyright (C) 2018 Inria
 *
 *    Modification(s):
 *      - YYYY/MM Author: Description of the modification
 */

#ifndef ALPHA_COMPLEX_OPTIONS_H_
#define ALPHA_COMPLEX_OPTIONS_H_

namespace Gudhi {

namespace alpha_complex {

/**
 * \brief Alpha complex complexity template parameter possible values.
 *
 * \ingroup alpha_complex
 */
enum class complexity : char {
  FAST = 'f',   ///< Fast version.
  SAFE = 's',   ///< Safe version.
  EXACT = 'e',  ///< Exact version.
};

}  // namespace alpha_complex

}  // namespace Gudhi

#endif  // ALPHA_COMPLEX_OPTIONS_H_