core.hpp
Go to the documentation of this file.
1 
12 #ifndef MLPACK_CORE_HPP
13 #define MLPACK_CORE_HPP
14 
250 // First, include all of the prerequisites.
251 #include <mlpack/prereqs.hpp>
252 
253 // Now the core mlpack classes.
255 #include <mlpack/core/util/log.hpp>
256 #include <mlpack/core/util/cli.hpp>
258 #include <mlpack/core/data/load.hpp>
259 #include <mlpack/core/data/save.hpp>
273 
274 // mlpack::backtrace only for linux
275 #ifdef HAS_BFD_DL
277 #endif
278 
279 // Include kernel traits.
291 
292 // Use OpenMP if compiled with -DHAS_OPENMP.
293 #ifdef HAS_OPENMP
294  #include <omp.h>
295 #endif
296 
297 // Use Armadillo's C++ version detection.
298 #ifdef ARMA_USE_CXX11
299  #define MLPACK_USE_CX11
300 #endif
301 
302 #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...