xref: /petsc/include/petscversion.h (revision f36adab21a713e027b87f81ce0f8183802282c5b)
1*f36adab2SBarry Smith /* $Id: petscversion.h,v 1.1 1999/04/02 16:36:50 bsmith Exp bsmith $ */
2*f36adab2SBarry Smith #if !defined(__PETSCVERSION_H)
3*f36adab2SBarry Smith #define __PETSCVERSION_H
4cafa780aSBarry Smith 
5cafa780aSBarry Smith /* ========================================================================== */
6cafa780aSBarry Smith /*
7cafa780aSBarry Smith    Current PETSc version number and release date, also listed in
8cafa780aSBarry Smith     docs/changes.html
9cafa780aSBarry Smith     docs/tex/manual/manual.tex and
10cafa780aSBarry Smith     docs/tex/manual/manual_tex.tex.
11cafa780aSBarry Smith */
12*f36adab2SBarry Smith #define PETSC_VERSION_NUMBER "PETSc Version 2.0.24, Patch 0, Released April 6, 1999"
13cafa780aSBarry Smith 
14cafa780aSBarry Smith #define PETSC_VERSION_MAJOR    2
15cafa780aSBarry Smith #define PETSC_VERSION_MINOR    0
16cafa780aSBarry Smith #define PETSC_VERSION_SUBMINOR 24
17*f36adab2SBarry Smith #define PETSC_PATCH_LEVEL      1
18cafa780aSBarry Smith #define PETSC_VERSION_DATE     "April 6, 1998"
19cafa780aSBarry Smith #define PETSC_AUTHOR_INFO      "The PETSc Team:\
20cafa780aSBarry Smith  Satish Balay, Bill Gropp, Lois Curfman McInnes, Barry Smith\n\
21cafa780aSBarry Smith  Bug reports, questions: petsc-maint@mcs.anl.gov\n\
22cafa780aSBarry Smith  Web page: http://www.mcs.anl.gov/petsc/\n"
23cafa780aSBarry Smith 
24cafa780aSBarry Smith #endif
25