Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-17 09:37:24

0001 //-----------------------------------*-C++-*---------------------------------//
0002 // Copyright 2020-2024 UT-Battelle, LLC, and other Celeritas developers.
0003 // See the top-level COPYRIGHT file for details.
0004 // SPDX-License-Identifier: (Apache-2.0 OR MIT)
0005 //---------------------------------------------------------------------------//
0006 //! \file corecel/Version.hh
0007 //! \brief Celeritas version.
0008 //---------------------------------------------------------------------------//
0009 #pragma once
0010 
0011 /*!
0012 * Celeritas version as a compile-time constant.
0013 *
0014 * Encoded as a big-endian hexadecimal with one byte per component:
0015 * (major * 256 + minor) * 256 + patch.
0016 */
0017 #define CELERITAS_VERSION 0x000500
0018 
0019 //! Celeritas version string with git metadata
0020 inline constexpr char celeritas_version[]    = "0.5.0";
0021 //! Celeritas major version
0022 inline constexpr int celeritas_version_major = 0;
0023 //! Celeritas minor version
0024 inline constexpr int celeritas_version_minor = 5;
0025 //! Celeritas patch version
0026 inline constexpr int celeritas_version_patch = 0;