summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/include/gudhi/Alpha_complex_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Alpha_complex/include/gudhi/Alpha_complex_options.h')
-rw-r--r--src/Alpha_complex/include/gudhi/Alpha_complex_options.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex_options.h b/src/Alpha_complex/include/gudhi/Alpha_complex_options.h
index cd9fe799..29eb514a 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex_options.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex_options.h
@@ -29,19 +29,15 @@ namespace Gudhi {
namespace alpha_complex {
/**
- * \class complexity
* \brief Alpha complex complexity template parameter possible values.
*
* \ingroup alpha_complex
*/
enum class complexity: char
{
- /** \brief Fast version.*/
- fast='f',
- /** \brief Safe version.*/
- safe='s',
- /** \brief Exact version.*/
- exact='e',
+ FAST='f', ///< Fast version.
+ SAFE='s', ///< Safe version.
+ EXACT='e', ///< Exact version.
};
} // namespace alpha_complex