Actual source code: slepcversion.h

4: #define SLEPC_VERSION_RELEASE 1 5: #define SLEPC_VERSION_MAJOR 3 6: #define SLEPC_VERSION_MINOR 1 7: #define SLEPC_VERSION_SUBMINOR 0 8: #define SLEPC_VERSION_PATCH 4 9: #define SLEPC_VERSION_DATE "August 4, 2010" 10: #define SLEPC_VERSION_PATCH_DATE "September 25, 2010" 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