PARALUTION  1.0.0
PARALUTION
version.hpp
Go to the documentation of this file.
1 #ifndef PARALUTION_VERSION_HPP_
2 #define PARALUTION_VERSION_HPP_
3 
4 // VERSION
5 #define __PARALUTION_VER_TYPE "B"
6 
7 #define __PARALUTION_VER_MAJOR 1
8 #define __PARALUTION_VER_MINOR 1
9 #define __PARALUTION_VER_REV 0
10 
11 // BETA or ALPHA
12 //#define __PARALUTION_VER_PRE ""
13 #define __PARALUTION_VER_PRE "ALPHA"
14 //#define __PARALUTION_VER_PRE "BETA"
15 
16 #define __PARALUTION_VER 10000*__PARALUTION_VER_MAJOR+100*__PARALUTION_VER_MINOR+__PARALUTION_VER_REV
17 
18 
19 #endif // PARALUTION_VERSION_HPP_