Automatic Differentiation
 
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_VERSION_HPP
2#define STAN_MATH_VERSION_HPP
3
4#include <string>
5
6#ifndef STAN_STRING_EXPAND
7#define STAN_STRING_EXPAND(s) #s
8#endif
9
10#ifndef STAN_STRING
11#define STAN_STRING(s) STAN_STRING_EXPAND(s)
12#endif
13
14#define STAN_MATH_MAJOR 4
15#define STAN_MATH_MINOR 9
16#define STAN_MATH_PATCH 0
17
18namespace stan {
19namespace math {
20
23
26
29
30} // namespace math
31} // namespace stan
32
33#endif
const std::string MINOR_VERSION
Minor version number for Stan math library.
Definition version.hpp:25
const std::string MAJOR_VERSION
Major version number for Stan math library.
Definition version.hpp:22
const std::string PATCH_VERSION
Patch version for Stan math library.
Definition version.hpp:28
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
#define STAN_STRING(s)
Definition version.hpp:11
#define STAN_MATH_MAJOR
Definition version.hpp:14
#define STAN_MATH_PATCH
Definition version.hpp:16
#define STAN_MATH_MINOR
Definition version.hpp:15