00001 00022 #ifndef __MLPACK_CORE_UTIL_VERSION_HPP 00023 #define __MLPACK_CORE_UTIL_VERSION_HPP 00024 00025 #include <string> 00026 00027 // The version of mlpack. If this is svn trunk, this will be a version with 00028 // higher number than the most recent release. 00029 #define __MLPACK_VERSION_MAJOR 1 00030 #define __MLPACK_VERSION_MINOR 0 00031 #define __MLPACK_VERSION_PATCH 8 00032 00033 // The name of the version (for use by --version). 00034 namespace mlpack { 00035 namespace util { 00036 00041 std::string GetVersion(); 00042 00043 }; // namespace util 00044 }; // namespace mlpack 00045 00046 #endif