Main Page
Module List
Reference documentation
Namespaces
Classes
Examples
distro
c++_api
inc
opals
KernelShape.hpp
1
#ifndef OPALS_KERNEL_SHAPE_HPP_INCLUDED
2
#define OPALS_KERNEL_SHAPE_HPP_INCLUDED
3
4
#include <opals/config.hpp>
5
6
namespace
opals
7
{
8
/// TODO: Enumerator for what?
9
namespace
KernelShape
10
{
11
enum
Type
12
{
13
square
,
///< square kernel (Chebyshev metrics))
14
circle
,
///< circular kernel (Euclidean metrics)
15
diamond
,
///< diamond kernel (Manhattan metrics)
16
Count
///< number of elements
17
};
18
}
19
}
20
21
#endif