Subversion Repositories slepc-dev

Compare Revisions

Ignore whitespace Rev 1077 → Rev 1076

/trunk/include/slepcversion.h
5,14 → 5,13
/*
Current SLEPC version number and release date
*/
#define SLEPC_VERSION_RELEASE 1
#define SLEPC_VERSION_MAJOR 2
#define SLEPC_VERSION_MINOR 3
#define SLEPC_VERSION_SUBMINOR 1
#define SLEPC_VERSION_PATCH 0
#define SLEPC_VERSION_PATCH_DATE "Oct 6, 2005"
#define SLEPC_VERSION_DATE "Oct 6, 2005"
#define SLEPC_AUTHOR_INFO " The SLEPc Team\n\
slepc-maint@grycap.upv.es\n\
http://www.grycap.upv.es/slepc\n"
#define SLEPC_VERSION_NUMBER "SLEPc Version 2.3.0-1, Released Oct 6, 2005"
#define SLEPC_VERSION_MAJOR 2
#define SLEPC_VERSION_MINOR 3
#define SLEPC_VERSION_SUBMINOR 0
#define SLEPC_VERSION_PATCH 1
#define SLEPC_VERSION_DATE "Oct 6, 2005"
#define SLEPC_AUTHOR_INFO "The SLEPc Team\n\
Bug reports, questions: slepc-maint@grycap.upv.es\n\
Web page: http://www.grycap.upv.es/slepc\n"
#endif
/trunk/src/sys/slepcinit.c
18,13 → 18,8
 
info = (*PetscHelpPrintf)(comm,"--------------------------------------------\
------------------------------\n"); CHKERRQ(info);
#if (PETSC_VERSION_RELEASE == 1)
info = (*PetscHelpPrintf)(comm,"SLEPc Release Version %d.%d.%d-%d, %s\n",
#else
info = (*PetscHelpPrintf)(comm,"SLEPc Development Version %d.%d.%d-%d, %s\n",
#endif
SLEPC_VERSION_MAJOR,SLEPC_VERSION_MINOR,SLEPC_VERSION_SUBMINOR,SLEPC_VERSION_PATCH,SLEPC_VERSION_PATCH_DATE); CHKERRQ(info);
info = (*PetscHelpPrintf)(comm,SLEPC_AUTHOR_INFO); CHKERRQ(info);
info = (*PetscHelpPrintf)(comm,"\t %s\n",SLEPC_VERSION_NUMBER); CHKERRQ(info);
info = (*PetscHelpPrintf)(comm,"%s",SLEPC_AUTHOR_INFO); CHKERRQ(info);
info = (*PetscHelpPrintf)(comm,"See docs/manual.html for help. \n"); CHKERRQ(info);
#if !defined(PARCH_win32)
info = (*PetscHelpPrintf)(comm,"SLEPc libraries linked from %s\n",SLEPC_LIB_DIR); CHKERRQ(info);