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
1376 slepc 1
/*
2
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1672 slepc 3
   SLEPc - Scalable Library for Eigenvalue Problem Computations
4
   Copyright (c) 2002-2009, Universidad Politecnica de Valencia, Spain
1376 slepc 5
 
1672 slepc 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.
11
 
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.
16
 
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/>.
1376 slepc 19
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
20
*/
21
 
6 dsic.upv.es!jroman 22
#if !defined(__SLEPCVERSION_H)
23
#define __SLEPCVERSION_H
24
 
25
/* ========================================================================== */
26
/*
27
   Current SLEPC version number and release date
28
*/
1401 slepc 29
#define SLEPC_VERSION_RELEASE    0
1077 slepc 30
#define SLEPC_VERSION_MAJOR      2
31
#define SLEPC_VERSION_MINOR      3
1398 slepc 32
#define SLEPC_VERSION_SUBMINOR   3
1077 slepc 33
#define SLEPC_VERSION_PATCH      0
1398 slepc 34
#define SLEPC_VERSION_DATE       "June 1, 2007"
35
#define SLEPC_VERSION_PATCH_DATE "June 1, 2007"
1077 slepc 36
#define SLEPC_AUTHOR_INFO        "        The SLEPc Team\n\
37
   slepc-maint@grycap.upv.es\n\
38
 http://www.grycap.upv.es/slepc\n"
1519 slepc 39
 
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))
45
 
6 dsic.upv.es!jroman 46
#endif
1519 slepc 47