core.hpp
Go to the documentation of this file.
1 
12 #ifndef MLPACK_CORE_HPP
13 #define MLPACK_CORE_HPP
14 
66 // First, include all of the prerequisites.
67 #include <mlpack/prereqs.hpp>
68 
69 // Now the core mlpack classes.
71 #include <mlpack/core/util/log.hpp>
72 #include <mlpack/core/util/cli.hpp>
91 
92 // mlpack::backtrace only for linux
93 #ifdef HAS_BFD_DL
95 #endif
96 
97 // Include kernel traits.
110 
111 // Use OpenMP if compiled with -DHAS_OPENMP.
112 #ifdef HAS_OPENMP
113  #include <omp.h>
114 #endif
115 
116 // Use Armadillo's C++ version detection.
117 #ifdef ARMA_USE_CXX11
118  #define MLPACK_USE_CX11
119 #endif
120 
121 #endif
The core includes that mlpack expects; standard C++ includes and Armadillo.
Miscellaneous math clamping routines.
Miscellaneous math random-related routines.
Definition of the Range class, which represents a simple range with a lower and upper bound...