atlas  0.6
version.h
Go to the documentation of this file.
1 /*
2  This is version.h
3 
4  Copyright (C) 2004,2005 Fokko du Cloux
5  part of the Atlas of Lie Groups and Representations
6 
7  For copyright and license information see the LICENSE file
8 */
9 
10 #ifndef VERSION_H /* guard against multiple inclusions */
11 #define VERSION_H
12 
13 namespace atlas {
14 
15 namespace version {
16 
17 const char* const NAME = "the Atlas of Lie Groups and Representations";
18 const char* const VERSION = "0.7"; // last advanced May, 2016
19 const char* const COMPILEDATE = __DATE__ " at " __TIME__;
20 
21 }
22 
23 }
24 
25 #endif
const char *const VERSION
Definition: version.h:18
const char *const COMPILEDATE
Definition: version.h:19
const char *const NAME
Definition: version.h:17
Definition: Atlas.h:38