Actual source code: slepcversion.h
4: #define SLEPC_VERSION_RELEASE 1
5: #define SLEPC_VERSION_MAJOR 3
6: #define SLEPC_VERSION_MINOR 0
7: #define SLEPC_VERSION_SUBMINOR 0
8: #define SLEPC_VERSION_PATCH 7
9: #define SLEPC_VERSION_DATE "February 3, 2009"
10: #define SLEPC_VERSION_PATCH_DATE "October 30, 2009"
11: #define SLEPC_AUTHOR_INFO " The SLEPc Team\n\
12: slepc-maint@grycap.upv.es\n\
13: http://www.grycap.upv.es/slepc\n"
15: #define SLEPC_VERSION_(MAJOR,MINOR,SUBMINOR) \
16: ((SLEPC_VERSION_MAJOR == (MAJOR)) && \
17: (SLEPC_VERSION_MINOR == (MINOR)) && \
18: (SLEPC_VERSION_SUBMINOR == (SUBMINOR)) && \
19: (SLEPC_VERSION_RELEASE == 1))
21: #endif