gplib  1.0.0
C++ Gaussian Process Library
gplib.hpp
Go to the documentation of this file.
1 #ifndef GPLIB_H
2 #define GPLIB_H
3 
4 
5 /* Version macros for compile-time API version detection */
6 #define GPLIB_VERSION_MAJOR 1
7 #define GPLIB_VERSION_MINOR 0
8 #define GPLIB_VERSION_PATCH 0
9 
10 #define GPLIB_MAKE_VERSION(major, minor, patch) \
11  ((major) * 10000 + (minor) * 100 + (patch))
12 
13 #define GPLIB_VERSION \
14  GPLIB_MAKE_VERSION(GPLIB_VERSION_MAJOR, GPLIB_VERSION_MINOR, GPLIB_VERSION_PATCH)
15 
16 #include "mvgauss.hpp"
17 #include "basic.hpp"
18 #include "gp.hpp"
19 #include "kernels.hpp"
20 #include "multioutput_kernels.hpp"
21 
22 #endif