mlpack  2.0.1
version.hpp
Go to the documentation of this file.
1 
14 #ifndef __MLPACK_CORE_UTIL_VERSION_HPP
15 #define __MLPACK_CORE_UTIL_VERSION_HPP
16 
17 #include <string>
18 
19 // The version of mlpack. If this is a git repository, this will be a version
20 // with higher number than the most recent release.
21 #define __MLPACK_VERSION_MAJOR 2
22 #define __MLPACK_VERSION_MINOR 0
23 #define __MLPACK_VERSION_PATCH 1
24 
25 // The name of the version (for use by --version).
26 namespace mlpack {
27 namespace util {
28 
33 std::string GetVersion();
34 
35 } // namespace util
36 } // namespace mlpack
37 
38 #endif
Linear algebra utility functions, generally performed on matrices or vectors.
std::string GetVersion()
This will return either "mlpack x.y.z" or "mlpack master-XXXXXXX" depending on whether or not this is...