Subversion Repositories slepc-dev

Rev

Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 dsic.upv.es!jroman 1
#if !defined(__SLEPCVERSION_H)
2
#define __SLEPCVERSION_H
3
 
2634 jroman 4
#define SLEPC_VERSION_RELEASE    1
1673 slepc 5
#define SLEPC_VERSION_MAJOR      3
2628 jroman 6
#define SLEPC_VERSION_MINOR      2
1673 slepc 7
#define SLEPC_VERSION_SUBMINOR   0
2655 jroman 8
#define SLEPC_VERSION_PATCH      1
2628 jroman 9
#define SLEPC_VERSION_DATE       "October 28, 2011"
2655 jroman 10
#define SLEPC_VERSION_PATCH_DATE "November 3, 2011"
1519 slepc 11
 
2269 jroman 12
#if !defined (SLEPC_VERSION_SVN)
13
#define SLEPC_VERSION_SVN        "unknown"
14
#endif
15
 
16
#if !defined(SLEPC_VERSION_DATE_SVN)
17
#define SLEPC_VERSION_DATE_SVN   "unknown"
18
#endif
19
 
1519 slepc 20
#define SLEPC_VERSION_(MAJOR,MINOR,SUBMINOR) \
21
 ((SLEPC_VERSION_MAJOR == (MAJOR)) &&       \
22
  (SLEPC_VERSION_MINOR == (MINOR)) &&       \
23
  (SLEPC_VERSION_SUBMINOR == (SUBMINOR)) && \
24
  (SLEPC_VERSION_RELEASE  == 1))
25
 
6 dsic.upv.es!jroman 26
#endif
1519 slepc 27