|
CoreNEURON
|
#include "coreneuron/config/neuron_version.hpp"Go to the source code of this file.
Macros | |
| #define | NRN_VERSION_INT(maj, min, pat) (10000 * maj + 100 * min + pat) |
| #define | NRN_VERSION NRN_VERSION_INT(NRN_VERSION_MAJOR, NRN_VERSION_MINOR, NRN_VERSION_PATCH) |
| #define | NRN_VERSION_EQ(maj, min, pat) (NRN_VERSION == NRN_VERSION_INT(maj, min, pat)) |
| #define | NRN_VERSION_NE(maj, min, pat) (NRN_VERSION != NRN_VERSION_INT(maj, min, pat)) |
| #define | NRN_VERSION_GT(maj, min, pat) (NRN_VERSION > NRN_VERSION_INT(maj, min, pat)) |
| #define | NRN_VERSION_LT(maj, min, pat) (NRN_VERSION < NRN_VERSION_INT(maj, min, pat)) |
| #define | NRN_VERSION_GTEQ(maj, min, pat) (NRN_VERSION >= NRN_VERSION_INT(maj, min, pat)) |
| #define | NRN_VERSION_LTEQ(maj, min, pat) (NRN_VERSION <= NRN_VERSION_INT(maj, min, pat)) |
| #define NRN_VERSION NRN_VERSION_INT(NRN_VERSION_MAJOR, NRN_VERSION_MINOR, NRN_VERSION_PATCH) |
Definition at line 14 of file version_macros.hpp.
| #define NRN_VERSION_EQ | ( | maj, | |
| min, | |||
| pat | |||
| ) | (NRN_VERSION == NRN_VERSION_INT(maj, min, pat)) |
Definition at line 15 of file version_macros.hpp.
| #define NRN_VERSION_GT | ( | maj, | |
| min, | |||
| pat | |||
| ) | (NRN_VERSION > NRN_VERSION_INT(maj, min, pat)) |
Definition at line 17 of file version_macros.hpp.
| #define NRN_VERSION_GTEQ | ( | maj, | |
| min, | |||
| pat | |||
| ) | (NRN_VERSION >= NRN_VERSION_INT(maj, min, pat)) |
Definition at line 19 of file version_macros.hpp.
| #define NRN_VERSION_INT | ( | maj, | |
| min, | |||
| pat | |||
| ) | (10000 * maj + 100 * min + pat) |
Definition at line 13 of file version_macros.hpp.
| #define NRN_VERSION_LT | ( | maj, | |
| min, | |||
| pat | |||
| ) | (NRN_VERSION < NRN_VERSION_INT(maj, min, pat)) |
Definition at line 18 of file version_macros.hpp.
| #define NRN_VERSION_LTEQ | ( | maj, | |
| min, | |||
| pat | |||
| ) | (NRN_VERSION <= NRN_VERSION_INT(maj, min, pat)) |
Definition at line 20 of file version_macros.hpp.
| #define NRN_VERSION_NE | ( | maj, | |
| min, | |||
| pat | |||
| ) | (NRN_VERSION != NRN_VERSION_INT(maj, min, pat)) |
Definition at line 16 of file version_macros.hpp.