swh:1:snp:d80eec3f654c152adbdd6e641362bcb340d39fe2
Raw File
Tip revision: acdad0a712df44b9a36018cb43ccb20ab58817ca authored by Daniel Lee on 17 March 2015, 23:04:18 UTC
Merge pull request #1393 from stan-dev/release/v2.6.3
Tip revision: acdad0a
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 = "6";

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

}

#endif
back to top