datatype.hpp
Go to the documentation of this file.
1 
11 #ifndef MLPACK_CORE_DATA_MAP_POLICIES_DATATYPE_HPP
12 #define MLPACK_CORE_DATA_MAP_POLICIES_DATATYPE_HPP
13 
14 #include <mlpack/prereqs.hpp>
15 
16 namespace mlpack {
17 namespace data {
24 enum Datatype : bool /* [> bool is all the precision we need for two types <] */
25 {
26  numeric = 0,
28 };
29 
30 } // namespace data
31 } // namespace mlpack
32 
33 #endif
Linear algebra utility functions, generally performed on matrices or vectors.
The core includes that mlpack expects; standard C++ includes and Armadillo.
Datatype
The Datatype enum specifies the types of data mlpack algorithms can use.
Definition: datatype.hpp:24