swh:1:snp:d80eec3f654c152adbdd6e641362bcb340d39fe2
Raw File
Tip revision: 777733804c6f5037cf1dbf6ad0c6757ab6de32e3 authored by Nicusor Serban on 05 September 2023, 12:04:18 UTC
Updating Math Library to tagged v4.7.0
Tip revision: 7777338
version.hpp
#ifndef STAN_VERSION_HPP
#define STAN_VERSION_HPP

#include <string>

#ifndef STAN_STRING_EXPAND
#define STAN_STRING_EXPAND(s) #s
#endif

#ifndef STAN_STRING
#define STAN_STRING(s) STAN_STRING_EXPAND(s)
#endif

#define STAN_MAJOR 2
#define STAN_MINOR 33
#define STAN_PATCH 0

namespace stan {

/** Major version number for Stan package. */
const std::string MAJOR_VERSION = STAN_STRING(STAN_MAJOR);

/** Minor version number for Stan package. */
const std::string MINOR_VERSION = STAN_STRING(STAN_MINOR);

/** Patch version for Stan package. */
const std::string PATCH_VERSION = STAN_STRING(STAN_PATCH);

}  // namespace stan

#endif
back to top