CoreNEURON
version_macros.hpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2022 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================
7 */
8 #pragma once
9 
10 // This is the CoreNEURON analogue of nrnversionmacros.h in NEURON. Hopefully
11 // the duplication can go away soon.
12 #include "coreneuron/config/neuron_version.hpp"
13 #define NRN_VERSION_INT(maj, min, pat) (10000 * maj + 100 * min + pat)
14 #define NRN_VERSION NRN_VERSION_INT(NRN_VERSION_MAJOR, NRN_VERSION_MINOR, NRN_VERSION_PATCH)
15 #define NRN_VERSION_EQ(maj, min, pat) (NRN_VERSION == NRN_VERSION_INT(maj, min, pat))
16 #define NRN_VERSION_NE(maj, min, pat) (NRN_VERSION != NRN_VERSION_INT(maj, min, pat))
17 #define NRN_VERSION_GT(maj, min, pat) (NRN_VERSION > NRN_VERSION_INT(maj, min, pat))
18 #define NRN_VERSION_LT(maj, min, pat) (NRN_VERSION < NRN_VERSION_INT(maj, min, pat))
19 #define NRN_VERSION_GTEQ(maj, min, pat) (NRN_VERSION >= NRN_VERSION_INT(maj, min, pat))
20 #define NRN_VERSION_LTEQ(maj, min, pat) (NRN_VERSION <= NRN_VERSION_INT(maj, min, pat))
21 
22 // 8.2.0 is significant because all versions >=8.2.0 should contain definitions
23 // of these macros, and doing #ifndef NRN_VERSION_GTEQ_8_2_0 is a more
24 // descriptive way of writing #if defined(NRN_VERSION_GTEQ). Testing for 8.2.0
25 // is likely to be a common pattern when adapting MOD file VERBATIM blocks for
26 // C++ compatibility.
27 #if NRN_VERSION_GTEQ(8, 2, 0)
28 #define NRN_VERSION_GTEQ_8_2_0
29 #endif