Actual source code: slepcversion.h
1: /*
2: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3: SLEPc - Scalable Library for Eigenvalue Problem Computations
4: Copyright (c) 2002-2009, Universidad Politecnica de Valencia, Spain
6: This file is part of SLEPc.
7:
8: SLEPc is free software: you can redistribute it and/or modify it under the
9: terms of version 3 of the GNU Lesser General Public License as published by
10: the Free Software Foundation.
12: SLEPc is distributed in the hope that it will be useful, but WITHOUT ANY
13: WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14: FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
15: more details.
17: You should have received a copy of the GNU Lesser General Public License
18: along with SLEPc. If not, see <http://www.gnu.org/licenses/>.
19: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
20: */
25: /* ========================================================================== */
26: /*
27: Current SLEPC version number and release date
28: */
29: #define SLEPC_VERSION_RELEASE 1
30: #define SLEPC_VERSION_MAJOR 3
31: #define SLEPC_VERSION_MINOR 0
32: #define SLEPC_VERSION_SUBMINOR 0
33: #define SLEPC_VERSION_PATCH 2
34: #define SLEPC_VERSION_DATE "February 3, 2009"
35: #define SLEPC_VERSION_PATCH_DATE "February 7, 2009"
36: #define SLEPC_AUTHOR_INFO " The SLEPc Team\n\
37: slepc-maint@grycap.upv.es\n\
38: http://www.grycap.upv.es/slepc\n"
40: #define SLEPC_VERSION_(MAJOR,MINOR,SUBMINOR) \
41: ((SLEPC_VERSION_MAJOR == (MAJOR)) && \
42: (SLEPC_VERSION_MINOR == (MINOR)) && \
43: (SLEPC_VERSION_SUBMINOR == (SUBMINOR)) && \
44: (SLEPC_VERSION_RELEASE == 1))
46: #endif