Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
bound_traits.hpp
Go to the documentation of this file.
1
12
#ifndef MLPACK_CORE_TREE_BOUND_TRAITS_HPP
13
#define MLPACK_CORE_TREE_BOUND_TRAITS_HPP
14
15
namespace
mlpack
{
16
namespace
bound {
17
25
template
<
typename
BoundType>
26
struct
BoundTraits
27
{
31
static
const
bool
HasTightBounds
=
false
;
32
};
33
34
}
// namespace bound
35
}
// namespace mlpack
36
37
#endif
mlpack
.hpp
Definition:
add_to_po.hpp:21
mlpack::bound::BoundTraits
A class to obtain compile-time traits about BoundType classes.
Definition:
bound_traits.hpp:26
mlpack::bound::BoundTraits::HasTightBounds
static const bool HasTightBounds
If true, then the bounds for each dimension are tight.
Definition:
bound_traits.hpp:31