mlpack  2.0.1
arma_config_check.hpp
Go to the documentation of this file.
1 
18 #ifndef __MLPACK_CORE_UTIL_ARMA_CONFIG_CHECK_HPP
19 #define __MLPACK_CORE_UTIL_ARMA_CONFIG_CHECK_HPP
20 
21 #include "arma_config.hpp"
22 
23 #ifdef ARMA_64BIT_WORD
24  #ifdef MLPACK_ARMA_NO_64BIT_WORD
25  #pragma message "mlpack was compiled without ARMA_64BIT_WORD, but you are \
26 compiling with ARMA_64BIT_WORD. This will almost certainly cause irreparable \
27 disaster. Either disable ARMA_64BIT_WORD in your application which is using \
28 mlpack, or, recompile mlpack against a version of Armadillo which has \
29 ARMA_64BIT_WORD enabled."
30  #endif
31 #else
32  #ifdef MLPACK_ARMA_64BIT_WORD
33  #pragma message "mlpack was compiled with ARMA_64BIT_WORD, but you are \
34 compiling without ARMA_64BIT_WORD. This will almost certainly cause \
35 irreparable disaster. Either enable ARMA_64BIT_WORD in your application which \
36 is using mlpack, or, recompile mlpack against a version of Armadillo which has \
37 ARMA_64BIT_WORD disabled."
38  #endif
39 #endif
40 
41 #endif
This is an autogenerated file which contains the configuration of Armadillo at the time mlpack was bu...