https://github.com/stan-dev/stan
Raw File
Tip revision: e67c42e32599fdd92d29f5fa9855d5bff7368632 authored by Daniel Lee on 16 October 2013, 19:55:53 UTC
Merge branch 'release/v2.0.0'
Tip revision: e67c42e
version.hpp
#ifndef __STAN__VERSION_HPP__
#define __STAN__VERSION_HPP__

#include <string>

namespace stan {

  /** Major version number for Stan package. */
  const std::string MAJOR_VERSION = "2";

  /** Minor version number for Stan package. */
  const std::string MINOR_VERSION = "0";

  /** Patch version for Stan package. */
  const std::string PATCH_VERSION = "0";

}

#endif
back to top