MLPACK  1.0.10
kernel_traits.hpp
Go to the documentation of this file.
1 
23 #ifndef __MLPACK_CORE_KERNELS_KERNEL_TRAITS_HPP
24 #define __MLPACK_CORE_KERNELS_KERNEL_TRAITS_HPP
25 
26 namespace mlpack {
27 namespace kernel {
28 
36 template<typename KernelType>
38 {
39  public:
43  static const bool IsNormalized = false;
44 };
45 
46 }; // namespace kernel
47 }; // namespace mlpack
48 
49 #endif