C++ Gaussian Process Library
- Armadillo.
- C++11 compliant compiler. (g++ >= 4.7, clang++ >= 3.5).
- (Optinal, only for test) Boost test suites.
- NLOpt Optimization library.
Example in debian-based distributions
$apt_pref update
$apt_pref install libarmadillo-dev g++ libboost-test-dev libnlopt-dev
Notes:
- Install Armadillo from the source code, for a more updated version. link
- If you install nlopt from the source code remember to set the enable_shared flag.
Installation can be done by the standard make && make install. If the boost unittest framework is install check and installcheck can be run for sanity checking.
git clone https://github.com/pin3da/gplib.git
cd gplib
make
make check
make install
make installcheck
The most commonly useful overrides are setting CXX, to change the compiler used, and PREFIX to change install location. The CXX prefix should be used on all targets as the compiler version is used in the build path. PREFIX is only relevant for the install target.
Example compiling with clang++
export CXX=clang++
make
make check
Contribution to this library is welcome and it is suggested using pull requests in github that will then be reviewed and merged or commented on. A more specific contribution guideline is outlined on the zmq site
Please feel free to add yourself to the AUTHORS file in an alphanumerically sorted way before you raise the pull request.
Most of the code is now commented with doxygen style tags, and a basic configuration file to generate them is in the root directory.
To build the documentation with doxygen use
doxygen
And the resulting html or latex docs will be in the docs/html or docs/latex directories.
An online version of this documentation is brought to you by gh-pages
Disclaimer : The online documentation may be outdated
The library is released under the MPLv2 license.
Please see LICENSE for full details.
Developed by In-silico.