diff -Nru slepc-3.10.1+dfsg1/config/cmakeboot.py slepc-3.10.2+dfsg1/config/cmakeboot.py --- slepc-3.10.1+dfsg1/config/cmakeboot.py 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/config/cmakeboot.py 2019-02-11 16:58:45.000000000 +0000 @@ -55,7 +55,6 @@ self.arch = self.framework.require('PETSc.options.arch', None) self.petscdir = self.framework.require('PETSc.options.petscdir', None) self.languages = self.framework.require('PETSc.options.languages', None) - self.debugging = self.framework.require('PETSc.options.debugging', None) self.cmake = self.framework.require('config.packages.cmake', None) self.compilers = self.framework.require('config.compilers', None) self.types = self.framework.require('config.types', None) diff -Nru slepc-3.10.1+dfsg1/config/configure.py slepc-3.10.2+dfsg1/config/configure.py --- slepc-3.10.1+dfsg1/config/configure.py 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/config/configure.py 2019-02-11 16:58:45.000000000 +0000 @@ -448,8 +448,8 @@ else: buildtype = 'legacy' print(' Configure stage complete. Now build the SLEPc library with ('+buildtype+' build):') if emptyarch: - print(' make SLEPC_DIR=$PWD PETSC_DIR='+petsc.dir) + print(' make SLEPC_DIR='+slepc.dir+' PETSC_DIR='+petsc.dir) else: - print(' make SLEPC_DIR=$PWD PETSC_DIR='+petsc.dir+' PETSC_ARCH='+archname) + print(' make SLEPC_DIR='+slepc.dir+' PETSC_DIR='+petsc.dir+' PETSC_ARCH='+archname) print('xxx'+'='*74+'xxx') print() diff -Nru slepc-3.10.1+dfsg1/config/install.py slepc-3.10.2+dfsg1/config/install.py --- slepc-3.10.1+dfsg1/config/install.py 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/config/install.py 2019-02-11 16:58:45.000000000 +0000 @@ -1,6 +1,12 @@ #!/usr/bin/env python from __future__ import print_function -import os, sys, shutil, commands +import os, sys, shutil +if sys.version_info < (3,): + import commands + getstatusoutput = commands.getstatusoutput +else: + import subprocess + getstatusoutput = subprocess.getstatusoutput try: WindowsError @@ -344,12 +350,12 @@ if not os.path.splitext(src)[1] == '.o': shutil.copy2(src, dst) if os.path.splitext(dst)[1] == '.'+self.arLibSuffix: - (result, output) = commands.getstatusoutput(self.ranlib+' '+dst) + (result, output) = getstatusoutput(self.ranlib+' '+dst) if os.path.splitext(dst)[1] == '.dylib' and os.path.isfile('/usr/bin/install_name_tool'): - (result, output) = commands.getstatusoutput('otool -D '+src) + (result, output) = getstatusoutput('otool -D '+src) oldname = output[output.find("\n")+1:] - installName = oldname.replace(self.archDir, self.installDir) - (result, output) = commands.getstatusoutput('/usr/bin/install_name_tool -id ' + installName + ' ' + dst) + installName = oldname.replace(os.path.realpath(self.archDir), self.installDir) + (result, output) = getstatusoutput('/usr/bin/install_name_tool -id '+installName+' '+dst) # preserve the original timestamps - so that the .a vs .so time order is preserved shutil.copystat(src,dst) return diff -Nru slepc-3.10.1+dfsg1/CTAGS slepc-3.10.2+dfsg1/CTAGS --- slepc-3.10.1+dfsg1/CTAGS 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/CTAGS 2019-02-11 16:58:45.000000000 +0000 @@ -4501,7 +4501,7 @@ SLICE_PTOL src/pep/impls/krylov/stoar/qslice.c 43;" d file: SLICOTsb03od_ include/slepc/private/lmeimpl.h 86;" d SLICOTsb03od_ include/slepc/private/lmeimpl.h 89;" d -SMALLN src/sys/classes/fn/impls/exp/fnexp.c 844;" d file: +SMALLN src/sys/classes/fn/impls/exp/fnexp.c 845;" d file: SNESLineSearchPostheckFunction src/eps/impls/power/power.c /^static PetscErrorCode SNESLineSearchPostheckFunction(SNESLineSearch linesearch,Vec x,Vec y,Vec w,PetscBool *changed_y,PetscBool *changed_w,void *ctx)$/;" f file: SOURCEC include/makefile /^SOURCEC =$/;" m SOURCEC include/slepc/finclude/makefile /^SOURCEC =$/;" m @@ -6617,6 +6617,8 @@ getcoeffsproduct src/sys/classes/fn/impls/exp/fnexp.c /^static PetscErrorCode getcoeffsproduct(PetscInt k,PetscInt m,PetscComplex *p,PetscComplex *q,PetscComplex *mult,PetscBool query)$/;" f file: getcolumn include/slepc/private/bvimpl.h /^ PetscErrorCode (*getcolumn)(BV,PetscInt,Vec*);$/;" m struct:_BVOps getisreal src/sys/classes/fn/impls/exp/fnexp.c /^static PetscErrorCode getisreal(PetscInt n,PetscComplex *a,PetscBool *result)$/;" f file: +getstatusoutput config/install.py /^ getstatusoutput = commands.getstatusoutput$/;" v +getstatusoutput config/install.py /^ getstatusoutput = subprocess.getstatusoutput$/;" v global src/eps/impls/krylov/krylovschur/krylovschur.h /^ PetscBool global; \/* flag distinguishing global from local eps *\/$/;" m struct:__anon91 globaldata src/eps/impls/external/trlan/trlan.c /^} globaldata;$/;" v typeref:struct:__anon88 file: globconf config/configure.py /^ globconf = CreateFile(os.path.join(slepc.dir,'lib','slepc','conf'),'slepcvariables',log)$/;" v diff -Nru slepc-3.10.1+dfsg1/debian/changelog slepc-3.10.2+dfsg1/debian/changelog --- slepc-3.10.1+dfsg1/debian/changelog 2018-12-26 11:09:42.000000000 +0000 +++ slepc-3.10.2+dfsg1/debian/changelog 2019-04-04 04:08:09.000000000 +0000 @@ -1,3 +1,9 @@ +slepc (3.10.2+dfsg1-1) unstable; urgency=medium + + * New upstream release. + + -- Drew Parsons Thu, 04 Apr 2019 12:08:09 +0800 + slepc (3.10.1+dfsg1-3) unstable; urgency=medium * skip build tests on ia64 (consistently times out) diff -Nru slepc-3.10.1+dfsg1/debian/patches/double_colon_patch slepc-3.10.2+dfsg1/debian/patches/double_colon_patch --- slepc-3.10.1+dfsg1/debian/patches/double_colon_patch 2018-12-26 11:09:42.000000000 +0000 +++ slepc-3.10.2+dfsg1/debian/patches/double_colon_patch 2019-04-04 04:08:09.000000000 +0000 @@ -1,8 +1,6 @@ -Index: slepc/makefile -=================================================================== ---- slepc.orig/makefile -+++ slepc/makefile -@@ -179,7 +179,7 @@ allclean: +--- a/makefile ++++ b/makefile +@@ -180,7 +180,7 @@ ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} allclean-legacy; \ fi diff -Nru slepc-3.10.1+dfsg1/docs/changes.html slepc-3.10.2+dfsg1/docs/changes.html --- slepc-3.10.1+dfsg1/docs/changes.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/changes.html 2019-02-11 16:58:45.000000000 +0000 @@ -33,8 +33,8 @@ -
slepc-3.10.1 2018-10-23
-
Report Typos and Errors
+
slepc-3.10.2 2019-02-11
+
Report Typos and Errors
[ Manual | Installation diff -Nru slepc-3.10.1+dfsg1/docs/faq.html slepc-3.10.2+dfsg1/docs/faq.html --- slepc-3.10.1+dfsg1/docs/faq.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/faq.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
[ Manual | Installation diff -Nru slepc-3.10.1+dfsg1/docs/index.html slepc-3.10.2+dfsg1/docs/index.html --- slepc-3.10.1+dfsg1/docs/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
[ Manual | Installation diff -Nru slepc-3.10.1+dfsg1/docs/instal.html slepc-3.10.2+dfsg1/docs/instal.html --- slepc-3.10.1+dfsg1/docs/instal.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/instal.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
[ Manual diff -Nru slepc-3.10.1+dfsg1/docs/mail_list.html slepc-3.10.2+dfsg1/docs/mail_list.html --- slepc-3.10.1+dfsg1/docs/mail_list.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/mail_list.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
[ Manual | Installation diff -Nru slepc-3.10.1+dfsg1/docs/makefile.html slepc-3.10.2+dfsg1/docs/makefile.html --- slepc-3.10.1+dfsg1/docs/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/docs/manual.html slepc-3.10.2+dfsg1/docs/manual.html
--- slepc-3.10.1+dfsg1/docs/manual.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/docs/manual.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
[ Manual | Installation diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVAppendOptionsPrefix

Appends to the prefix used for searching for all BV options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVApplyMatrixBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVApplyMatrixBV

Multiplies the BV vectors by the matrix representation of the inner product.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVApplyMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVApplyMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVApplyMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVApplyMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVApplyMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVApplyMatrix

Multiplies a vector by the matrix representation of the inner product.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCopyColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCopyColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCopyColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCopyColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCopyColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCopyColumn

Copies the values from one of the columns to another one.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCopy.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCopy.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCopy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCopy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCopy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCopy

Copies a basis vector object into another one, W <- V.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCopyVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCopyVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCopyVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCopyVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCopyVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCopyVec

Copies one of the columns of a basis vectors object into a Vec.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateFromMat.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateFromMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateFromMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateFromMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateFromMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCreateFromMat

Creates a basis vectors object from a dense Mat object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreate.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCreate

Creates a basis vectors context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateMat.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCreateMat

Creates a new Mat object of dense type and copies the contents of the BV object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateTensor.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateTensor.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateTensor.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateTensor.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateTensor -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCreateTensor

Creates a tensor BV that is represented in compact form as V = (I otimes U) S, where U has orthonormal columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVCreateVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVCreateVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVCreateVec

Creates a new Vec object with the same type and dimensions as the columns of the basis vectors object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDestroy

Destroys BV context that was created with BVCreate().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDotColumnBegin -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDotColumnBegin

Starts a split phase dot product computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDotColumnEnd -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDotColumnEnd

Ends a split phase dot product computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDotColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDotColumn

Computes multiple dot products of a column against all the previous columns of a BV.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDot.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDot.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDot.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDot.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDot -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDot

Computes the 'block-dot' product of two basis vectors objects.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotVecBegin.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotVecBegin.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotVecBegin.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotVecBegin.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDotVecBegin -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDotVecBegin

Starts a split phase dot product computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotVecEnd.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotVecEnd.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotVecEnd.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotVecEnd.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDotVecEnd -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDotVecEnd

Ends a split phase dot product computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDotVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDotVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDotVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDotVec

Computes multiple dot products of a vector against all the column vectors of a BV.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDuplicate.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDuplicate.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDuplicate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDuplicate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDuplicate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDuplicate

Creates a new basis vector object of the same type and dimensions as an existing one.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDuplicateResize.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDuplicateResize.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVDuplicateResize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVDuplicateResize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVDuplicateResize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVDuplicateResize

Creates a new basis vector object of the same type and dimensions as an existing one, but with possibly different number of columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVFinalizePackage

This function destroys everything in the Slepc interface to the BV package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetActiveColumns -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetActiveColumns

Returns the current active dimensions.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetArray.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetArray.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetArray.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetArray.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetArray -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetArray

Returns a pointer to a contiguous array that contains this processor's portion of the BV data.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetArrayRead.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetArrayRead.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetArrayRead.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetArrayRead.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetArrayRead -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetArrayRead

Returns a read-only pointer to a contiguous array that contains this processor's portion of the BV data.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetBufferVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetBufferVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetBufferVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetBufferVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetBufferVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetBufferVec

Obtain the buffer vector associated with the BV object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetCachedBV.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetCachedBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetCachedBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetCachedBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetCachedBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetCachedBV

Returns a BV object stored internally that holds the result of B*X after a call to BVApplyMatrixBV().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetColumn

Returns a Vec object that contains the entries of the requested column of the basis vectors object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetMat.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetMat

Returns a Mat object of dense type that shares the memory of the BV object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetMatMultMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetMatMultMethod

Gets the method used for the BVMatMult() operation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetMatrix

Retrieves the matrix representation of the inner product.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetNumConstraints -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetNumConstraints

Returns the number of constraints.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetOptionsPrefix

Gets the prefix used for searching for all BV options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetOrthogonalization -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetOrthogonalization

Gets the orthogonalization settings from the BV object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetRandomContext.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetRandomContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetRandomContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetRandomContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetRandomContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetRandomContext

Gets the PetscRandom object associated with the BV.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetSignature.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetSignature.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetSignature.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetSignature.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetSignature -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetSignature

Retrieves the signature matrix from last orthogonalization.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetSizes.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetSizes.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetSizes.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetSizes.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetSizes -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetSizes

Returns the local and global sizes, and the number of columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetSplit.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetSplit.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetSplit.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetSplit.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetSplit -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetSplit

Splits the BV object into two BV objects that share the internal data, one of them containing the leading columns and the other one containing the remaining columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetType.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVGetType

Gets the BV type name (as a string) from the BV context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BV.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BV.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BV

Basis vectors, SLEPc object representing a collection of vectors that typically constitute a basis of a subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVInitializePackage

This function initializes everything in the BV package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to BVCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInsertConstraints.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInsertConstraints.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInsertConstraints.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInsertConstraints.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVInsertConstraints -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVInsertConstraints

Insert a set of vectors as constraints.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInsertVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInsertVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInsertVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInsertVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVInsertVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVInsertVec

Insert a vector into the specified column.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInsertVecs.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInsertVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVInsertVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVInsertVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVInsertVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVInsertVecs

Insert a set of vectors into the specified columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMultColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMultColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMultColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMultColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMatMultColumn

Computes the matrix-vector product for a specified column, storing the result in the next column: v_{j+1}=A*v_j.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultHermitianTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMatMultHermitianTranspose

Computes the matrix-vector product with the conjugate transpose of a matrix for each column, Y=A^H*V.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMult.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMult.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMult.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMult.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMult -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMatMult

Computes the matrix-vector product for each column, Y=A*V.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMultType.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMultType.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatMultType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatMultType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMatMultType

Different ways of performing the BVMatMult() operation

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatProject.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatProject.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMatProject.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMatProject.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMatProject -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMatProject

Computes the projection of a matrix onto a subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMultColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMultColumn

Computes y = beta*y + alpha*X*q, where y is the j-th column of X.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMult.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMult.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMult.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMult.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMult -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMult

Computes Y = beta*Y + alpha*X*Q.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultInPlace.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultInPlace.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultInPlace.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultInPlace.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMultInPlace -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMultInPlace

Update a set of vectors as V(:,s:e-1) = V*Q(:,s:e-1).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMultInPlaceTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMultInPlaceTranspose

Update a set of vectors as V(:,s:e-1) = V*Q'(:,s:e-1).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVMultVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVMultVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVMultVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVMultVec

Computes y = beta*y + alpha*X*q.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVNormColumnBegin -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVNormColumnBegin

Starts a split phase norm computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVNormColumnEnd -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVNormColumnEnd

Ends a split phase norm computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVNormColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVNormColumn

Computes the vector norm of a selected column.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNorm.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNorm.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNorm.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNorm.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVNorm -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVNorm

Computes the matrix norm of the BV.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormVecBegin.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormVecBegin.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormVecBegin.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormVecBegin.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVNormVecBegin -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVNormVecBegin

Starts a split phase norm computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormVecEnd.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormVecEnd.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormVecEnd.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormVecEnd.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVNormVecEnd -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVNormVecEnd

Ends a split phase norm computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVNormVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVNormVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVNormVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVNormVec

Computes the norm of a given vector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogBlockType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthogBlockType

Determines the method used in block orthogonalization (simultaneous orthogonalization of a set of vectors)

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalizeColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthogonalizeColumn

Orthogonalize one of the column vectors with respect to the previous ones.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalize.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalize.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthogonalize

Orthogonalize all columns (starting from the leading ones), that is, compute the QR decomposition.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalizeSomeColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthogonalizeSomeColumn

Orthogonalize one of the column vectors with respect to some of the previous ones.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalizeVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthogonalizeVec

Orthogonalize a given vector with respect to all active columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogRefineType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthogRefineType

Determines what type of refinement to use during orthogonalization of vectors

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogType.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogType.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthogType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthogType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthogType

Determines the method used in the orthogonalization of vectors

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthonormalizeColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVOrthonormalizeColumn

Orthonormalize one of the column vectors with respect to the previous ones. This is equivalent to a call to BVOrthogonalizeColumn() followed by a call to BVScaleColumn() with the reciprocal of the norm.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVRegisterAll

Registers all of the storage variants in the BV package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRegister.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVRegister

Adds a new storage format to the BV package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVResize.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVResize.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVResize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVResize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVResize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVResize

Change the number of columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreArray.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreArray.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreArray.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreArray.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreArray -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVRestoreArray

Restore the BV object after BVGetArray() has been called.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreArrayRead -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVRestoreArrayRead

Restore the BV object after BVGetArrayRead() has been called.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVRestoreColumn

Restore a column obtained with BVGetColumn().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreMat.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVRestoreMat

Restores the Mat obtained with BVGetMat().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreSplit.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreSplit.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVRestoreSplit.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVRestoreSplit.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreSplit -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVRestoreSplit

Restore the BV objects obtained with BVGetSplit().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVScaleColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVScaleColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVScaleColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVScaleColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVScaleColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVScaleColumn

Scale one column of a BV.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVScale.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVScale

Multiply the BV entries by a scalar value.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetActiveColumns -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetActiveColumns

Specify the columns that will be involved in operations.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetBufferVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetBufferVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetBufferVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetBufferVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetBufferVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetBufferVec

Attach a vector object to be used as buffer space for several operations.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetFromOptions

Sets BV options from the options database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetMatMultMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetMatMultMethod

Specifies the method used for the BVMatMult() operation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetMatrix

Specifies the inner product to be used in orthogonalization.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetNumConstraints -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetNumConstraints

Set the number of constraints.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetOptionsPrefix

Sets the prefix used for searching for all BV options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetOrthogonalization -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetOrthogonalization

Specifies the method used for the orthogonalization of vectors (classical or modified Gram-Schmidt with or without refinement), and for the block-orthogonalization (simultaneous orthogonalization of a set of vectors).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandomColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetRandomColumn

Set one column of a BV to random numbers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandomCond.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandomCond.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandomCond.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandomCond.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandomCond -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetRandomCond

Set the columns of a BV to random numbers, in a way that the generated matrix has a given condition number.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandomContext.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandomContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandomContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandomContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandomContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetRandomContext

Sets the PetscRandom object associated with the BV, to be used in operations that need random numbers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandom.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandom.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetRandom.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetRandom.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandom -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetRandom

Set the columns of a BV to random numbers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetSignature.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetSignature.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetSignature.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetSignature.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetSignature -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetSignature

Sets the signature matrix to be used in orthogonalization.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetSizesFromVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetSizesFromVec

Sets the local and global sizes, and the number of columns. Local and global sizes are specified indirectly by passing a template vector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetSizes.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetSizes.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetSizes.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetSizes.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetSizes -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetSizes

Sets the local and global sizes, and the number of columns.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetType.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVSetType

Selects the type for the BV object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorBuildFirstColumn -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVTensorBuildFirstColumn

Builds the first column of the tensor basis vectors V from the data contained in the first k columns of U.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorCompress.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorCompress.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorCompress.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorCompress.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorCompress -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVTensorCompress

Updates the U and S factors of the tensor basis vectors object V by means of an SVD, removing redundant information.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorGetDegree -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVTensorGetDegree

Returns the number of blocks (degree) of the tensor BV.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorGetFactors -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVTensorGetFactors

Returns the two factors involved in the definition of the tensor basis vectors object, V = (I otimes U) S.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorRestoreFactors -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVTensorRestoreFactors

Restore the two factors that were obtained with BVTensorGetFactors().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVType.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVType.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVType

String with the name of the type of BV. Each type differs in the way data is stored internally.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/BVView.html slepc-3.10.2+dfsg1/docs/manualpages/BV/BVView.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/BVView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/BVView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ BVView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

BVView

Prints the BV data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/BV/index.html slepc-3.10.2+dfsg1/docs/manualpages/BV/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/BV/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/BV/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSAllocate.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSAllocate.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSAllocate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSAllocate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSAllocate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSAllocate

Allocates memory for internal storage or matrices in DS.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSAppendOptionsPrefix

Appends to the prefix used for searching for all DS options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSCond.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSCond.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSCond.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSCond.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSCond -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSCond

Compute the inf-norm condition number of the first matrix as cond(A) = norm(A)*norm(inv(A)).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSCopyMat.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSCopyMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSCopyMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSCopyMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSCopyMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSCopyMat

Copies the contents of a sequential dense Mat object to the indicated DS matrix, or vice versa.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSCreate.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSCreate

Creates a DS context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSDestroy

Destroys DS context that was created with DSCreate().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSFinalizePackage

This function destroys everything in the SLEPc interface to the DS package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetArray.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetArray.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetArray.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetArray.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetArray -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetArray

Returns a pointer to one of the internal arrays used to represent matrices. You MUST call DSRestoreArray() when you no longer need to access the array.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetArrayReal.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetArrayReal.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetArrayReal.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetArrayReal.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetArrayReal -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetArrayReal

Returns a pointer to one of the internal arrays used to represent real matrices. You MUST call DSRestoreArrayReal() when you no longer need to access the array.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetBlockSize

Gets the block size.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetCompact.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetCompact.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetCompact.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetCompact.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetCompact -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetCompact

Gets the compact storage flag.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetDimensions

Returns the current dimensions.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetExtraRow.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetExtraRow.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetExtraRow.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetExtraRow.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetExtraRow -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetExtraRow

Gets the extra row flag.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetLeadingDimension -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetLeadingDimension

Returns the leading dimension of the allocated matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetMat.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetMat

Returns a sequential dense Mat object containing the requested matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetMethod

Gets the method currently used in the DS.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetOptionsPrefix

Gets the prefix used for searching for all DS options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetParallel.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetParallel.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetParallel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetParallel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetParallel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetParallel

Gets the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetRefined.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetRefined.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetRefined.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetRefined.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetRefined -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetRefined

Gets the refined vectors flag.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetSlepcSC -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetSlepcSC

Gets the sorting criterion context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetState.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetState.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetState.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetState.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetState -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetState

Returns the current state.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetType.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSGetType

Gets the DS type name (as a string) from the DS context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DS.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DS.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DS

Direct solver (or dense system), to represent low-dimensional eigenproblems that must be solved within iterative solvers. This is an auxiliary object and is not normally needed by application programmers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSInitializePackage

This function initializes everything in the DS package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to DSCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSMatGetSize.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSMatGetSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSMatGetSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSMatGetSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSMatGetSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSMatGetSize

Returns the numbers of rows and columns of one of the DS matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSMatIsHermitian -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSMatIsHermitian

Checks if one of the DS matrices is known to be Hermitian.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSMatType.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSMatType.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSMatType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSMatType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSMatType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSMatType

Used to refer to one of the matrices stored internally in DS

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPGetFN.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPGetFN.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPGetFN.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPGetFN.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPGetFN -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSNEPGetFN

Gets the functions associated with the nonlinear DS.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPGetNumFN -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSNEPGetNumFN

Returns the number of functions stored internally by the DS.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPSetComputeMatrixFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSNEPSetComputeMatrixFunction

Sets a user-provided subroutine to compute the matrices T(lambda) or T'(lambda).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPSetFN.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPSetFN.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSNEPSetFN.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSNEPSetFN.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPSetFN -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSNEPSetFN

Sets a number of functions that define the nonlinear eigenproblem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSOrthogonalize.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSOrthogonalize.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSOrthogonalize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSOrthogonalize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSOrthogonalize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSOrthogonalize

Orthogonalize the columns of a matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSParallelType.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSParallelType.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSParallelType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSParallelType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSParallelType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSParallelType

Indicates the parallel mode that the direct solver will use

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPGetCoefficients -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSPEPGetCoefficients

Returns the polynomial basis coefficients for a DSPEP.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPGetDegree -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSPEPGetDegree

Returns the polynomial degree for a DSPEP.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPSetCoefficients -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSPEPSetCoefficients

Sets the polynomial basis coefficients for a DSPEP.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPSetDegree -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSPEPSetDegree

Sets the polynomial degree for a DSPEP.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSPseudoOrthogonalize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSPseudoOrthogonalize

Orthogonalize the columns of a matrix with Modified Gram-Schmidt in an indefinite inner product space defined by a signature.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSRegisterAll

Registers all of the direct solvers in the DS package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRegister.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSRegister

Adds a direct solver to the DS package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSReset.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSReset

Resets the DS context to the initial state.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRestoreArray.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRestoreArray.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRestoreArray.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRestoreArray.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSRestoreArray -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSRestoreArray

Restores the matrix after DSGetArray() was called.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSRestoreArrayReal -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSRestoreArrayReal

Restores the matrix after DSGetArrayReal() was called.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRestoreMat.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRestoreMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSRestoreMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSRestoreMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSRestoreMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSRestoreMat

Restores the matrix after DSGetMat() was called.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetBlockSize

Sets the block size.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetCompact.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetCompact.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetCompact.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetCompact.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetCompact -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetCompact

Switch to compact storage of matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetDimensions

Resize the matrices in the DS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetExtraRow.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetExtraRow.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetExtraRow.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetExtraRow.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetExtraRow -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetExtraRow

Sets a flag to indicate that the matrix has one extra row.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetFromOptions

Sets DS options from the options database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetIdentity.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetIdentity.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetIdentity.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetIdentity.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetIdentity -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetIdentity

Copy the identity (a diagonal matrix with ones) on the active part of a matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetMethod

Selects the method to be used to solve the problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetOptionsPrefix

Sets the prefix used for searching for all DS options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetParallel.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetParallel.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetParallel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetParallel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetParallel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetParallel

Selects the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetRefined.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetRefined.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetRefined.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetRefined.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetRefined -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetRefined

Sets a flag to indicate that refined vectors must be computed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetSlepcSC -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetSlepcSC

Sets the sorting criterion context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetState.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetState.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetState.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetState.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetState -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetState

Change the state of the DS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetType.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSetType

Selects the type for the DS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSolve.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSolve

Solves the problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSort.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSort.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSort.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSort.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSort -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSort

Sorts the result of DSSolve() according to a given sorting criterion.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSStateType.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSStateType.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSStateType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSStateType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSStateType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSStateType

Indicates in which state the direct solver is

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSynchronize.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSynchronize.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSSynchronize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSSynchronize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSSynchronize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSSynchronize

Make sure that all processes have the same data, performing communication if necessary.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSTranslateHarmonic -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSTranslateHarmonic

Computes a translation of the dense system.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSTranslateRKS.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSTranslateRKS.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSTranslateRKS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSTranslateRKS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSTranslateRKS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSTranslateRKS

Computes a modification of the dense system corresponding to an update of the shift in a rational Krylov method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSTruncate.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSTruncate.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSTruncate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSTruncate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSTruncate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSTruncate

Truncates the system represented in the DS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSType.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSType.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSType

String with the name of the type of direct solver. Roughly, there are as many types as problem types are available within SLEPc.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSUpdateExtraRow -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSUpdateExtraRow

Performs all necessary operations so that the extra row gets up-to-date after a call to DSSolve().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSVectors.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSVectors.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSVectors.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSVectors.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSVectors -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSVectors

Compute vectors associated to the dense system such as eigenvectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSView.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSView.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSView

Prints the DS data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/DSViewMat.html slepc-3.10.2+dfsg1/docs/manualpages/DS/DSViewMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/DSViewMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/DSViewMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ DSViewMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

DSViewMat

Prints one of the internal DS matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/DS/index.html slepc-3.10.2+dfsg1/docs/manualpages/DS/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/DS/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/DS/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSAllocateSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSAllocateSolution

Allocate memory storage for common variables such as eigenvalues and eigenvectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSAppendOptionsPrefix

Appends to the prefix used for searching for all EPS options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSArnoldiGetDelayed -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSArnoldiGetDelayed

Gets the type of reorthogonalization used during the Arnoldi iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSArnoldiSetDelayed -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSArnoldiSetDelayed

Activates or deactivates delayed reorthogonalization in the Arnoldi iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBalance.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBalance.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBalance.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBalance.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSBalance -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSBalance

The type of balancing used for non-Hermitian problems

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSBLOPEXGetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSBLOPEXGetBlockSize

Gets the block size used in the BLOPEX solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSBLOPEXSetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSBLOPEXSetBlockSize

Sets the block size of the BLOPEX solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSBlzpackSetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSBlzpackSetBlockSize

Sets the block size for the BLZPACK package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSBlzpackSetNSteps -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSBlzpackSetNSteps

Sets the maximum number of steps per run for the BLZPACK package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSExtraction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSExtraction

determines the extraction technique in the CISS solver

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetExtraction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSGetExtraction

Gets the extraction technique used in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetKSPs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSGetKSPs

Retrieve the array of linear solver objects associated with the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetQuadRule -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSGetQuadRule

Gets the quadrature rule used in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetRefinement -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSGetRefinement

Gets the values of various refinement parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetSizes -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSGetSizes

Gets the values of various size parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetThreshold -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSGetThreshold

Gets the values of various threshold parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetUseST -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSGetUseST

Gets the flag for using the ST object in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSQuadRule -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSQuadRule

determines the quadrature rule in the CISS solver

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetExtraction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSSetExtraction

Sets the extraction technique used in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetQuadRule -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSSetQuadRule

Sets the quadrature rule used in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetRefinement -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSSetRefinement

Sets the values of various refinement parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetSizes -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSSetSizes

Sets the values of various size parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetThreshold -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSSetThreshold

Sets the values of various threshold parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetUseST -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCISSSetUseST

Sets a flag indicating that the CISS solver will use the ST object for the linear solves.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSComputeError.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSComputeError.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSComputeError.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSComputeError.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSComputeError -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSComputeError

Computes the error (based on the residual norm) associated with the i-th computed eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSConvergedReason

Reason an eigensolver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSConv.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSConv.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSConv.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSConv.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSConv -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSConvMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSConvMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user (for monitors that only show iteration numbers of convergence).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCreate.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSCreate

Creates the default EPS context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSDestroy

Destroys the EPS context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSErrorType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSErrorType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSErrorType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSErrorType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSErrorType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSErrorViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSErrorViewFromOptions

Processes command line options to determine if/how the errors of the computed solution are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSErrorView.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSErrorView.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSErrorView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSErrorView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSErrorView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSErrorView

Displays the errors associated with the computed solution (as well as the eigenvalues).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSExtraction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSExtraction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSExtraction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSExtraction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSExtraction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSExtraction

Determines the type of extraction technique employed by the eigensolver

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSFEASTGetNumPoints -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSFEASTGetNumPoints

Gets the number of contour integration points for the FEAST package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSFEASTSetNumPoints -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSFEASTSetNumPoints

Sets the number of contour integration points for the FEAST package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSFinalizePackage

This function destroys everything in the SLEPc interface to the EPS package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDGetBlockSize

Returns the number of vectors to be added to the searching space in every iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetBOrth -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDGetBOrth

Returns the orthogonalization used in the search subspace in case of generalized Hermitian problems.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetDoubleExpansion -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDGetDoubleExpansion

Gets a flag indicating whether the double expansion variant has been activated or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetInitialSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDGetInitialSize

Returns the initial size of the searching space.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetKrylovStart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDGetKrylovStart

Returns a flag indicating if the search subspace is started with a Krylov basis.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDGetRestart

Gets the number of vectors of the searching space after restarting and the number of vectors saved from the previous iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDSetBlockSize

Sets the number of vectors to be added to the searching space in every iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetBOrth -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDSetBOrth

Selects the orthogonalization that will be used in the search subspace in case of generalized Hermitian problems.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetDoubleExpansion -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDSetDoubleExpansion

Activate a variant where the search subspace is expanded with K*[A*x B*x] (double expansion) instead of the classic K*r, where K is the preconditioner, x the selected approximate eigenvector and r its associated residual vector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetInitialSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDSetInitialSize

Sets the initial size of the searching space.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetKrylovStart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDSetKrylovStart

Activates or deactivates starting the searching subspace with a Krylov basis.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGDSetRestart

Sets the number of vectors of the searching space after restarting and the number of vectors saved from the previous iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetBalance.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetBalance.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetBalance.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetBalance.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetBalance -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetBalance

Gets the balancing type used by the EPS object, and the associated parameters.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetBV.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetBV

Obtain the basis vectors object associated to the eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetConverged.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetConverged

Gets the number of converged eigenpairs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetConvergedReason

Gets the reason why the EPSSolve() iteration was stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetConvergenceTest

Gets the method used to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetDimensions

Gets the number of eigenvalues to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetDS.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetDS

Obtain the direct solver object associated to the eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetEigenpair -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetEigenpair

Gets the i-th solution of the eigenproblem as computed by EPSSolve(). The solution consists in both the eigenvalue and the eigenvector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetEigenvalue -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetEigenvalue

Gets the i-th eigenvalue as computed by EPSSolve().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetEigenvector -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetEigenvector

Gets the i-th right eigenvector as computed by EPSSolve().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetErrorEstimate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetErrorEstimate

Returns the error estimate associated to the i-th computed eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetExtraction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetExtraction

Gets the extraction type used by the EPS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetInterval.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetInterval.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetInterval.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetInterval.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetInterval -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetInterval

Gets the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetInvariantSubspace -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetInvariantSubspace

Gets an orthonormal basis of the computed invariant subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetIterationNumber -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetIterationNumber

Gets the current iteration number. If the call to EPSSolve() is complete, then it returns the number of iterations carried out by the solution method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetMonitorContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetMonitorContext

Gets the monitor context, as set by EPSMonitorSet() for the FIRST monitor only.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetOperators.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetOperators.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetOperators.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetOperators.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetOperators -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetOperators

Gets the matrices associated with the eigensystem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetOptionsPrefix

Gets the prefix used for searching for all EPS options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetProblemType

Gets the problem type from the EPS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetPurify.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetPurify.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetPurify.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetPurify.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetPurify -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetPurify

Returns the flag indicating whether purification is activated or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetRG.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetRG.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetRG.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetRG.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetRG -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetRG

Obtain the region object associated to the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetST.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetST.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetST.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetST.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetST -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetST

Obtain the spectral transformation (ST) object associated to the eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetStoppingTest

Gets the method used to decide the termination of the outer loop of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTarget.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTarget.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTarget.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTarget.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTarget -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetTarget

Gets the value of the target.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetTolerances

Gets the tolerance and maximum iteration count used by the EPS convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetTrackAll

Returns the flag indicating whether all residual norms must be computed or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTrueResidual -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetTrueResidual

Returns the flag indicating whether true residuals must be computed explicitly or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetType

Gets the EPS type as a string from the EPS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetWhichEigenpairs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSGetWhichEigenpairs

Returns which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPS.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPS

Abstract SLEPc object that manages all the eigenvalue problem solvers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSInitializePackage

This function initializes everything in the EPS package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to EPSCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSIsGeneralized -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSIsGeneralized

Ask if the EPS object corresponds to a generalized eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSIsHermitian -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSIsHermitian

Ask if the EPS object corresponds to a Hermitian eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSIsPositive.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSIsPositive.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSIsPositive.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSIsPositive.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSIsPositive -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSIsPositive

Ask if the EPS object corresponds to an eigenvalue problem type that requires a positive (semi-) definite matrix B.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDGetBlockSize

Returns the number of vectors to be added to the searching space in every iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetBOrth -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDGetBOrth

Returns the orthogonalization used in the search subspace in case of generalized Hermitian problems.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetConstCorrectionTol -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDGetConstCorrectionTol

Returns a flag indicating if the dynamic stopping is being used for solving the correction equation. If the flag is false the KSP relative tolerance is set to 0.5**i, where i is the number of EPS iterations from the last converged value.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetFix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDGetFix

Returns the threshold for changing the target in the correction equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetInitialSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDGetInitialSize

Returns the initial size of the searching space.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetKrylovStart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDGetKrylovStart

Returns a flag indicating if the searching subspace is started with a Krylov basis.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDGetRestart

Gets the number of vectors of the searching space after restarting and the number of vectors saved from the previous iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDSetBlockSize

Sets the number of vectors to be added to the searching space in every iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetBOrth -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDSetBOrth

Selects the orthogonalization that will be used in the search subspace in case of generalized Hermitian problems.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetConstCorrectionTol -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDSetConstCorrectionTol

If true, deactivates the dynamic stopping criterion (also called Newton) that sets the KSP relative tolerance to 0.5**i, where i is the number of EPS iterations from the last converged value.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetFix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDSetFix

Sets the threshold for changing the target in the correction equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetInitialSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDSetInitialSize

Sets the initial size of the searching space.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetKrylovStart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDSetKrylovStart

Activates or deactivates starting the searching subspace with a Krylov basis.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSJDSetRestart

Sets the number of vectors of the searching space after restarting and the number of vectors saved from the previous iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetDetectZeros -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetDetectZeros

Gets the flag that enforces zero detection in spectrum slicing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetDimensions

Gets the dimensions used for each subsolve step in case of doing spectrum slicing for a computational interval.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetInertias -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetInertias

Gets the values of the shifts and their corresponding inertias in case of doing spectrum slicing for a computational interval.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetLocking

Gets the locking flag used in the Krylov-Schur method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetPartitions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetPartitions

Gets the number of partitions of the communicator in case of spectrum slicing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetRestart

Gets the restart parameter used in the Krylov-Schur method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubcommInfo -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetSubcommInfo

Gets information related to the case of doing spectrum slicing for a computational interval with multiple communicators.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubcommMats -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetSubcommMats

Gets the eigenproblem matrices stored internally in the subcommunicator to which the calling process belongs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubcommPairs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetSubcommPairs

Gets the i-th eigenpair stored internally in the subcommunicator to which the calling process belongs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubintervals -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurGetSubintervals

Returns the points that delimit the subintervals used in spectrum slicing with several partitions.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetDetectZeros -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurSetDetectZeros

Sets a flag to enforce detection of zeros during the factorizations throughout the spectrum slicing computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurSetDimensions

Sets the dimensions used for each subsolve step in case of doing spectrum slicing for a computational interval. The meaning of the parameters is the same as in EPSSetDimensions().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurSetLocking

Choose between locking and non-locking variants of the Krylov-Schur method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetPartitions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurSetPartitions

Sets the number of partitions for the case of doing spectrum slicing for a computational interval with the communicator split in several sub-communicators.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurSetRestart

Sets the restart parameter for the Krylov-Schur method, in particular the proportion of basis vectors that must be kept after restart.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetSubintervals -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurSetSubintervals

Sets the points that delimit the subintervals to be used in spectrum slicing with several partitions.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurUpdateSubcommMats -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSKrylovSchurUpdateSubcommMats

Update the eigenproblem matrices stored internally in the subcommunicator to which the calling process belongs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLanczosGetReorthog -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLanczosGetReorthog

Gets the type of reorthogonalization used during the Lanczos iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLanczosReorthogType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLanczosReorthogType

determines the type of reorthogonalization used in the Lanczos method

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLanczosSetReorthog -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLanczosSetReorthog

Sets the type of reorthogonalization used during the Lanczos iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGGetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLOBPCGGetBlockSize

Gets the block size used in the LOBPCG method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGGetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLOBPCGGetLocking

Gets the locking flag used in the LOBPCG method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLOBPCGGetRestart

Gets the restart parameter used in the LOBPCG method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGSetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLOBPCGSetBlockSize

Sets the block size of the LOBPCG method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGSetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLOBPCGSetLocking

Choose between locking and non-locking variants of the LOBPCG method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSLOBPCGSetRestart

Sets the restart parameter for the LOBPCG method. The meaning of this parameter is the proportion of vectors within the current block iterate that must have converged in order to force a restart with hard locking.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSMonitorAll

Print the current approximate values and error estimates at each iteration of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorCancel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSMonitorCancel

Clears all monitors for an EPS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorFirst -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSMonitorFirst

Print the first approximate value and error estimate at each iteration of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorLGCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSMonitorLGCreate

Creates a line graph context for use with EPS to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorSet -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSMonitorSet

Sets an ADDITIONAL function to be called at every iteration to monitor the error estimates for each requested eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetNonlinear -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerGetNonlinear

Returns a flag indicating if the problem is nonlinear.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetShiftType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerGetShiftType

Gets the type of shifts used during the power iteration.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetSNES -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerGetSNES

Retrieve the nonlinear solver object (SNES) associated with the eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetUpdate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerGetUpdate

Returns a flag indicating if the residual is updated monolithically for nonlinear problems.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetNonlinear -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerSetNonlinear

Sets a flag to indicate that the problem is nonlinear.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetShiftType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerSetShiftType

Sets the type of shifts used during the power iteration. This can be used to emulate the Rayleigh Quotient Iteration (RQI) method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetSNES -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerSetSNES

Associate a nonlinear solver object (SNES) to the eigenvalue solver (to be used in nonlinear inverse iteration).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetUpdate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerSetUpdate

Sets a flag to indicate that the residual is updated monolithically for nonlinear problems. This potentially has a better convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerShiftType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPowerShiftType

determines the type of shift used in the Power iteration

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMEGetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPRIMMEGetBlockSize

Get the maximum block size the code will try to use.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMEGetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPRIMMEGetMethod

Gets the method for the PRIMME library.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMEMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPRIMMEMethod

determines the method selected in the PRIMME library

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMESetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPRIMMESetBlockSize

The maximum block size that PRIMME will try to use.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMESetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSPRIMMESetMethod

Sets the method for the PRIMME library.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSProblemType

Determines the type of eigenvalue problem

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSReasonViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSReasonViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSReasonViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSReasonViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSReasonViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSReasonViewFromOptions

Processes command line options to determine if/how the EPS converged reason is to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSReasonView.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSReasonView.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSReasonView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSReasonView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSReasonView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSReasonView

Displays the reason an EPS solve converged or diverged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSRegisterAll

Registers all the eigenvalue solvers in the EPS package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRegister.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSRegister

Adds a method to the eigenproblem solver package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSReset.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSReset

Resets the EPS context to the initial state (prior to setup) and destroys any allocated Vecs and Mats.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSRQCGGetReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSRQCGGetReset

Gets the reset parameter used in the RQCG method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSRQCGSetReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSRQCGSetReset

Sets the reset parameter of the RQCG iteration. Every nrest iterations, the solver performs a Rayleigh-Ritz projection step.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetArbitrarySelection -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetArbitrarySelection

Specifies a function intended to look for eigenvalues according to an arbitrary selection criterion. This criterion can be based on a computation involving the current eigenvector approximation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetBalance.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetBalance.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetBalance.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetBalance.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetBalance -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetBalance

Specifies the balancing technique to be employed by the eigensolver, and some parameters associated to it.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetBV.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetBV

Associates a basis vectors object to the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetConvergenceTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetConvergenceTestFunction

Sets a function to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetConvergenceTest

Specifies how to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetDeflationSpace -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetDeflationSpace

Specify a basis of vectors that constitute the deflation space.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetDimensions

Sets the number of eigenvalues to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetDS.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetDS

Associates a direct solver object to the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetEigenvalueComparison -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetEigenvalueComparison

Specifies the eigenvalue comparison function when EPSSetWhichEigenpairs() is set to EPS_WHICH_USER.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetExtraction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetExtraction

Specifies the type of extraction technique to be employed by the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetFromOptions

Sets EPS options from the options database. This routine must be called before EPSSetUp() if the user is to be allowed to set the solver type.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetInitialSpace -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetInitialSpace

Specify a basis of vectors that constitute the initial space, that is, the subspace from which the solver starts to iterate.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetInterval.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetInterval.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetInterval.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetInterval.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetInterval -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetInterval

Defines the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetOperators.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetOperators.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetOperators.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetOperators.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetOperators -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetOperators

Sets the matrices associated with the eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetOptionsPrefix

Sets the prefix used for searching for all EPS options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetProblemType

Specifies the type of the eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetPurify.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetPurify.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetPurify.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetPurify.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetPurify -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetPurify

Deactivate eigenvector purification (which is activated by default).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetRG.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetRG.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetRG.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetRG.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetRG -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetRG

Associates a region object to the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetST.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetST.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetST.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetST.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetST -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetST

Associates a spectral transformation object to the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetStoppingTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetStoppingTestFunction

Sets a function to decide when to stop the outer iteration of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetStoppingTest

Specifies how to decide the termination of the outer loop of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTarget.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTarget.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTarget.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTarget.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTarget -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetTarget

Sets the value of the target.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetTolerances

Sets the tolerance and maximum iteration count used by the EPS convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetTrackAll

Specifies if the solver must compute the residual norm of all approximate eigenpairs or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTrueResidual -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetTrueResidual

Specifies if the solver must compute the true residual explicitly or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetType

Selects the particular solver to be used in the EPS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetUp.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetUp

Sets up all the internal data structures necessary for the execution of the eigensolver. Then calls STSetUp() for any set-up operations associated to the ST object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetWhichEigenpairs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetWhichEigenpairs

Specifies which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetWorkVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSetWorkVecs

Sets a number of work vectors into an EPS object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSolve.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSSolve

Solves the eigensystem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSStop.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSStop.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSStop.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSStop.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSStop -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSStoppingBasic -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSStoppingBasic

Default routine to determine whether the outer eigensolver iteration must be stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSType.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSType.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSType

String with the name of a SLEPc eigensolver

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSValuesViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSValuesViewFromOptions

Processes command line options to determine if/how the computed eigenvalues are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSValuesView.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSValuesView.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSValuesView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSValuesView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSValuesView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSValuesView

Displays the computed eigenvalues in a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSVectorsViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSVectorsViewFromOptions

Processes command line options to determine if/how the computed eigenvectors are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSVectorsView.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSVectorsView.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSVectorsView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSVectorsView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSVectorsView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSVectorsView

Outputs computed eigenvectors to a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSView.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSView.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSView

Prints the EPS data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSWhich.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSWhich.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/EPSWhich.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/EPSWhich.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ EPSWhich -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

EPSWhich

Determines which part of the spectrum is requested

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/EPS/index.html slepc-3.10.2+dfsg1/docs/manualpages/EPS/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/EPS/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/EPS/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNAppendOptionsPrefix

Appends to the prefix used for searching for all FN options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNCombineGetChildren -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNCombineGetChildren

Gets the two child functions that constitute this combined function, and the way they are combined.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNCombineSetChildren -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNCombineSetChildren

Sets the two child functions that constitute this combined function, and the way they must be combined.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCombineType.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCombineType.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCombineType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCombineType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNCombineType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNCombineType

Determines how two functions are combined

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCreate.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNCreate

Creates an FN context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNDestroy

Destroys FN context that was created with FNCreate().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNDuplicate.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNDuplicate.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNDuplicate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNDuplicate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNDuplicate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNDuplicate

Duplicates a math function, copying all parameters, possibly with a different communicator.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateDerivative -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNEvaluateDerivative

Computes the value of the derivative f'(x) for a given x.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNEvaluateFunction

Computes the value of the function f(x) for a given x.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateFunctionMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNEvaluateFunctionMat

Computes the value of the function f(A) for a given matrix A, where the result is also a matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateFunctionMatVec -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNEvaluateFunctionMatVec

Computes the first column of the matrix f(A) for a given matrix A.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNFinalizePackage

This function destroys everything in the Slepc interface to the FN package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNGetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNGetMethod

Gets the method currently used in the FN.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNGetOptionsPrefix

Gets the prefix used for searching for all FN options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetParallel.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetParallel.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetParallel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetParallel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNGetParallel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNGetParallel

Gets the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetScale.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNGetScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNGetScale

Gets the scaling parameters that define the matematical function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetType.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNGetType

Gets the FN type name (as a string) from the FN context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FN.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FN.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FN.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FN.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FN -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FN

Abstraction of a mathematical function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNInitializePackage

This function initializes everything in the FN package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to FNCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNParallelType.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNParallelType.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNParallelType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNParallelType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNParallelType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNParallelType

Indicates the parallel mode that will be used for matrix evaluation

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNPhiGetIndex -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNPhiGetIndex

Gets the index of the phi-function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNPhiSetIndex -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNPhiSetIndex

Sets the index of the phi-function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalGetDenominator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNRationalGetDenominator

Gets the parameters that define the denominator of the rational function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalGetNumerator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNRationalGetNumerator

Gets the parameters that define the numerator of the rational function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalSetDenominator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNRationalSetDenominator

Sets the parameters defining the denominator of the rational function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalSetNumerator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNRationalSetNumerator

Sets the parameters defining the numerator of the rational function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNRegisterAll

Registers all of the math functions in the FN package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRegister.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNRegister

Adds a mathematical function to the FN package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNSetFromOptions

Sets FN options from the options database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNSetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNSetMethod

Selects the method to be used to evaluate functions of matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNSetOptionsPrefix

Sets the prefix used for searching for all FN options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetParallel.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetParallel.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetParallel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetParallel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNSetParallel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNSetParallel

Selects the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetScale.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNSetScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNSetScale

Sets the scaling parameters that define the matematical function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetType.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNSetType

Selects the type for the FN object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNType.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNType.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNType

String with the name of the mathematical function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/FNView.html slepc-3.10.2+dfsg1/docs/manualpages/FN/FNView.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/FNView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/FNView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ FNView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

FNView

Prints the FN data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/FN/index.html slepc-3.10.2+dfsg1/docs/manualpages/FN/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/FN/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/FN/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/index.html slepc-3.10.2+dfsg1/docs/manualpages/LME/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEAllocateSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEAllocateSolution

Allocate memory storage for common variables such as the basis vectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEAppendOptionsPrefix

Appends to the prefix used for searching for all LME options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEComputeError.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEComputeError.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEComputeError.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEComputeError.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEComputeError -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEComputeError

Computes the error (based on the residual norm) associated with the last equation solved.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEConvergedReason

reason a matrix function iteration was said to have converged or diverged

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMECreate.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMECreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMECreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMECreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMECreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMECreate

Creates the default LME context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEDenseLyapunovFact.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEDenseLyapunovFact.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEDenseLyapunovFact.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEDenseLyapunovFact.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEDenseLyapunovFact -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEDenseLyapunovFact

Computes the Cholesky factor of the solution of a dense Lyapunov equation with rank-1 right-hand side.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEDestroy

Destroys the LME context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEFinalizePackage

This function destroys everything in the SLEPc interface to the LME package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetBV.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetBV

Obtain the basis vectors object associated to the matrix function solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetCoefficients -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetCoefficients

Gets the coefficient matrices of the matrix equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetConvergedReason

Gets the reason why the LMESolve() iteration was stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetDimensions

Gets the dimension of the subspace used by the solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetErrorEstimate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetErrorEstimate

Returns the error estimate obtained during solve.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetErrorIfNotConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetErrorIfNotConverged

Return a flag indicating whether LMESolve() will generate an error if the solver does not converge.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetIterationNumber -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetIterationNumber

Gets the current iteration number. If the call to LMESolve() is complete, then it returns the number of iterations carried out by the solution method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetMonitorContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetMonitorContext

Gets the monitor context, as set by LMEMonitorSet() for the FIRST monitor only.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetOptionsPrefix

Gets the prefix used for searching for all LME options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetProblemType

Gets the matrix equation type from the LME object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetRHS.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetRHS.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetRHS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetRHS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetRHS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetRHS

Gets the right-hand side of the matrix equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetSolution.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetSolution

Gets the solution of the matrix equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetTolerances

Gets the tolerance and maximum iteration count used by the LME convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetType.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEGetType

Gets the LME type as a string from the LME object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LME.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LME.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LME.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LME.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LME -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LME

SLEPc object that encapsulates functionality for linear matrix equations

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEInitializePackage

This function initializes everything in the LME package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to LMECreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorCancel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEMonitorCancel

Clears all monitors for an LME object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorDefault -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEMonitorDefault

Print the error estimate of the current approximation at each iteration of the linear matrix equation solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorLGCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEMonitorLGCreate

Creates a line graph context for use with LME to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorSet.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorSet.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEMonitorSet.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEMonitorSet.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorSet -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEMonitorSet

Sets an ADDITIONAL function to be called at every iteration to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEProblemType

Determines the type of linear matrix equation

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEReasonViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEReasonViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEReasonViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEReasonViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEReasonViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEReasonViewFromOptions

Processes command line options to determine if/how the LME converged reason is to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEReasonView.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEReasonView.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEReasonView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEReasonView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEReasonView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEReasonView

Displays the reason an LME solve converged or diverged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMERegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMERegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMERegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMERegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMERegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMERegisterAll

Registers all the matrix functions in the LME package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMERegister.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMERegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMERegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMERegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMERegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMERegister

Adds a method to the linear matrix equation solver package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEReset.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEReset

Resets the LME context to the initial state (prior to setup) and destroys any allocated Vecs and Mats.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetBV.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetBV

Associates a basis vectors object to the linear matrix equation solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetCoefficients.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetCoefficients.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetCoefficients.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetCoefficients.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetCoefficients -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetCoefficients

Sets the coefficient matrices that define the linear matrix equation to be solved.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetDimensions

Sets the dimension of the subspace to be used by the solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetErrorIfNotConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetErrorIfNotConverged

Causes LMESolve() to generate an error if the solver has not converged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetFromOptions

Sets LME options from the options database. This routine must be called before LMESetUp() if the user is to be allowed to set the solver type.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetOptionsPrefix

Sets the prefix used for searching for all LME options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetProblemType

Specifies the type of matrix equation to be solved.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetRHS.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetRHS.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetRHS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetRHS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetRHS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetRHS

Sets the right-hand side of the matrix equation, as a low-rank matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetSolution.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetSolution

Sets the placeholder for the solution of the matrix equation, as a low-rank matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetTolerances

Sets the tolerance and maximum iteration count used by the LME convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetType.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetType

Selects the particular solver to be used in the LME object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetUp.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESetUp

Sets up all the internal data structures necessary for the execution of the linear matrix equation solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESolve.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMESolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMESolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMESolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMESolve

Solves the linear matrix equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEType.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEType.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEType

String with the name of a method for solving linear matrix equations

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEView.html slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEView.html --- slepc-3.10.1+dfsg1/docs/manualpages/LME/LMEView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/LME/LMEView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ LMEView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

LMEView

Prints the LME data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/index.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNAllocateSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNAllocateSolution

Allocate memory storage for common variables such as the basis vectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNAppendOptionsPrefix

Appends to the prefix used for searching for all MFN options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNConvergedReason

reason a matrix function iteration was said to have converged or diverged

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNCreate.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNCreate

Creates the default MFN context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNDestroy

Destroys the MFN context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNFinalizePackage

This function destroys everything in the SLEPc interface to the MFN package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetBV.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetBV

Obtain the basis vectors object associated to the matrix function solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetConvergedReason

Gets the reason why the MFNSolve() iteration was stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetDimensions

Gets the dimension of the subspace used by the solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetErrorIfNotConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetErrorIfNotConverged

Return a flag indicating whether MFNSolve() will generate an error if the solver does not converge.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetFN.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetFN.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetFN.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetFN.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetFN -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetFN

Obtain the math function object associated to the MFN object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetIterationNumber -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetIterationNumber

Gets the current iteration number. If the call to MFNSolve() is complete, then it returns the number of iterations carried out by the solution method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetMonitorContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetMonitorContext

Gets the monitor context, as set by MFNMonitorSet() for the FIRST monitor only.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetOperator.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetOperator.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetOperator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetOperator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetOperator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetOperator

Gets the matrix associated with the MFN object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetOptionsPrefix

Gets the prefix used for searching for all MFN options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetTolerances

Gets the tolerance and maximum iteration count used by the MFN convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetType.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNGetType

Gets the MFN type as a string from the MFN object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFN.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFN.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFN.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFN.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFN -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFN

SLEPc object that encapsulates functionality for matrix functions.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNInitializePackage

This function initializes everything in the MFN package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to MFNCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorCancel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNMonitorCancel

Clears all monitors for an MFN object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorDefault -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNMonitorDefault

Print the error estimate of the current approximation at each iteration of the matrix function solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorLGCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNMonitorLGCreate

Creates a line graph context for use with MFN to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorSet -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNMonitorSet

Sets an ADDITIONAL function to be called at every iteration to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNReasonViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNReasonViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNReasonViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNReasonViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNReasonViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNReasonViewFromOptions

Processes command line options to determine if/how the MFN converged reason is to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNReasonView.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNReasonView.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNReasonView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNReasonView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNReasonView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNReasonView

Displays the reason an MFN solve converged or diverged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNRegisterAll

Registers all the matrix functions in the MFN package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNRegister.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNRegister

Adds a method to the matrix function solver package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNReset.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNReset

Resets the MFN context to the initial state (prior to setup) and destroys any allocated Vecs and Mats.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetBV.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetBV

Associates a basis vectors object to the matrix function solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetDimensions

Sets the dimension of the subspace to be used by the solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetErrorIfNotConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetErrorIfNotConverged

Causes MFNSolve() to generate an error if the solver has not converged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetFN.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetFN.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetFN.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetFN.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetFN -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetFN

Specifies the function to be computed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetFromOptions

Sets MFN options from the options database. This routine must be called before MFNSetUp() if the user is to be allowed to set the solver type.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetOperator.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetOperator.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetOperator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetOperator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetOperator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetOperator

Sets the matrix for which the matrix function is to be computed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetOptionsPrefix

Sets the prefix used for searching for all MFN options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetTolerances

Sets the tolerance and maximum iteration count used by the MFN convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetType.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetType

Selects the particular solver to be used in the MFN object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetUp.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSetUp

Sets up all the internal data structures necessary for the execution of the matrix function solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSolve.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNSolve

Solves the matrix function problem. Given a vector b, the vector x = f(A)*b is returned.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNType.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNType.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNType

String with the name of a method for computing matrix functions.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNView.html slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNView.html --- slepc-3.10.1+dfsg1/docs/manualpages/MFN/MFNView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/MFN/MFNView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MFNView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MFNView

Prints the MFN data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/index.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPAllocateSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPAllocateSolution

Allocate memory storage for common variables such as eigenvalues and eigenvectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPAppendOptionsPrefix

Appends to the prefix used for searching for all NEP options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPApplyFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPApplyFunction

Applies the nonlinear function T(lambda) to a given vector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPApplyJacobian -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPApplyJacobian

Applies the nonlinear Jacobian T'(lambda) to a given vector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetKSPs.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetKSPs.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetKSPs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetKSPs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCISSGetKSPs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCISSGetKSPs

Retrieve the array of linear solver objects associated with the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetRefinement.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetRefinement.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetRefinement.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetRefinement.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCISSGetRefinement -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCISSGetRefinement

Gets the values of various refinement parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetSizes.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetSizes.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetSizes.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetSizes.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCISSGetSizes -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCISSGetSizes

Gets the values of various size parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetThreshold.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetThreshold.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSGetThreshold.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSGetThreshold.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCISSGetThreshold -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCISSGetThreshold

Gets the values of various threshold parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSSetRefinement.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSSetRefinement.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSSetRefinement.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSSetRefinement.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCISSSetRefinement -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCISSSetRefinement

Sets the values of various refinement parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSSetSizes.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSSetSizes.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSSetSizes.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSSetSizes.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCISSSetSizes -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCISSSetSizes

Sets the values of various size parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSSetThreshold.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSSetThreshold.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCISSSetThreshold.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCISSSetThreshold.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCISSSetThreshold -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCISSSetThreshold

Sets the values of various threshold parameters in the CISS solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPComputeError.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPComputeError.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPComputeError.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPComputeError.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPComputeError -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPComputeError

Computes the error (based on the residual norm) associated with the i-th computed eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPComputeFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPComputeFunction

Computes the function matrix T(lambda) that has been set with NEPSetFunction().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPComputeJacobian -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPComputeJacobian

Computes the Jacobian matrix T'(lambda) that has been set with NEPSetJacobian().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPConvergedReason

Reason a nonlinear eigensolver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPConv.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPConv.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPConv.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPConv.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPConv -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPConvMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPConvMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user (for monitors that only show iteration numbers of convergence).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCreate.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPCreate

Creates the default NEP context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPDestroy

Destroys the NEP context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPErrorType.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPErrorType.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPErrorType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPErrorType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPErrorType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPErrorViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPErrorViewFromOptions

Processes command line options to determine if/how the errors of the computed solution are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPErrorView.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPErrorView.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPErrorView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPErrorView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPErrorView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPErrorView

Displays the errors associated with the computed solution (as well as the eigenvalues).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPFinalizePackage

This function destroys everything in the Slepc interface to the NEP package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetBV.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetBV

Obtain the basis vectors object associated to the nonlinear eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetConverged.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetConverged

Gets the number of converged eigenpairs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetConvergedReason

Gets the reason why the NEPSolve() iteration was stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetConvergenceTest

Gets the method used to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetDerivatives.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetDerivatives.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetDerivatives.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetDerivatives.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetDerivatives -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetDerivatives

Returns the derivatives matrix and optionally the user provided routine and context for evaluating the derivatives.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetDimensions

Gets the number of eigenvalues to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetDS.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetDS

Obtain the direct solver object associated to the nonlinear eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetEigenpair -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetEigenpair

Gets the i-th solution of the eigenproblem as computed by NEPSolve(). The solution consists in both the eigenvalue and the eigenvector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetErrorEstimate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetErrorEstimate

Returns the error estimate associated to the i-th computed eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetFunction

Returns the Function matrix and optionally the user provided context for evaluating the Function.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetIterationNumber -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetIterationNumber

Gets the current iteration number. If the call to NEPSolve() is complete, then it returns the number of iterations carried out by the solution method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetJacobian -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetJacobian

Returns the Jacobian matrix and optionally the user provided routine and context for evaluating the Jacobian.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetMonitorContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetMonitorContext

Gets the monitor context, as set by NEPMonitorSet() for the FIRST monitor only.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetOptionsPrefix

Gets the prefix used for searching for all NEP options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetProblemType

Gets the problem type from the NEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetRefine.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetRefine.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetRefine.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetRefine.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetRefine -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetRefine

Gets the refinement strategy used by the NEP object, and the associated parameters.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetRG.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetRG.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetRG.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetRG.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetRG -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetRG

Obtain the region object associated to the nonlinear eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetSplitOperatorInfo -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetSplitOperatorInfo

Returns the number of terms of the split form of the nonlinear operator, as well as the structure flag for matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetSplitOperatorTerm -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetSplitOperatorTerm

Gets the matrices and functions associated with the nonlinear operator in split form.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetStoppingTest

Gets the method used to decide the termination of the outer loop of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetTarget.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetTarget.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetTarget.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetTarget.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetTarget -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetTarget

Gets the value of the target.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetTolerances

Gets the tolerance and maximum iteration count used by the NEP convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetTrackAll

Returns the flag indicating whether all residual norms must be computed or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetType.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetType

Gets the NEP type as a string from the NEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetWhichEigenpairs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPGetWhichEigenpairs

Returns which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEP

Abstract SLEPc object that manages all solvers for nonlinear eigenvalue problems.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPInitializePackage

This function initializes everything in the NEP package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to NEPCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolGetInterpolation -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPInterpolGetInterpolation

Gets the tolerance and maximum degree when building the interpolation polynomial.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolGetPEP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPInterpolGetPEP

Retrieve the polynomial eigensolver object (PEP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolSetInterpolation -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPInterpolSetInterpolation

Sets the tolerance and maximum degree when building the interpolation polynomial.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolSetPEP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPInterpolSetPEP

Associate a polynomial eigensolver object (PEP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPMonitorAll

Print the current approximate values and error estimates at each iteration of the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorCancel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPMonitorCancel

Clears all monitors for a NEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorFirst -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPMonitorFirst

Print the first unconverged approximate value and error estimate at each iteration of the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorLGCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPMonitorLGCreate

Creates a line graph context for use with NEP to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorSet -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPMonitorSet

Sets an ADDITIONAL function to be called at every iteration to monitor the error estimates for each requested eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiGetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNArnoldiGetKSP

Retrieve the linear solver object (KSP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiGetLagPreconditioner -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNArnoldiGetLagPreconditioner

Indicates how often the preconditioner is rebuilt.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiSetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNArnoldiSetKSP

Associate a linear solver object (KSP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiSetLagPreconditioner -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNArnoldiSetLagPreconditioner

Determines when the preconditioner is rebuilt in the nonlinear solve.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetInterpolation -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSGetInterpolation

Gets the tolerance and maximum degree when building the interpolation via divided differences.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetKSPs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSGetKSPs

Retrieve the array of linear solver objects associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSGetLocking

Gets the locking flag used in the NLEIGS method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSGetRestart

Gets the restart parameter used in the NLEIGS method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetRKShifts -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSGetRKShifts

Gets the list of shifts used in the Rational Krylov method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetSingularitiesFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSGetSingularitiesFunction

Returns the Function and optionally the user provided context for computing a discretization of the singularity set.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetInterpolation -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSSetInterpolation

Sets the tolerance and maximum degree when building the interpolation via divided differences.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSSetLocking

Choose between locking and non-locking variants of the NLEIGS method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSSetRestart

Sets the restart parameter for the NLEIGS method, in particular the proportion of basis vectors that must be kept after restart.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetRKShifts -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSSetRKShifts

Sets a list of shifts to be used in the Rational Krylov method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetSingularitiesFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPNLEIGSSetSingularitiesFunction

Sets a user function to compute a discretization of the singularity set (where T(.) is not analytic).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPProblemType

Determines the type of the nonlinear eigenproblem

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPProjectOperator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPProjectOperator

Computes the projection of the nonlinear operator.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPReasonViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPReasonViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPReasonViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPReasonViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPReasonViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPReasonViewFromOptions

Processes command line options to determine if/how the NEP converged reason is to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPReasonView.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPReasonView.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPReasonView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPReasonView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPReasonView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPReasonView

Displays the reason a NEP solve converged or diverged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRefineGetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRefineGetKSP

Obtain the ksp object used by the eigensolver object in the refinement phase.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRefine.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRefine.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRefine.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRefine.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRefine -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRefine

The refinement type

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRefineScheme -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRefineScheme

The scheme used for solving linear systems during iterative refinement

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRegisterAll

Registers all the solvers in the NEP package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRegister.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRegister

Adds a method to the nonlinear eigenproblem solver package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPReset.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPReset

Resets the NEP context to the initial state (prior to setup) and destroys any allocated Vecs and Mats.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetConstCorrectionTol -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIIGetConstCorrectionTol

Returns the constant tolerance flag.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIIGetKSP

Retrieve the linear solver object (KSP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetLagPreconditioner -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIIGetLagPreconditioner

Indicates how often the preconditioner is rebuilt.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetMaximumIterations -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIIGetMaximumIterations

Gets the maximum number of inner iterations of RII.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetConstCorrectionTol -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIISetConstCorrectionTol

Sets a flag to keep the tolerance used in the linear solver constant.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIISetKSP

Associate a linear solver object (KSP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetLagPreconditioner -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIISetLagPreconditioner

Determines when the preconditioner is rebuilt in the nonlinear solve.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetMaximumIterations -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPRIISetMaximumIterations

Sets the maximum number of inner iterations to be used in the RII solver. These are the Newton iterations related to the computation of the nonlinear Rayleigh functional.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetBV.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetBV

Associates a basis vectors object to the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetConvergenceTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetConvergenceTestFunction

Sets a function to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetConvergenceTest

Specifies how to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetDerivatives.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetDerivatives.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetDerivatives.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetDerivatives.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetDerivatives -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetDerivatives

Sets the function to compute the k-th derivative T^(k)(lambda) for any value of k (including 0), as well as the location to store the matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetDimensions

Sets the number of eigenvalues to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetDS.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetDS

Associates a direct solver object to the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetEigenvalueComparison -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetEigenvalueComparison

Specifies the eigenvalue comparison function when NEPSetWhichEigenpairs() is set to NEP_WHICH_USER.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetFromOptions

Sets NEP options from the options database. This routine must be called before NEPSetUp() if the user is to be allowed to set the solver type.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetFunction

Sets the function to compute the nonlinear Function T(lambda) as well as the location to store the matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetInitialSpace -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetInitialSpace

Specify a basis of vectors that constitute the initial space, that is, the subspace from which the solver starts to iterate.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetJacobian -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetJacobian

Sets the function to compute Jacobian T'(lambda) as well as the location to store the matrix.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetOptionsPrefix

Sets the prefix used for searching for all NEP options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetProblemType

Specifies the type of the nonlinear eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetRefine.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetRefine.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetRefine.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetRefine.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetRefine -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetRefine

Specifies the refinement type (and options) to be used after the solve.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetRG.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetRG.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetRG.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetRG.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetRG -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetRG

Associates a region object to the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetSplitOperator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetSplitOperator

Sets the operator of the nonlinear eigenvalue problem in split form.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetStoppingTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetStoppingTestFunction

Sets a function to decide when to stop the outer iteration of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetStoppingTest

Specifies how to decide the termination of the outer loop of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetTarget.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetTarget.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetTarget.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetTarget.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetTarget -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetTarget

Sets the value of the target.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetTolerances

Sets the tolerance and maximum iteration count used by the NEP convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetTrackAll

Specifies if the solver must compute the residual of all approximate eigenpairs or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetType.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetType

Selects the particular solver to be used in the NEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetUp.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetUp

Sets up all the internal data structures necessary for the execution of the NEP solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetWhichEigenpairs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetWhichEigenpairs

Specifies which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetWorkVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSetWorkVecs

Sets a number of work vectors into a NEP object

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPGetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSLPGetEPS

Retrieve the linear eigensolver object (EPS) associated to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPGetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSLPGetKSP

Retrieve the linear solver object (KSP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPSetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSLPSetEPS

Associate a linear eigensolver object (EPS) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPSetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSLPSetKSP

Associate a linear solver object (KSP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSolve.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPSolve

Solves the nonlinear eigensystem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPStop.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPStop.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPStop.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPStop.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPStop -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPStoppingBasic -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPStoppingBasic

Default routine to determine whether the outer eigensolver iteration must be stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPType.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPType.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPType

String with the name of a nonlinear eigensolver

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPValuesViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPValuesViewFromOptions

Processes command line options to determine if/how the computed eigenvalues are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPValuesView.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPValuesView.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPValuesView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPValuesView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPValuesView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPValuesView

Displays the computed eigenvalues in a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPVectorsViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPVectorsViewFromOptions

Processes command line options to determine if/how the computed eigenvectors are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPVectorsView.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPVectorsView.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPVectorsView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPVectorsView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPVectorsView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPVectorsView

Outputs computed eigenvectors to a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPView.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPView.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPView

Prints the NEP data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPWhich.html slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPWhich.html --- slepc-3.10.1+dfsg1/docs/manualpages/NEP/NEPWhich.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/NEP/NEPWhich.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ NEPWhich -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

NEPWhich

Determines which part of the spectrum is requested

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/index.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPAllocateSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPAllocateSolution

Allocate memory storage for common variables such as eigenvalues and eigenvectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPAppendOptionsPrefix

Appends to the prefix used for searching for all PEP options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPBasis.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPBasis.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPBasis.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPBasis.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPBasis -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPBasis

The type of polynomial basis used to represent the polynomial eigenproblem

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPComputeError.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPComputeError.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPComputeError.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPComputeError.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPComputeError -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPComputeError

Computes the error (based on the residual norm) associated with the i-th computed eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPConvergedReason

Reason an eigensolver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPConv.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPConv.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPConv.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPConv.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPConv -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPConvMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPConvMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user (for monitors that only show iteration numbers of convergence).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPCreate.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPCreate

Creates the default PEP context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPDestroy

Destroys the PEP context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPErrorType.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPErrorType.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPErrorType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPErrorType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPErrorType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPErrorViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPErrorViewFromOptions

Processes command line options to determine if/how the errors of the computed solution are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPErrorView.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPErrorView.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPErrorView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPErrorView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPErrorView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPErrorView

Displays the errors associated with the computed solution (as well as the eigenvalues).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPExtract.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPExtract.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPExtract.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPExtract.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPExtract -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPExtract

The extraction type

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPFinalizePackage

This function destroys everything in the Slepc interface to the PEP package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetBasis.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetBasis.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetBasis.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetBasis.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetBasis -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetBasis

Gets the type of polynomial basis from the PEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetBV.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetBV

Obtain the basis vectors object associated to the polynomial eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetConverged.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetConverged

Gets the number of converged eigenpairs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetConvergedReason

Gets the reason why the PEPSolve() iteration was stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetConvergenceTest

Gets the method used to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetDimensions

Gets the number of eigenvalues to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetDS.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetDS

Obtain the direct solver object associated to the polynomial eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetEigenpair -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetEigenpair

Gets the i-th solution of the eigenproblem as computed by PEPSolve(). The solution consists in both the eigenvalue and the eigenvector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetErrorEstimate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetErrorEstimate

Returns the error estimate associated to the i-th computed eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetExtract.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetExtract.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetExtract.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetExtract.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetExtract -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetExtract

Gets the extraction strategy used by the PEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetInterval.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetInterval.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetInterval.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetInterval.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetInterval -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetInterval

Gets the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetIterationNumber -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetIterationNumber

Gets the current iteration number. If the call to PEPSolve() is complete, then it returns the number of iterations carried out by the solution method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetMonitorContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetMonitorContext

Gets the monitor context, as set by PEPMonitorSet() for the FIRST monitor only.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetNumMatrices -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetNumMatrices

Returns the number of matrices stored in the PEP.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetOperators.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetOperators.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetOperators.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetOperators.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetOperators -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetOperators

Gets the matrices associated with the polynomial eigensystem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetOptionsPrefix

Gets the prefix used for searching for all PEP options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetProblemType

Gets the problem type from the PEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetRefine.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetRefine.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetRefine.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetRefine.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetRefine -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetRefine

Gets the refinement strategy used by the PEP object, and the associated parameters.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetRG.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetRG.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetRG.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetRG.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetRG -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetRG

Obtain the region object associated to the polynomial eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetScale.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetScale

Gets the scaling strategy used by the PEP object, and the associated parameters.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetST.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetST.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetST.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetST.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetST -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetST

Obtain the spectral transformation (ST) object associated to the eigensolver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetStoppingTest

Gets the method used to decide the termination of the outer loop of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetTarget.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetTarget.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetTarget.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetTarget.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetTarget -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetTarget

Gets the value of the target.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetTolerances

Gets the tolerance and maximum iteration count used by the PEP convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetTrackAll

Returns the flag indicating whether all residual norms must be computed or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetType.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetType

Gets the PEP type as a string from the PEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetWhichEigenpairs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPGetWhichEigenpairs

Returns which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEP.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEP.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEP

Abstract SLEPc object that manages all the polynomial eigenvalue problem solvers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPInitializePackage

This function initializes everything in the PEP package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PEPCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDGetFix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPJDGetFix

Returns the threshold for changing the target in the correction equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPJDGetRestart

Gets the restart parameter used in the Jacobi-Davidson method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDSetFix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPJDSetFix

Sets the threshold for changing the target in the correction equation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPJDSetRestart

Sets the restart parameter for the Jacobi-Davidson method, in particular the proportion of basis vectors that must be kept after restart.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearGetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPLinearGetEPS

Retrieve the eigensolver object (EPS) associated to the polynomial eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearGetExplicitMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPLinearGetExplicitMatrix

Returns the flag indicating if the matrices A and B for the linearization are built explicitly.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearGetLinearization -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPLinearGetLinearization

Returns the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearSetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPLinearSetEPS

Associate an eigensolver object (EPS) to the polynomial eigenvalue solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearSetExplicitMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPLinearSetExplicitMatrix

Indicate if the matrices A and B for the linearization of the problem must be built explicitly.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearSetLinearization -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPLinearSetLinearization

Set the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPMonitorAll

Print the current approximate values and error estimates at each iteration of the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorCancel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPMonitorCancel

Clears all monitors for a PEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorFirst -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPMonitorFirst

Print the first unconverged approximate value and error estimate at each iteration of the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorLGCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPMonitorLGCreate

Creates a line graph context for use with PEP to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorSet -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPMonitorSet

Sets an ADDITIONAL function to be called at every iteration to monitor the error estimates for each requested eigenpair.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPProblemType

Determines the type of the polynomial eigenproblem

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiGetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPQArnoldiGetLocking

Gets the locking flag used in the Q-Arnoldi method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPQArnoldiGetRestart

Gets the restart parameter used in the Q-Arnoldi method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiSetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPQArnoldiSetLocking

Choose between locking and non-locking variants of the Q-Arnoldi method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPQArnoldiSetRestart

Sets the restart parameter for the Q-Arnoldi method, in particular the proportion of basis vectors that must be kept after restart.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPReasonViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPReasonViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPReasonViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPReasonViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPReasonViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPReasonViewFromOptions

Processes command line options to determine if/how the PEP converged reason is to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPReasonView.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPReasonView.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPReasonView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPReasonView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPReasonView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPReasonView

Displays the reason a PEP solve converged or diverged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPRefineGetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPRefineGetKSP

Obtain the ksp object used by the eigensolver object in the refinement phase.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRefine.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRefine.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRefine.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRefine.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPRefine -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPRefine

The refinement type

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPRefineScheme -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPRefineScheme

The scheme used for solving linear systems during iterative refinement

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPRegisterAll

Registers all the solvers in the PEP package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRegister.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPRegister

Adds a method to the polynomial eigenproblem solver package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPReset.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPReset

Resets the PEP context to the initial state (prior to setup) and destroys any allocated Vecs and Mats.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPScale.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPScale

The scaling strategy

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetBasis.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetBasis.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetBasis.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetBasis.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetBasis -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetBasis

Specifies the type of polynomial basis used to describe the polynomial eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetBV.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetBV

Associates a basis vectors object to the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetConvergenceTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetConvergenceTestFunction

Sets a function to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetConvergenceTest

Specifies how to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetDimensions

Sets the number of eigenvalues to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetDS.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetDS

Associates a direct solver object to the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetEigenvalueComparison -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetEigenvalueComparison

Specifies the eigenvalue comparison function when PEPSetWhichEigenpairs() is set to PEP_WHICH_USER.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetExtract.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetExtract.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetExtract.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetExtract.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetExtract -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetExtract

Specifies the extraction strategy to be used.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetFromOptions

Sets PEP options from the options database. This routine must be called before PEPSetUp() if the user is to be allowed to set the solver type.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetInitialSpace -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetInitialSpace

Specify a basis of vectors that constitute the initial space, that is, the subspace from which the solver starts to iterate.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetInterval.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetInterval.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetInterval.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetInterval.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetInterval -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetInterval

Defines the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetOperators.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetOperators.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetOperators.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetOperators.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetOperators -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetOperators

Sets the coefficient matrices associated with the polynomial eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetOptionsPrefix

Sets the prefix used for searching for all PEP options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetProblemType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetProblemType

Specifies the type of the polynomial eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetRefine.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetRefine.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetRefine.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetRefine.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetRefine -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetRefine

Specifies the refinement type (and options) to be used after the solve.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetRG.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetRG.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetRG.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetRG.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetRG -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetRG

Associates a region object to the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetScale.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetScale

Specifies the scaling strategy to be used.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetST.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetST.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetST.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetST.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetST -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetST

Associates a spectral transformation object to the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetStoppingTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetStoppingTestFunction

Sets a function to decide when to stop the outer iteration of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetStoppingTest

Specifies how to decide the termination of the outer loop of the eigensolver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetTarget.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetTarget.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetTarget.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetTarget.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetTarget -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetTarget

Sets the value of the target.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetTolerances

Sets the tolerance and maximum iteration count used by the PEP convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetTrackAll

Specifies if the solver must compute the residual of all approximate eigenpairs or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetType.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetType

Selects the particular solver to be used in the PEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetUp.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetUp

Sets up all the internal data structures necessary for the execution of the PEP solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetWhichEigenpairs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetWhichEigenpairs

Specifies which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetWorkVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSetWorkVecs

Sets a number of work vectors into a PEP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSolve.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSolve

Solves the polynomial eigensystem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetDetectZeros -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARGetDetectZeros

Gets the flag that enforces zero detection in spectrum slicing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARGetDimensions

Gets the dimensions used for each subsolve step in case of doing spectrum slicing for a computational interval.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetInertias -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARGetInertias

Gets the values of the shifts and their corresponding inertias in case of doing spectrum slicing for a computational interval.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetLinearization -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARGetLinearization

Returns the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARGetLocking

Gets the locking flag used in the STOAR method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetDetectZeros -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARSetDetectZeros

Sets a flag to enforce detection of zeros during the factorizations throughout the spectrum slicing computation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARSetDimensions

Sets the dimensions used for each subsolve step in case of doing spectrum slicing for a computational interval. The meaning of the parameters is the same as in PEPSetDimensions().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetLinearization -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARSetLinearization

Set the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPSTOARSetLocking

Choose between locking and non-locking variants of the STOAR method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPStop.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPStop.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPStop.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPStop.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPStop -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPStoppingBasic -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPStoppingBasic

Default routine to determine whether the outer eigensolver iteration must be stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARGetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPTOARGetLocking

Gets the locking flag used in the TOAR method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARGetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPTOARGetRestart

Gets the restart parameter used in the TOAR method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARSetLocking -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPTOARSetLocking

Choose between locking and non-locking variants of the TOAR method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARSetRestart -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPTOARSetRestart

Sets the restart parameter for the TOAR method, in particular the proportion of basis vectors that must be kept after restart.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPType.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPType.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPType

String with the name of a polynomial eigensolver

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPValuesViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPValuesViewFromOptions

Processes command line options to determine if/how the computed eigenvalues are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPValuesView.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPValuesView.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPValuesView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPValuesView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPValuesView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPValuesView

Displays the computed eigenvalues in a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPVectorsViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPVectorsViewFromOptions

Processes command line options to determine if/how the computed eigenvectors are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPVectorsView.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPVectorsView.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPVectorsView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPVectorsView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPVectorsView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPVectorsView

Outputs computed eigenvectors to a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPView.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPView.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPView

Prints the PEP data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPWhich.html slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPWhich.html --- slepc-3.10.1+dfsg1/docs/manualpages/PEP/PEPWhich.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/PEP/PEPWhich.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ PEPWhich -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

PEPWhich

Determines which part of the spectrum is requested

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/index.html slepc-3.10.2+dfsg1/docs/manualpages/RG/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGAppendOptionsPrefix

Appends to the prefix used for searching for all RG options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGCheckInside.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGCheckInside.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGCheckInside.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGCheckInside.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGCheckInside -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGCheckInside

Determines if a set of given points are inside the region or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGComputeBoundingBox -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGComputeBoundingBox

Determines the endpoints of a rectangle in the complex plane that contains the region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGComputeContour.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGComputeContour.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGComputeContour.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGComputeContour.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGComputeContour -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGComputeContour

Computes the coordinates of several points lying in the contour of the region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGCreate.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGCreate

Creates an RG context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGDestroy

Destroys RG context that was created with RGCreate().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGEllipseGetParameters -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGEllipseGetParameters

Gets the parameters that define the ellipse region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGEllipseSetParameters -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGEllipseSetParameters

Sets the parameters defining the ellipse region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGFinalizePackage

This function destroys everything in the Slepc interface to the RG package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetComplement.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetComplement.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetComplement.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetComplement.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGGetComplement -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGGetComplement

Gets a flag that that indicates whether the region is complemented or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGGetOptionsPrefix

Gets the prefix used for searching for all RG options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetScale.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGGetScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGGetScale

Gets the scaling factor.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetType.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGGetType

Gets the RG type name (as a string) from the RG context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RG.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RG.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RG.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RG.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RG -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RG

Region of the complex plane.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGInitializePackage

This function initializes everything in the RG package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to RGCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGIntervalGetEndpoints -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGIntervalGetEndpoints

Gets the parameters that define the interval region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGIntervalSetEndpoints -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGIntervalSetEndpoints

Sets the parameters defining the interval region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGIsTrivial.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGIsTrivial.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGIsTrivial.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGIsTrivial.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGIsTrivial -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGIsTrivial

Whether it is the trivial region (whole complex plane).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGPolygonGetVertices -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGPolygonGetVertices

Gets the vertices that define the polygon region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGPolygonSetVertices -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGPolygonSetVertices

Sets the vertices that define the polygon region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPopScale.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPopScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPopScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPopScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGPopScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGPopScale

Pops the scaling factor set with RGPushScale().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPushScale.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPushScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGPushScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGPushScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGPushScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGPushScale

Sets an additional scaling factor, that will multiply the user-defined scaling factor.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGRegisterAll

Registers all of the regions in the RG package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRegister.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGRegister

Adds a region to the RG package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRingGetParameters.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRingGetParameters.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRingGetParameters.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRingGetParameters.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGRingGetParameters -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGRingGetParameters

Gets the parameters that define the ring region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRingSetParameters.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRingSetParameters.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGRingSetParameters.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGRingSetParameters.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGRingSetParameters -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGRingSetParameters

Sets the parameters defining the ring region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetComplement.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetComplement.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetComplement.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetComplement.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGSetComplement -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGSetComplement

Sets a flag to indicate that the region is the complement of the specified one.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGSetFromOptions

Sets RG options from the options database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGSetOptionsPrefix

Sets the prefix used for searching for all RG options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetScale.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetScale.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetScale.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetScale.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGSetScale -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGSetScale

Sets the scaling factor to be used when checking that a point is inside the region and when computing the contour.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetType.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGSetType

Selects the type for the RG object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGType.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGType.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGType

String with the name of the region.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/RG/RGView.html slepc-3.10.2+dfsg1/docs/manualpages/RG/RGView.html --- slepc-3.10.1+dfsg1/docs/manualpages/RG/RGView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/RG/RGView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ RGView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

RGView

Prints the RG data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/index.html slepc-3.10.2+dfsg1/docs/manualpages/ST/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STAppendOptionsPrefix

Appends to the prefix used for searching for all ST options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STApply.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STApply.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STApply.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STApply.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STApply -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STApply

Applies the spectral transformation operator to a vector, for instance (A - sB)^-1 B in the case of the shift-and-invert transformation and generalized eigenproblem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STApplyTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STApplyTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STApplyTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STApplyTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STApplyTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STApplyTranspose

Applies the transpose of the operator to a vector, for instance B^T(A - sB)^-T in the case of the shift-and-invert transformation and generalized eigenproblem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STBackTransform.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STBackTransform.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STBackTransform.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STBackTransform.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STBackTransform -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STBackTransform

Back-transformation phase, intended for spectral transformations which require to transform the computed eigenvalues back to the original eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STCayleyGetAntishift -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STCayleyGetAntishift

Gets the value of the anti-shift used in the Cayley spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STCayleySetAntishift -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STCayleySetAntishift

Sets the value of the anti-shift for the Cayley spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STCheckNullSpace.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STCheckNullSpace.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STCheckNullSpace.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STCheckNullSpace.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STCheckNullSpace -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STCheckNullSpace

Given a basis vectors object, this function tests each of its constraint vectors to be a nullspace vector of the coefficient matrix of the associated KSP object. All these nullspace vectors are passed to the KSP object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STCreate.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STCreate

Creates a spectral transformation context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STDestroy

Destroys ST context that was created with STCreate().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetDegree.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetDegree.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetDegree.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetDegree.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetDegree -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFilterGetDegree

Gets the degree of the filter polynomial.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetInterval.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetInterval.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetInterval.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetInterval.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetInterval -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFilterGetInterval

Gets the interval containing the desired eigenvalues.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetRange.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetRange.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetRange.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetRange.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetRange -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFilterGetRange

Gets the interval containing all eigenvalues.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetThreshold -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFilterGetThreshold

Gets the threshold value gamma such that rho(lambda)>=gamma for eigenvalues lambda inside the wanted interval and rho(lambda)<gamma for those outside.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterSetDegree.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterSetDegree.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterSetDegree.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterSetDegree.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFilterSetDegree -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFilterSetDegree

Sets the degree of the filter polynomial.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterSetInterval.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterSetInterval.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterSetInterval.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterSetInterval.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFilterSetInterval -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFilterSetInterval

Defines the interval containing the desired eigenvalues.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterSetRange.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterSetRange.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFilterSetRange.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFilterSetRange.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFilterSetRange -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFilterSetRange

Defines the numerical range (or field of values) of the matrix, that is, the interval containing all eigenvalues.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STFinalizePackage

This function destroys everything in the Slepc interface to the ST package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetBalanceMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetBalanceMatrix

Gets the balance matrix used by the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetBilinearForm.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetBilinearForm.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetBilinearForm.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetBilinearForm.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetBilinearForm -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetBilinearForm

Returns the matrix used in the bilinear form with a generalized problem with semi-definite B.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetKSP

Gets the KSP object associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatMode.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatMode.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatMode.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatMode.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatMode -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetMatMode

Gets a flag that indicates how the transformed matrices are stored in spectral transformations.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetMatrix

Gets the matrices associated with the original eigensystem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatrixTransformed -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetMatrixTransformed

Gets the matrices associated with the transformed eigensystem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatStructure.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatStructure.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetMatStructure.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetMatStructure.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatStructure -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetMatStructure

Gets the internal MatStructure attribute to indicate which is the relation of the sparsity pattern of the matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetNumMatrices.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetNumMatrices.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetNumMatrices.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetNumMatrices.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetNumMatrices -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetNumMatrices

Returns the number of matrices stored in the ST.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetOperator.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetOperator.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetOperator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetOperator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetOperator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetOperator

Returns a shell matrix that represents the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetOptionsPrefix

Gets the prefix used for searching for all ST options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetShift.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetShift.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetShift.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetShift.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetShift -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetShift

Gets the shift associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetTransform.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetTransform.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetTransform.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetTransform.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetTransform -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetTransform

Gets a flag that that indicates whether the transformed matrices are computed or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetType.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STGetType

Gets the ST type name (as a string) from the ST context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/ST.html slepc-3.10.2+dfsg1/docs/manualpages/ST/ST.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/ST.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/ST.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ ST -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

ST

Abstract SLEPc object that manages spectral transformations. This object is accessed only in advanced applications.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STInitializePackage

This function initializes everything in the ST package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to STCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STIsInjective.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STIsInjective.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STIsInjective.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STIsInjective.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STIsInjective -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STIsInjective

Ask if this spectral transformation is injective or not (that is, if it corresponds to a one-to-one mapping). If not, then it does not make sense to call STBackTransform().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatCreateVecsEmpty -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatCreateVecsEmpty

Get vector(s) compatible with the ST matrices, i.e. with the same parallel layout, but without internal array.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatCreateVecs.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatCreateVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatCreateVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatCreateVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatCreateVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatCreateVecs

Get vector(s) compatible with the ST matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatGetLocalSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatGetLocalSize

Returns the number of local rows and columns of the ST matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatGetSize.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatGetSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatGetSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatGetSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatGetSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatGetSize

Returns the number of rows and columns of the ST matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatMode.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatMode.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatMode.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatMode.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatMode -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatMode

Determines how to handle the coefficient matrix associated to the spectral transformation

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatMult.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatMult.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatMult.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatMult.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatMult -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatMult

Computes the matrix-vector product y = T[k] x, where T[k] is the k-th matrix of the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatMultTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatMultTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatMultTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatMultTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatMultTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatMultTranspose

Computes the matrix-vector product y = T[k]' x, where T[k] is the k-th matrix of the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatSetUp.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatSetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatSetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatSetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatSetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatSetUp

Build the preconditioner matrix used in STMatSolve().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatSolve.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatSolve

Solves P x = b, where P is the preconditioner matrix of the spectral transformation, using a KSP object stored internally.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STMatSolveTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STMatSolveTranspose

Solves P' x = b, where P is the preconditioner matrix of the spectral transformation, using a KSP object stored internally.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STPostSolve.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STPostSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STPostSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STPostSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STPostSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STPostSolve

Optional post-solve phase, intended for any actions that must be performed on the ST object after the eigensolver has finished.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondGetKSPHasMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STPrecondGetKSPHasMat

Returns the flag indicating if the coefficient matrix of the KSP linear system (A) is set to be the same matrix as the preconditioner (P).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondGetMatForPC -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STPrecondGetMatForPC

Returns the matrix previously set by STPrecondSetMatForPC().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondSetKSPHasMat -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STPrecondSetKSPHasMat

Sets a flag indicating that during STSetUp the coefficient matrix of the KSP linear system (A) must be set to be the same matrix as the preconditioner (P).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondSetMatForPC -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STPrecondSetMatForPC

Sets the matrix that must be used to build the preconditioner.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STRegisterAll

Registers all of the spectral transformations in the ST package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STRegister.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STRegister

Adds a method to the spectral transformation package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STReset.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STReset

Resets the ST context to the initial state (prior to setup) and destroys any allocated Vecs and Mats.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STResetMatrixState.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STResetMatrixState.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STResetMatrixState.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STResetMatrixState.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STResetMatrixState -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STResetMatrixState

Resets the stored state of the matrices in the ST.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STScaleShift.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STScaleShift.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STScaleShift.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STScaleShift.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STScaleShift -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STScaleShift

Multiply the shift with a given factor.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetBalanceMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetBalanceMatrix

Sets the diagonal matrix to be used for balancing.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetDefaultShift.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetDefaultShift.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetDefaultShift.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetDefaultShift.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetDefaultShift -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetDefaultShift

Sets the value of the shift that should be employed if the user did not specify one.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetFromOptions

Sets ST options from the options database. This routine must be called before STSetUp() if the user is to be allowed to set the type of transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetKSP.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetKSP.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetKSP.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetKSP.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetKSP -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetKSP

Sets the KSP object associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetMatMode.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetMatMode.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetMatMode.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetMatMode.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetMatMode -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetMatMode

Sets a flag to indicate how the transformed matrices are being stored in the spectral transformations.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetMatrices.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetMatrices.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetMatrices.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetMatrices.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetMatrices -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetMatrices

Sets the matrices associated with the eigenvalue problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetMatStructure.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetMatStructure.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetMatStructure.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetMatStructure.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetMatStructure -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetMatStructure

Sets an internal MatStructure attribute to indicate which is the relation of the sparsity pattern of all ST matrices.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetOptionsPrefix

Sets the prefix used for searching for all ST options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetShift.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetShift.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetShift.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetShift.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetShift -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetShift

Sets the shift associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetTransform.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetTransform.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetTransform.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetTransform.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetTransform -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetTransform

Sets a flag to indicate whether the transformed matrices are computed or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetType.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetType

Builds ST for a particular spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetUp.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetUp

Prepares for the use of a spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetWorkVecs.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetWorkVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSetWorkVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSetWorkVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSetWorkVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSetWorkVecs

Sets a number of work vectors into the ST object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellGetContext.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellGetContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellGetContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellGetContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STShellGetContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STShellGetContext

Returns the user-provided context associated with a shell ST

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STSHELL.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STSHELL.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STSHELL.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STSHELL.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STSHELL -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STSHELL

Creates a new spectral transformation class. This is intended to provide a simple class to use with EPS. You should not use this if you plan to make a complete class.

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetApply.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetApply.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetApply.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetApply.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetApply -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STShellSetApply

Sets routine to use as the application of the operator to a vector in the user-defined spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetApplyTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STShellSetApplyTranspose

Sets routine to use as the application of the transposed operator to a vector in the user-defined spectral transformation.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetBackTransform -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STShellSetBackTransform

Sets the routine to be called after the eigensolution process has finished in order to transform back the computed eigenvalues.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetContext.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STShellSetContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STShellSetContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STShellSetContext

Sets the context for a shell ST

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STType.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STType.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STType

String with the name of a SLEPc spectral transformation

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/ST/STView.html slepc-3.10.2+dfsg1/docs/manualpages/ST/STView.html --- slepc-3.10.1+dfsg1/docs/manualpages/ST/STView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/ST/STView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ STView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

STView

Prints the ST data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/index.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDAllocateSolution -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDAllocateSolution

Allocate memory storage for common variables such as the singular values and the basis vectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDAppendOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDAppendOptionsPrefix

Appends to the prefix used for searching for all SVD options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDComputeError.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDComputeError.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDComputeError.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDComputeError.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDComputeError -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDComputeError

Computes the error (based on the residual norm) associated with the i-th singular triplet.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDConvergedReason

Reason a singular value solver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDConv.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDConv.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDConv.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDConv.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDConv -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDConvMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDConvMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user (for monitors that only show iteration numbers of convergence).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCreate.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCreate

Creates the default SVD context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossGetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCrossGetEPS

Retrieve the eigensolver object (EPS) associated to the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossGetExplicitMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCrossGetExplicitMatrix

Returns the flag indicating if A^T*A is built explicitly.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossSetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCrossSetEPS

Associate an eigensolver object (EPS) to the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossSetExplicitMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCrossSetExplicitMatrix

Indicate if the eigensolver operator A^T*A must be computed explicitly.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicGetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCyclicGetEPS

Retrieve the eigensolver object (EPS) associated to the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicGetExplicitMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCyclicGetExplicitMatrix

Returns the flag indicating if H(A) is built explicitly.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicSetEPS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCyclicSetEPS

Associate an eigensolver object (EPS) to the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicSetExplicitMatrix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDCyclicSetExplicitMatrix

Indicate if the eigensolver operator H(A) = [ 0 A ; A^T 0 ] must be computed explicitly.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDDestroy

Destroys the SVD context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDErrorType.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDErrorType.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDErrorType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDErrorType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDErrorType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDErrorViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDErrorViewFromOptions

Processes command line options to determine if/how the errors of the computed solution are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDErrorView.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDErrorView.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDErrorView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDErrorView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDErrorView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDErrorView

Displays the errors associated with the computed solution (as well as the singular values).

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDFinalizePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDFinalizePackage

This function destroys everything in the Slepc interface to the SVD package. It is called from SlepcFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetBV.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetBV

Obtain the basis vectors objects associated to the singular value solver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetConverged.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetConverged

Gets the number of converged singular values.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetConvergedReason -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetConvergedReason

Gets the reason why the SVDSolve() iteration was stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetConvergenceTest

Gets the method used to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetDimensions

Gets the number of singular values to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetDS.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetDS

Obtain the direct solver object associated to the singular value solver object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetImplicitTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetImplicitTranspose

Gets the mode used to handle the transpose of the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetIterationNumber -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetIterationNumber

Gets the current iteration number. If the call to SVDSolve() is complete, then it returns the number of iterations carried out by the solution method.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetMonitorContext -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetMonitorContext

Gets the monitor context, as set by SVDMonitorSet() for the FIRST monitor only.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetOperator.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetOperator.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetOperator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetOperator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetOperator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetOperator

Get the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetOptionsPrefix

Gets the prefix used for searching for all SVD options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetSingularTriplet -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetSingularTriplet

Gets the i-th triplet of the singular value decomposition as computed by SVDSolve(). The solution consists in the singular value and its left and right singular vectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetStoppingTest

Gets the method used to decide the termination of the outer loop of the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetTolerances

Gets the tolerance and maximum iteration count used by the default SVD convergence tests.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetTrackAll

Returns the flag indicating whether all residual norms must be computed or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetType.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetType

Gets the SVD type as a string from the SVD object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetWhichSingularTriplets -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDGetWhichSingularTriplets

Returns which singular triplets are to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVD.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVD.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVD.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVD.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVD -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVD

Abstract SLEPc object that manages all the singular value problem solvers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDInitializePackage -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDInitializePackage

This function initializes everything in the SVD package. It is called from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to SVDCreate() when using static libraries.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDLanczosGetOneSide -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDLanczosGetOneSide

Gets if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDLanczosSetOneSide -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDLanczosSetOneSide

Indicate if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDMonitorAll

Print the current approximate values and error estimates at each iteration of the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorCancel -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDMonitorCancel

Clears all monitors for an SVD object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorConverged -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorFirst -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDMonitorFirst

Print the first unconverged approximate values and error estimates at each iteration of the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorLGCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDMonitorLGCreate

Creates a line graph context for use with SVD to monitor convergence.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDMonitorSetFromOptions

Sets a monitor function and viewer appropriate for the type indicated by the user.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorSet -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDMonitorSet

Sets an ADDITIONAL function to be called at every iteration to monitor the error estimates for each requested singular triplet.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMEGetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDPRIMMEGetBlockSize

Get the maximum block size the code will try to use.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMEGetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDPRIMMEGetMethod

Gets the method for the PRIMME SVD solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMEMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDPRIMMEMethod

determines the SVD method selected in the PRIMME library

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMESetBlockSize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDPRIMMESetBlockSize

The maximum block size that PRIMME will try to use.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMESetMethod -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDPRIMMESetMethod

Sets the method for the PRIMME SVD solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDReasonViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDReasonViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDReasonViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDReasonViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDReasonViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDReasonViewFromOptions

Processes command line options to determine if/how the SVD converged reason is to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDReasonView.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDReasonView.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDReasonView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDReasonView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDReasonView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDReasonView

Displays the reason an SVD solve converged or diverged.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDRegisterAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDRegisterAll

Registers all the singular value solvers in the SVD package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDRegister.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDRegister.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDRegister.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDRegister.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDRegister -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDRegister

Adds a method to the singular value solver package.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDReset.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDReset.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDReset.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDReset.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDReset -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDReset

Resets the SVD context to the initial state (prior to setup) and destroys any allocated Vecs and Mats.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetBV.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetBV.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetBV.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetBV.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetBV -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetBV

Associates basis vectors objects to the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetConvergenceTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetConvergenceTestFunction

Sets a function to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetConvergenceTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetConvergenceTest

Specifies how to compute the error estimate used in the convergence test.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetDimensions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetDimensions

Sets the number of singular values to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetDS.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetDS.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetDS.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetDS.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetDS -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetDS

Associates a direct solver object to the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetFromOptions

Sets SVD options from the options database. This routine must be called before SVDSetUp() if the user is to be allowed to set the solver type.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetImplicitTranspose -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetImplicitTranspose

Indicates how to handle the transpose of the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetInitialSpaces -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetInitialSpaces

Specify two basis of vectors that constitute the initial right and/or left spaces, that is, a rough approximation to the right and/or left singular subspaces from which the solver starts to iterate.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetOperator.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetOperator.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetOperator.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetOperator.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetOperator -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetOperator

Set the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetOptionsPrefix -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetOptionsPrefix

Sets the prefix used for searching for all SVD options in the database.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetStoppingTestFunction -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetStoppingTestFunction

Sets a function to decide when to stop the outer iteration of the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetStoppingTest -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetStoppingTest

Specifies how to decide the termination of the outer loop of the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetTolerances -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetTolerances

Sets the tolerance and maximum iteration count used by the default SVD convergence testers.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetTrackAll -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetTrackAll

Specifies if the solver must compute the residual norm of all approximate singular value or not.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetType.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetType.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetType

Selects the particular solver to be used in the SVD object.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetUp.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetUp.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetUp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetUp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetUp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetUp

Sets up all the internal data structures necessary for the execution of the singular value solver.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetWhichSingularTriplets -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSetWhichSingularTriplets

Specifies which singular triplets are to be sought.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSolve.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSolve.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDSolve.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDSolve.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDSolve -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDSolve

Solves the singular value problem.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDStop.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDStop.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDStop.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDStop.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDStop -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDStoppingBasic -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDStoppingBasic

Default routine to determine whether the outer singular value solver iteration must be stopped.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDTRLanczosGetOneSide -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDTRLanczosGetOneSide

Gets if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDTRLanczosSetOneSide -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDTRLanczosSetOneSide

Indicate if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDType.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDType.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDType.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDType.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDType -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDType

String with the name of a SLEPc singular value solver

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDValuesViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDValuesViewFromOptions

Processes command line options to determine if/how the computed singular values are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDValuesView.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDValuesView.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDValuesView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDValuesView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDValuesView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDValuesView

Displays the computed singular values in a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDVectorsViewFromOptions -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDVectorsViewFromOptions

Processes command line options to determine if/how the computed singular vectors are to be viewed.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDVectorsView.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDVectorsView.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDVectorsView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDVectorsView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDVectorsView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDVectorsView

Outputs computed singular vectors to a viewer.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDView.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDView.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDView.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDView.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDView -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDView

Prints the SVD data structure.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDWhich.html slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDWhich.html --- slepc-3.10.1+dfsg1/docs/manualpages/SVD/SVDWhich.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/SVD/SVDWhich.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SVDWhich -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SVDWhich

Determines whether largest or smallest singular triplets are to be computed

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/index.html slepc-3.10.2+dfsg1/docs/manualpages/sys/index.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/MatCreateTile.html slepc-3.10.2+dfsg1/docs/manualpages/sys/MatCreateTile.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/MatCreateTile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/MatCreateTile.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MatCreateTile -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MatCreateTile

Explicitly build a matrix from four blocks, G = [ a*A b*B; c*C d*D ].

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html slepc-3.10.2+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ MatCreateVecsEmpty -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

MatCreateVecsEmpty

Get vector(s) compatible with the matrix, i.e. with the same parallel layout, but without internal array.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcConvMonitorCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcConvMonitorCreate

Creates a SlepcConvMonitor context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcConvMonitorDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcConvMonitorDestroy

Destroys a SlepcConvMonitor context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcFinalize.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcFinalize.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcFinalize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcFinalize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcFinalize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcFinalize

Checks for options to be called at the conclusion of the SLEPc program and calls PetscFinalize().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcGetVersion.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcGetVersion.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcGetVersion.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcGetVersion.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcGetVersion -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcGetVersion

Gets the SLEPc version information in a string.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcGetVersionNumber -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcGetVersionNumber

Gets the SLEPc version information from the library.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitialized.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitialized.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitialized.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitialized.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitialized -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcInitialized

Determine whether SLEPc is initialized.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitializeFortran -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcInitializeFortran

Routine that should be called from C after the call to SlepcInitialize() if one is using a C main program that calls Fortran routines that in turn call SLEPc routines.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitialize.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitialize.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitialize.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitialize.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitialize -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcInitialize

Initializes the SLEPc library. SlepcInitialize() calls PetscInitialize() if that has not been called yet, so this routine should always be called near the beginning of your program.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitializeNoArguments -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcInitializeNoArguments

Calls SlepcInitialize() from C/C++ without the command line arguments.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcSCCompare.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcSCCompare.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcSCCompare.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcSCCompare.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcSCCompare -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcSCCompare

Compares two (possibly complex) values according to a certain criterion.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcSNPrintfScalar -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcSNPrintfScalar

Prints a PetscScalar variable to a string of given length.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcSortEigenvalues -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcSortEigenvalues

Sorts a list of eigenvalues according to the sorting criterion specified in a SlepcSC context.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolCreate -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcVecPoolCreate

Create a pool of Vec.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolDestroy -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcVecPoolDestroy

Destroy the pool of Vec.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolGetVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcVecPoolGetVecs

Get an array of Vec from the pool.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolRestoreVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SlepcVecPoolRestoreVecs

Get back an array of Vec previously returned by SlepcVecPoolGetVecs().

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ VecCheckOrthogonality -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

VecCheckOrthogonality

Checks (or prints) the level of orthogonality of a set of vectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ VecCompGetSubVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

VecCompGetSubVecs

Returns the entire array of vectors defining a compound vector.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ VecCompSetSubVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

VecCompSetSubVecs

Resets the number of subvectors defining a compound vector, or replaces the subvectors.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCreateComp.html slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCreateComp.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCreateComp.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCreateComp.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ VecCreateComp -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

VecCreateComp

Creates a new vector containing several subvectors, each stored separately.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ VecCreateCompWithVecs -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

VecCreateCompWithVecs

Creates a new vector containing several subvectors, each stored separately, from an array of Vecs.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html slepc-3.10.2+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ VecDuplicateEmpty -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

VecDuplicateEmpty

Creates a new vector of the same type as an existing vector, but without internal array.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html slepc-3.10.2+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html --- slepc-3.10.1+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html 2019-02-11 16:58:45.000000000 +0000 @@ -6,8 +6,8 @@ VecNormalizeComplex -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

VecNormalizeComplex

Normalizes a possibly complex vector by the 2-norm.

Synopsis

diff -Nru slepc-3.10.1+dfsg1/include/index.html slepc-3.10.2+dfsg1/include/index.html --- slepc-3.10.1+dfsg1/include/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/include/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,8 +4,8 @@ Generic SLEPc Manual Pages -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

slepc/finclude/
slepc/private/
diff -Nru slepc-3.10.1+dfsg1/include/makefile.html slepc-3.10.2+dfsg1/include/makefile.html --- slepc-3.10.1+dfsg1/include/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/include/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/index.html slepc-3.10.2+dfsg1/include/slepc/finclude/index.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

slepc.h
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/makefile.html slepc-3.10.2+dfsg1/include/slepc/finclude/makefile.html --- slepc-3.10.1+dfsg1/include/slepc/finclude/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/include/slepc/finclude/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcbv.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcbv.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcbv.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcbv.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcds.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcds.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcds.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcds.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepceps.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepceps.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepceps.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepceps.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcfn.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcfn.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcfn.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcfn.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepc.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepc.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepc.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepc.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepclme.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepclme.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepclme.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepclme.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcmfn.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcmfn.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcmfn.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcmfn.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcnep.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcnep.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcnep.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcnep.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcpep.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcpep.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcpep.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcpep.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcrg.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcrg.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcrg.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcrg.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcst.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcst.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcst.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcst.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcsvd.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcsvd.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcsvd.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcsvd.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/finclude/slepcsys.h.html slepc-3.10.2+dfsg1/include/slepc/finclude/slepcsys.h.html
--- slepc-3.10.1+dfsg1/include/slepc/finclude/slepcsys.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/finclude/slepcsys.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/bvimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/bvimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/bvimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/bvimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/dsimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/dsimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/dsimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/dsimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/epsimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/epsimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/epsimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/epsimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/fnimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/fnimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/fnimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/fnimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/index.html slepc-3.10.2+dfsg1/include/slepc/private/index.html
--- slepc-3.10.1+dfsg1/include/slepc/private/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

epsimpl.h
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/lmeimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/lmeimpl.h.html --- slepc-3.10.1+dfsg1/include/slepc/private/lmeimpl.h.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/include/slepc/private/lmeimpl.h.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/makefile.html slepc-3.10.2+dfsg1/include/slepc/private/makefile.html
--- slepc-3.10.1+dfsg1/include/slepc/private/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/mfnimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/mfnimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/mfnimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/mfnimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/nepimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/nepimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/nepimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/nepimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/pepimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/pepimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/pepimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/pepimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/rgimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/rgimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/rgimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/rgimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/slepcimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/slepcimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/slepcimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/slepcimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/stimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/stimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/stimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/stimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/svdimpl.h.html slepc-3.10.2+dfsg1/include/slepc/private/svdimpl.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/svdimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/svdimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc/private/vecimplslepc.h.html slepc-3.10.2+dfsg1/include/slepc/private/vecimplslepc.h.html
--- slepc-3.10.1+dfsg1/include/slepc/private/vecimplslepc.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc/private/vecimplslepc.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcblaslapack.h.html slepc-3.10.2+dfsg1/include/slepcblaslapack.h.html
--- slepc-3.10.1+dfsg1/include/slepcblaslapack.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcblaslapack.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcbv.h.html slepc-3.10.2+dfsg1/include/slepcbv.h.html
--- slepc-3.10.1+dfsg1/include/slepcbv.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcbv.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcds.h.html slepc-3.10.2+dfsg1/include/slepcds.h.html
--- slepc-3.10.1+dfsg1/include/slepcds.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcds.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepceps.h.html slepc-3.10.2+dfsg1/include/slepceps.h.html
--- slepc-3.10.1+dfsg1/include/slepceps.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepceps.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcfn.h.html slepc-3.10.2+dfsg1/include/slepcfn.h.html
--- slepc-3.10.1+dfsg1/include/slepcfn.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcfn.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepc.h.html slepc-3.10.2+dfsg1/include/slepc.h.html
--- slepc-3.10.1+dfsg1/include/slepc.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepc.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepclme.h.html slepc-3.10.2+dfsg1/include/slepclme.h.html
--- slepc-3.10.1+dfsg1/include/slepclme.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepclme.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcmath.h.html slepc-3.10.2+dfsg1/include/slepcmath.h.html
--- slepc-3.10.1+dfsg1/include/slepcmath.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcmath.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcmfn.h.html slepc-3.10.2+dfsg1/include/slepcmfn.h.html
--- slepc-3.10.1+dfsg1/include/slepcmfn.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcmfn.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcnep.h.html slepc-3.10.2+dfsg1/include/slepcnep.h.html
--- slepc-3.10.1+dfsg1/include/slepcnep.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcnep.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcpep.h.html slepc-3.10.2+dfsg1/include/slepcpep.h.html
--- slepc-3.10.1+dfsg1/include/slepcpep.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcpep.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcrg.h.html slepc-3.10.2+dfsg1/include/slepcrg.h.html
--- slepc-3.10.1+dfsg1/include/slepcrg.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcrg.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcrgtypes.h.html slepc-3.10.2+dfsg1/include/slepcrgtypes.h.html
--- slepc-3.10.1+dfsg1/include/slepcrgtypes.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcrgtypes.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcst.h.html slepc-3.10.2+dfsg1/include/slepcst.h.html
--- slepc-3.10.1+dfsg1/include/slepcst.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcst.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcsvd.h.html slepc-3.10.2+dfsg1/include/slepcsvd.h.html
--- slepc-3.10.1+dfsg1/include/slepcsvd.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcsvd.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcsys.h.html slepc-3.10.2+dfsg1/include/slepcsys.h.html
--- slepc-3.10.1+dfsg1/include/slepcsys.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcsys.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcvec.h.html slepc-3.10.2+dfsg1/include/slepcvec.h.html
--- slepc-3.10.1+dfsg1/include/slepcvec.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcvec.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/include/slepcversion.h slepc-3.10.2+dfsg1/include/slepcversion.h
--- slepc-3.10.1+dfsg1/include/slepcversion.h	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcversion.h	2019-02-11 16:58:45.000000000 +0000
@@ -4,17 +4,17 @@
 #define SLEPC_VERSION_RELEASE    1
 #define SLEPC_VERSION_MAJOR      3
 #define SLEPC_VERSION_MINOR      10
-#define SLEPC_VERSION_SUBMINOR   1
+#define SLEPC_VERSION_SUBMINOR   2
 #define SLEPC_VERSION_PATCH      0
 #define SLEPC_RELEASE_DATE       "September 18, 2018"
-#define SLEPC_VERSION_DATE       "oct 23, 2018"
+#define SLEPC_VERSION_DATE       "feb 11, 2019"
 
 #if !defined (SLEPC_VERSION_GIT)
-#define SLEPC_VERSION_GIT        "v3.10.1"
+#define SLEPC_VERSION_GIT        "v3.10.2"
 #endif
 
 #if !defined(SLEPC_VERSION_DATE_GIT)
-#define SLEPC_VERSION_DATE_GIT   "2018-10-23 12:21:56 +0200"
+#define SLEPC_VERSION_DATE_GIT   "2019-02-11 17:30:05 +0100"
 #endif
 
 #define SLEPC_VERSION_EQ(MAJOR,MINOR,SUBMINOR) \
diff -Nru slepc-3.10.1+dfsg1/include/slepcversion.h.html slepc-3.10.2+dfsg1/include/slepcversion.h.html
--- slepc-3.10.1+dfsg1/include/slepcversion.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/include/slepcversion.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,18 +4,18 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 
   4: #define SLEPC_VERSION_RELEASE    1
   5: #define SLEPC_VERSION_MAJOR      3
   6: #define SLEPC_VERSION_MINOR      10
-  7: #define SLEPC_VERSION_SUBMINOR   1
+  7: #define SLEPC_VERSION_SUBMINOR   2
   8: #define SLEPC_VERSION_PATCH      0
   9: #define SLEPC_RELEASE_DATE       "September 18, 2018"
  10: #define SLEPC_VERSION_DATE       "unknown"
diff -Nru slepc-3.10.1+dfsg1/makefile slepc-3.10.2+dfsg1/makefile
--- slepc-3.10.1+dfsg1/makefile	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/makefile	2019-02-11 16:58:45.000000000 +0000
@@ -44,11 +44,12 @@
            echo "  Send all contents of ./${PETSC_ARCH}/lib/slepc/conf to slepc-maint@upv.es" 2>&1 | tee -a ./${PETSC_ARCH}/lib/slepc/conf/make.log;\
            printf "************************************************************************"${PETSC_TEXT_NORMAL}"\n" 2>&1 | tee -a ./${PETSC_ARCH}/lib/slepc/conf/make.log; \
 	 elif [ "${SLEPC_DESTDIR}" = "${SLEPC_DIR}/${PETSC_ARCH}" ]; then \
-           echo "Now to check if the library is working do: make check";\
+           echo "Now to check if the library is working do:";\
+           echo "make SLEPC_DIR=${SLEPC_DIR} PETSC_DIR=${PETSC_DIR} check";\
            echo "=========================================";\
 	 else \
 	   echo "Now to install the library do:";\
-	   echo "make SLEPC_DIR=${PWD} PETSC_DIR=${PETSC_DIR} install";\
+	   echo "make SLEPC_DIR=${SLEPC_DIR} PETSC_DIR=${PETSC_DIR} install";\
 	   echo "=========================================";\
 	 fi
 	@if test -s ./${PETSC_ARCH}/lib/slepc/conf/error.log; then exit 1; fi
diff -Nru slepc-3.10.1+dfsg1/PKG-INFO slepc-3.10.2+dfsg1/PKG-INFO
--- slepc-3.10.1+dfsg1/PKG-INFO	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/PKG-INFO	2019-02-11 16:58:45.000000000 +0000
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: slepc
-Version: 3.10.1
+Version: 3.10.2
 Summary: SLEPc: Scalable Library for Eigenvalue Problem Computations
 Home-page: http://slepc.upv.es/
 Author: Lisandro Dalcin
 Author-email: dalcinl@gmail.com
 License: BSD
-Download-URL: http://slepc.upv.es/download/distrib/slepc-3.10.1.tar.gz#egg=slepc-3.10.1
+Download-URL: http://slepc.upv.es/download/distrib/slepc-3.10.2.tar.gz#egg=slepc-3.10.2
 Description: SLEPc is a software library for the solution of large scale sparse
         eigenvalue problems on parallel computers. It is an extension of PETSc
         and can be used for either standard or generalized eigenproblems, with
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/index.html slepc-3.10.2+dfsg1/src/eps/examples/index.html
--- slepc-3.10.1+dfsg1/src/eps/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
tutorials/
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/makefile.html slepc-3.10.2+dfsg1/src/eps/examples/makefile.html --- slepc-3.10.1+dfsg1/src/eps/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/index.html slepc-3.10.2+dfsg1/src/eps/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/eps/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/eps/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test10.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test10.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test10.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test10.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test11.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test11.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test11.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test11.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test12.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test12.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test12.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test12.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test13.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test13.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test13.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test13.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test14.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test14.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test14.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test14.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test14f.F.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test14f.F.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test14f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test14f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test15f.F.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test15f.F.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test15f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test15f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test16.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test16.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test16.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test16.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test17.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test17.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test17.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test17.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test17f.F90.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test17f.F90.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test17f.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test17f.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test18.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test18.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test18.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test18.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test19.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test19.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test19.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test19.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test20.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test20.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test20.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test20.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test21.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test21.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test21.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test21.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test22.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test22.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test22.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test22.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test23.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test23.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test23.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test23.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test24.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test24.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test24.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test24.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test25.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test25.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test25.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test25.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test26.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test26.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test26.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test26.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test27.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test27.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test27.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test27.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test28.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test28.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test28.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test28.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test6.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test6.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test6.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test6.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test7f.F.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test7f.F.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test7f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test7f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test8.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test8.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test8.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test8.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tests/test9.c.html slepc-3.10.2+dfsg1/src/eps/examples/tests/test9.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tests/test9.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tests/test9.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex10.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex10.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex10.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex10.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex11.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex11.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex11.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex11.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex12.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex12.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex12.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex12.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex13.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex13.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex13.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex13.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex18.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex18.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex18.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex18.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex19.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex19.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex19.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex19.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex1.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex1.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex1f90.F90.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex1f90.F90.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex1f90.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex1f90.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex1f.F.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex1f.F.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex1f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex1f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex24.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex24.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex24.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex24.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex25.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex25.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex25.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex25.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex29.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex29.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex29.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex29.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex2.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex2.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex30.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex30.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex30.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex30.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex31.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex31.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex31.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex31.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex34.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex34.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex34.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex34.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex35.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex35.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex35.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex35.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex36.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex36.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex36.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex36.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex3.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex3.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex4.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex4.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex5.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex5.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex6f90.F90.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex6f90.F90.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex6f90.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex6f90.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex7.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex7.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex7.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex7.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex9.c.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex9.c.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/ex9.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/ex9.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/index.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/index.html
--- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/examples/tutorials/makefile.html slepc-3.10.2+dfsg1/src/eps/examples/tutorials/makefile.html --- slepc-3.10.1+dfsg1/src/eps/examples/tutorials/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/examples/tutorials/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90 slepc-3.10.2+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90
--- slepc-3.10.1+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90	2019-02-11 16:58:45.000000000 +0000
@@ -1,61 +1,73 @@
-      subroutine EPSArnoldiSetDelayed(a,b,z)
+      subroutine EPSLOBPCGSetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSArnoldiGetDelayed(a,b,z)
+      subroutine EPSLOBPCGGetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSPowerSetShiftType(a,b,z)
+      subroutine EPSLOBPCGSetRestart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSPowerShiftType b ! EPSPowerShiftType
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine EPSPowerGetShiftType(a,b,z)
+      subroutine EPSLOBPCGGetRestart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSPowerShiftType b ! EPSPowerShiftType
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine EPSPowerSetNonlinear(a,b,z)
+      subroutine EPSLOBPCGSetLocking(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSPowerGetNonlinear(a,b,z)
+      subroutine EPSLOBPCGGetLocking(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSPowerSetUpdate(a,b,z)
+      subroutine EPSBLOPEXSetBlockSize(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine EPSBLOPEXGetBlockSize(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine EPSArnoldiSetDelayed(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSPowerGetUpdate(a,b,z)
+      subroutine EPSArnoldiGetDelayed(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSPowerSetSNES(a,b,z)
+      subroutine EPSFEASTSetNumPoints(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       SNES b ! SNES
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSPowerGetSNES(a,b,z)
+      subroutine EPSFEASTGetNumPoints(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       SNES b ! SNES
+       PetscInt b ! PetscInt
        integer z
        end subroutine
       subroutine EPSBlzpackSetBlockSize(a,b,z)
@@ -70,188 +82,176 @@
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSJDSetKrylovStart(a,b,z)
+      subroutine EPSRQCGSetReset(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine EPSRQCGGetReset(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine EPSGDSetKrylovStart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSJDGetKrylovStart(a,b,z)
+      subroutine EPSGDGetKrylovStart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSJDSetBlockSize(a,b,z)
+      subroutine EPSGDSetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSJDGetBlockSize(a,b,z)
+      subroutine EPSGDGetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSJDSetRestart(a,b,c,z)
+      subroutine EPSGDSetRestart(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine EPSJDGetRestart(a,b,c,z)
+      subroutine EPSGDGetRestart(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine EPSJDSetInitialSize(a,b,z)
+      subroutine EPSGDSetInitialSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSJDGetInitialSize(a,b,z)
+      subroutine EPSGDGetInitialSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSJDSetFix(a,b,z)
+      subroutine EPSGDSetBOrth(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscReal b ! PetscReal
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSJDGetFix(a,b,z)
+      subroutine EPSGDGetBOrth(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscReal b ! PetscReal
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSJDSetConstCorrectionTol(a,b,z)
+      subroutine EPSGDSetDoubleExpansion(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSJDGetConstCorrectionTol(a,b,z)
+      subroutine EPSGDGetDoubleExpansion(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSJDSetBOrth(a,b,z)
+      subroutine EPSJDSetKrylovStart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSJDGetBOrth(a,b,z)
+      subroutine EPSJDGetKrylovStart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSRQCGSetReset(a,b,z)
+      subroutine EPSJDSetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSRQCGGetReset(a,b,z)
+      subroutine EPSJDGetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSCISSSetSizes(a,b,c,d,e,f,g,z)
+      subroutine EPSJDSetRestart(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-       PetscInt e ! PetscInt
-       PetscInt f ! PetscInt
-       PetscBool g ! PetscBool
        integer z
        end subroutine
-      subroutine EPSCISSGetSizes(a,b,c,d,e,f,g,z)
+      subroutine EPSJDGetRestart(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-       PetscInt e ! PetscInt
-       PetscInt f ! PetscInt
-       PetscBool g ! PetscBool
-       integer z
-       end subroutine
-      subroutine EPSCISSSetThreshold(a,b,c,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-       integer z
-       end subroutine
-      subroutine EPSCISSGetThreshold(a,b,c,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine EPSCISSSetRefinement(a,b,c,z)
+      subroutine EPSJDSetInitialSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine EPSCISSGetRefinement(a,b,c,z)
+      subroutine EPSJDGetInitialSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine EPSCISSSetUseST(a,b,z)
+      subroutine EPSJDSetFix(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine EPSCISSGetUseST(a,b,z)
+      subroutine EPSJDGetFix(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine EPSCISSSetQuadRule(a,b,z)
+      subroutine EPSJDSetConstCorrectionTol(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSCISSQuadRule b ! EPSCISSQuadRule
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSCISSGetQuadRule(a,b,z)
+      subroutine EPSJDGetConstCorrectionTol(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSCISSQuadRule b ! EPSCISSQuadRule
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSCISSSetExtraction(a,b,z)
+      subroutine EPSJDSetBOrth(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSCISSExtraction b ! EPSCISSExtraction
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSCISSGetExtraction(a,b,z)
+      subroutine EPSJDGetBOrth(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSCISSExtraction b ! EPSCISSExtraction
+       PetscBool b ! PetscBool
        integer z
        end subroutine
       subroutine EPSLanczosSetReorthog(a,b,z)
@@ -266,18 +266,6 @@
        EPSLanczosReorthogType b ! EPSLanczosReorthogType
        integer z
        end subroutine
-      subroutine EPSFEASTSetNumPoints(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine EPSFEASTGetNumPoints(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
       subroutine EPSKrylovSchurSetRestart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
@@ -363,92 +351,164 @@
        PetscBool i ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDSetKrylovStart(a,b,z)
+      subroutine EPSPowerSetShiftType(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSPowerShiftType b ! EPSPowerShiftType
+       integer z
+       end subroutine
+      subroutine EPSPowerGetShiftType(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSPowerShiftType b ! EPSPowerShiftType
+       integer z
+       end subroutine
+      subroutine EPSPowerSetNonlinear(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDGetKrylovStart(a,b,z)
+      subroutine EPSPowerGetNonlinear(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDSetBlockSize(a,b,z)
+      subroutine EPSPowerSetUpdate(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDGetBlockSize(a,b,z)
+      subroutine EPSPowerGetUpdate(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDSetRestart(a,b,c,z)
+      subroutine EPSPowerSetSNES(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       SNES b ! SNES
+       integer z
+       end subroutine
+      subroutine EPSPowerGetSNES(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       SNES b ! SNES
+       integer z
+       end subroutine
+      subroutine EPSCISSSetSizes(a,b,c,d,e,f,g,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
+       PetscInt e ! PetscInt
+       PetscInt f ! PetscInt
+       PetscBool g ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDGetRestart(a,b,c,z)
+      subroutine EPSCISSGetSizes(a,b,c,d,e,f,g,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
+       PetscInt e ! PetscInt
+       PetscInt f ! PetscInt
+       PetscBool g ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDSetInitialSize(a,b,z)
+      subroutine EPSCISSSetThreshold(a,b,c,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+       integer z
+       end subroutine
+      subroutine EPSCISSGetThreshold(a,b,c,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+       integer z
+       end subroutine
+      subroutine EPSCISSSetRefinement(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine EPSGDGetInitialSize(a,b,z)
+      subroutine EPSCISSGetRefinement(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine EPSGDSetBOrth(a,b,z)
+      subroutine EPSCISSSetUseST(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDGetBOrth(a,b,z)
+      subroutine EPSCISSGetUseST(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine EPSGDSetDoubleExpansion(a,b,z)
+      subroutine EPSCISSSetQuadRule(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       EPSCISSQuadRule b ! EPSCISSQuadRule
        integer z
        end subroutine
-      subroutine EPSGDGetDoubleExpansion(a,b,z)
+      subroutine EPSCISSGetQuadRule(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       EPSCISSQuadRule b ! EPSCISSQuadRule
        integer z
        end subroutine
-      subroutine EPSBLOPEXSetBlockSize(a,b,z)
+      subroutine EPSCISSSetExtraction(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSCISSExtraction b ! EPSCISSExtraction
+       integer z
+       end subroutine
+      subroutine EPSCISSGetExtraction(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSCISSExtraction b ! EPSCISSExtraction
+       integer z
+       end subroutine
+      subroutine EPSPRIMMESetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine EPSBLOPEXGetBlockSize(a,b,z)
+      subroutine EPSPRIMMEGetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        integer z
        end subroutine
+      subroutine EPSPRIMMESetMethod(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSPRIMMEMethod b ! EPSPRIMMEMethod
+       integer z
+       end subroutine
+      subroutine EPSPRIMMEGetMethod(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSPRIMMEMethod b ! EPSPRIMMEMethod
+       integer z
+       end subroutine
       subroutine EPSSetFromOptions(a,z)
       use slepcepsdef
        EPS a ! EPS
@@ -796,63 +856,3 @@
        PetscReal d ! PetscReal
        integer z
        end subroutine
-      subroutine EPSLOBPCGSetBlockSize(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine EPSLOBPCGGetBlockSize(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine EPSLOBPCGSetRestart(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscReal b ! PetscReal
-       integer z
-       end subroutine
-      subroutine EPSLOBPCGGetRestart(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscReal b ! PetscReal
-       integer z
-       end subroutine
-      subroutine EPSLOBPCGSetLocking(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscBool b ! PetscBool
-       integer z
-       end subroutine
-      subroutine EPSLOBPCGGetLocking(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscBool b ! PetscBool
-       integer z
-       end subroutine
-      subroutine EPSPRIMMESetBlockSize(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine EPSPRIMMEGetBlockSize(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine EPSPRIMMESetMethod(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSPRIMMEMethod b ! EPSPRIMMEMethod
-       integer z
-       end subroutine
-      subroutine EPSPRIMMEGetMethod(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSPRIMMEMethod b ! EPSPRIMMEMethod
-       integer z
-       end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/eps/f90-mod/index.html slepc-3.10.2+dfsg1/src/eps/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/eps/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/eps/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/eps/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/f90-mod/slepceps.h90.html slepc-3.10.2+dfsg1/src/eps/f90-mod/slepceps.h90.html
--- slepc-3.10.1+dfsg1/src/eps/f90-mod/slepceps.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/f90-mod/slepceps.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/f90-mod/slepceps.h.html slepc-3.10.2+dfsg1/src/eps/f90-mod/slepceps.h.html
--- slepc-3.10.1+dfsg1/src/eps/f90-mod/slepceps.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/f90-mod/slepceps.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/f90-mod/slepcepsmod.F.html slepc-3.10.2+dfsg1/src/eps/f90-mod/slepcepsmod.F.html
--- slepc-3.10.1+dfsg1/src/eps/f90-mod/slepcepsmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/f90-mod/slepcepsmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/index.html slepc-3.10.2+dfsg1/src/eps/impls/cg/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/cg/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/cg/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/lobpcg/index.html slepc-3.10.2+dfsg1/src/eps/impls/cg/lobpcg/index.html --- slepc-3.10.1+dfsg1/src/eps/impls/cg/lobpcg/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/cg/lobpcg/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html slepc-3.10.2+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html --- slepc-3.10.1+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/lobpcg/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/cg/lobpcg/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/cg/lobpcg/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/cg/lobpcg/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/cg/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/cg/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/cg/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/rqcg/index.html slepc-3.10.2+dfsg1/src/eps/impls/cg/rqcg/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/cg/rqcg/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/cg/rqcg/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/rqcg/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/cg/rqcg/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/cg/rqcg/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/cg/rqcg/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html slepc-3.10.2+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/ciss/ciss.c.html slepc-3.10.2+dfsg1/src/eps/impls/ciss/ciss.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/ciss/ciss.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/ciss/ciss.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/ciss/index.html slepc-3.10.2+dfsg1/src/eps/impls/ciss/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/ciss/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/ciss/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/ciss/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/ciss/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/ciss/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/ciss/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/davidson.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/davidson.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/davidson.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/davidson.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/davidson.h.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/davidson.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/davidson.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/davidson.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdgd2.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdgd2.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdgd2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdgd2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdinitv.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdinitv.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdinitv.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdinitv.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdschm.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdschm.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdschm.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdschm.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdutils.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdutils.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/dvdutils.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/dvdutils.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/gd/gd.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/gd/gd.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/gd/gd.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/gd/gd.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/gd/index.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/gd/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/gd/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/gd/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/gd/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/gd/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/davidson/gd/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/gd/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/index.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/jd/index.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/jd/index.html --- slepc-3.10.1+dfsg1/src/eps/impls/davidson/jd/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/jd/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/jd/jd.c.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/jd/jd.c.html --- slepc-3.10.1+dfsg1/src/eps/impls/davidson/jd/jd.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/jd/jd.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/jd/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/jd/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/jd/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/jd/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/davidson/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/davidson/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/davidson/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/davidson/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/arpack.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/arpack.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/arpack.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/arpack.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/arpackp.h.html slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/arpackp.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/arpackp.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/arpackp.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/index.html slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/external/arpack/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/external/arpack/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/blopex.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/blopex.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/blopex.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/blopex.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/index.html slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
   2: /* @@@ BLOPEX (version 1.1) LGPL Version 2.1 or above.See www.gnu.org. */
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
   2: /* @@@ BLOPEX (version 1.1) LGPL Version 2.1 or above.See www.gnu.org. */
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/slepc-interface.h.html slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/slepc-interface.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blopex/slepc-interface.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blopex/slepc-interface.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/blzpackp.h.html slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/blzpackp.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/blzpackp.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/blzpackp.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/index.html slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/external/blzpack/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/external/blzpack/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/feast/feast.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/feast/feast.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/feast/feast.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/feast/feast.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/feast/feastp.h.html slepc-3.10.2+dfsg1/src/eps/impls/external/feast/feastp.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/feast/feastp.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/feast/feastp.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/feast/index.html slepc-3.10.2+dfsg1/src/eps/impls/external/feast/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/feast/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/feast/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/feast/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/external/feast/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/external/feast/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/external/feast/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/index.html slepc-3.10.2+dfsg1/src/eps/impls/external/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/external/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/external/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/external/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/primme/index.html slepc-3.10.2+dfsg1/src/eps/impls/external/primme/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/primme/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/primme/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/primme/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/external/primme/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/external/primme/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/external/primme/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/primme/primme.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/primme/primme.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/primme/primme.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/primme/primme.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/index.html slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/trlan.c.html slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/trlan.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/trlan.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/trlan.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/trlanp.h.html slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/trlanp.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/external/trlan/trlanp.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/external/trlan/trlanp.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/index.html slepc-3.10.2+dfsg1/src/eps/impls/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html --- slepc-3.10.1+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/arnoldi/index.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/arnoldi/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/arnoldi/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/arnoldi/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/epskrylov.c.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/epskrylov.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/epskrylov.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/epskrylov.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/index.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/index.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/index.html --- slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html --- slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/lanczos/index.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/lanczos/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/lanczos/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/lanczos/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html --- slepc-3.10.1+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/lanczos/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/lanczos/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/lanczos/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/lanczos/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/krylov/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/krylov/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/krylov/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/krylov/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/lapack/index.html slepc-3.10.2+dfsg1/src/eps/impls/lapack/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/lapack/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/lapack/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/lapack/lapack.c.html slepc-3.10.2+dfsg1/src/eps/impls/lapack/lapack.c.html --- slepc-3.10.1+dfsg1/src/eps/impls/lapack/lapack.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/lapack/lapack.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/lapack/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/lapack/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/lapack/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/lapack/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/power/index.html slepc-3.10.2+dfsg1/src/eps/impls/power/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/power/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/power/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/power/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/power/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/power/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/power/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/power/power.c.html slepc-3.10.2+dfsg1/src/eps/impls/power/power.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/power/power.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/power/power.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/subspace/index.html slepc-3.10.2+dfsg1/src/eps/impls/subspace/index.html
--- slepc-3.10.1+dfsg1/src/eps/impls/subspace/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/subspace/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/subspace/makefile.html slepc-3.10.2+dfsg1/src/eps/impls/subspace/makefile.html --- slepc-3.10.1+dfsg1/src/eps/impls/subspace/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/impls/subspace/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/impls/subspace/subspace.c.html slepc-3.10.2+dfsg1/src/eps/impls/subspace/subspace.c.html
--- slepc-3.10.1+dfsg1/src/eps/impls/subspace/subspace.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/impls/subspace/subspace.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/index.html slepc-3.10.2+dfsg1/src/eps/index.html
--- slepc-3.10.1+dfsg1/src/eps/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/dlregiseps.c.html slepc-3.10.2+dfsg1/src/eps/interface/dlregiseps.c.html --- slepc-3.10.1+dfsg1/src/eps/interface/dlregiseps.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/interface/dlregiseps.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epsbasic.c.html slepc-3.10.2+dfsg1/src/eps/interface/epsbasic.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epsbasic.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epsbasic.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epsdefault.c.html slepc-3.10.2+dfsg1/src/eps/interface/epsdefault.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epsdefault.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epsdefault.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epsmon.c.html slepc-3.10.2+dfsg1/src/eps/interface/epsmon.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epsmon.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epsmon.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epsopts.c.html slepc-3.10.2+dfsg1/src/eps/interface/epsopts.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epsopts.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epsopts.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epsregis.c.html slepc-3.10.2+dfsg1/src/eps/interface/epsregis.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epsregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epsregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epssetup.c.html slepc-3.10.2+dfsg1/src/eps/interface/epssetup.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epssetup.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epssetup.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epssolve.c.html slepc-3.10.2+dfsg1/src/eps/interface/epssolve.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epssolve.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epssolve.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/epsview.c.html slepc-3.10.2+dfsg1/src/eps/interface/epsview.c.html
--- slepc-3.10.1+dfsg1/src/eps/interface/epsview.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/epsview.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/index.html slepc-3.10.2+dfsg1/src/eps/interface/index.html
--- slepc-3.10.1+dfsg1/src/eps/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.10.1+dfsg1/src/eps/interface/makefile.html slepc-3.10.2+dfsg1/src/eps/interface/makefile.html --- slepc-3.10.1+dfsg1/src/eps/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/eps/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/eps/makefile.html slepc-3.10.2+dfsg1/src/eps/makefile.html
--- slepc-3.10.1+dfsg1/src/eps/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/eps/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/index.html slepc-3.10.2+dfsg1/src/index.html
--- slepc-3.10.1+dfsg1/src/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

sys/
eps/
diff -Nru slepc-3.10.1+dfsg1/src/lme/examples/index.html slepc-3.10.2+dfsg1/src/lme/examples/index.html --- slepc-3.10.1+dfsg1/src/lme/examples/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/examples/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,8 +4,8 @@ Generic SLEPc Manual Pages -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
tutorials/
diff -Nru slepc-3.10.1+dfsg1/src/lme/examples/makefile.html slepc-3.10.2+dfsg1/src/lme/examples/makefile.html --- slepc-3.10.1+dfsg1/src/lme/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/lme/examples/tests/index.html slepc-3.10.2+dfsg1/src/lme/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/lme/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/src/lme/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/lme/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/lme/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/lme/examples/tutorials/ex32.c.html slepc-3.10.2+dfsg1/src/lme/examples/tutorials/ex32.c.html
--- slepc-3.10.1+dfsg1/src/lme/examples/tutorials/ex32.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/examples/tutorials/ex32.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/examples/tutorials/index.html slepc-3.10.2+dfsg1/src/lme/examples/tutorials/index.html
--- slepc-3.10.1+dfsg1/src/lme/examples/tutorials/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/examples/tutorials/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/src/lme/examples/tutorials/makefile.html slepc-3.10.2+dfsg1/src/lme/examples/tutorials/makefile.html --- slepc-3.10.1+dfsg1/src/lme/examples/tutorials/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/examples/tutorials/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/lme/f90-mod/index.html slepc-3.10.2+dfsg1/src/lme/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/lme/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/src/lme/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/lme/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/lme/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/lme/f90-mod/slepclme.h90.html slepc-3.10.2+dfsg1/src/lme/f90-mod/slepclme.h90.html
--- slepc-3.10.1+dfsg1/src/lme/f90-mod/slepclme.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/f90-mod/slepclme.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/f90-mod/slepclme.h.html slepc-3.10.2+dfsg1/src/lme/f90-mod/slepclme.h.html
--- slepc-3.10.1+dfsg1/src/lme/f90-mod/slepclme.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/f90-mod/slepclme.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/f90-mod/slepclmemod.F.html slepc-3.10.2+dfsg1/src/lme/f90-mod/slepclmemod.F.html
--- slepc-3.10.1+dfsg1/src/lme/f90-mod/slepclmemod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/f90-mod/slepclmemod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/impls/index.html slepc-3.10.2+dfsg1/src/lme/impls/index.html
--- slepc-3.10.1+dfsg1/src/lme/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/src/lme/impls/krylov/index.html slepc-3.10.2+dfsg1/src/lme/impls/krylov/index.html --- slepc-3.10.1+dfsg1/src/lme/impls/krylov/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/impls/krylov/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/src/lme/impls/krylov/lmekrylov.c.html slepc-3.10.2+dfsg1/src/lme/impls/krylov/lmekrylov.c.html --- slepc-3.10.1+dfsg1/src/lme/impls/krylov/lmekrylov.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/impls/krylov/lmekrylov.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/impls/krylov/makefile.html slepc-3.10.2+dfsg1/src/lme/impls/krylov/makefile.html
--- slepc-3.10.1+dfsg1/src/lme/impls/krylov/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/impls/krylov/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/lme/impls/makefile.html slepc-3.10.2+dfsg1/src/lme/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/lme/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/lme/index.html slepc-3.10.2+dfsg1/src/lme/index.html
--- slepc-3.10.1+dfsg1/src/lme/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/dlregislme.c.html slepc-3.10.2+dfsg1/src/lme/interface/dlregislme.c.html --- slepc-3.10.1+dfsg1/src/lme/interface/dlregislme.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/interface/dlregislme.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/index.html slepc-3.10.2+dfsg1/src/lme/interface/index.html
--- slepc-3.10.1+dfsg1/src/lme/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/lmebasic.c.html slepc-3.10.2+dfsg1/src/lme/interface/lmebasic.c.html --- slepc-3.10.1+dfsg1/src/lme/interface/lmebasic.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/lme/interface/lmebasic.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/lmedense.c.html slepc-3.10.2+dfsg1/src/lme/interface/lmedense.c.html
--- slepc-3.10.1+dfsg1/src/lme/interface/lmedense.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/lmedense.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/lmemon.c.html slepc-3.10.2+dfsg1/src/lme/interface/lmemon.c.html
--- slepc-3.10.1+dfsg1/src/lme/interface/lmemon.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/lmemon.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/lmeopts.c.html slepc-3.10.2+dfsg1/src/lme/interface/lmeopts.c.html
--- slepc-3.10.1+dfsg1/src/lme/interface/lmeopts.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/lmeopts.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/lmeregis.c.html slepc-3.10.2+dfsg1/src/lme/interface/lmeregis.c.html
--- slepc-3.10.1+dfsg1/src/lme/interface/lmeregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/lmeregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/lmesetup.c.html slepc-3.10.2+dfsg1/src/lme/interface/lmesetup.c.html
--- slepc-3.10.1+dfsg1/src/lme/interface/lmesetup.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/lmesetup.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/lmesolve.c.html slepc-3.10.2+dfsg1/src/lme/interface/lmesolve.c.html
--- slepc-3.10.1+dfsg1/src/lme/interface/lmesolve.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/lmesolve.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/lme/interface/makefile.html slepc-3.10.2+dfsg1/src/lme/interface/makefile.html
--- slepc-3.10.1+dfsg1/src/lme/interface/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/interface/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/lme/makefile.html slepc-3.10.2+dfsg1/src/lme/makefile.html
--- slepc-3.10.1+dfsg1/src/lme/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/lme/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/makefile.html slepc-3.10.2+dfsg1/src/makefile.html
--- slepc-3.10.1+dfsg1/src/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/index.html slepc-3.10.2+dfsg1/src/mfn/examples/index.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
tutorials/
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/makefile.html slepc-3.10.2+dfsg1/src/mfn/examples/makefile.html --- slepc-3.10.1+dfsg1/src/mfn/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tests/index.html slepc-3.10.2+dfsg1/src/mfn/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/mfn/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/mfn/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/mfn/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/mfn/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/mfn/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tests/test3f.F.html slepc-3.10.2+dfsg1/src/mfn/examples/tests/test3f.F.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tests/test3f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tests/test3f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex23.c.html slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex23.c.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex23.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex23.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex23f90.F90.html slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex23f90.F90.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex23f90.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex23f90.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex26.c.html slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex26.c.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex26.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex26.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex37.c.html slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex37.c.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex37.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex37.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex39.c.html slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex39.c.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/ex39.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/ex39.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/index.html slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/index.html
--- slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/makefile.html slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/makefile.html --- slepc-3.10.1+dfsg1/src/mfn/examples/tutorials/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/examples/tutorials/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/f90-mod/index.html slepc-3.10.2+dfsg1/src/mfn/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/mfn/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/mfn/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/mfn/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html slepc-3.10.2+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html
--- slepc-3.10.1+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/f90-mod/slepcmfn.h.html slepc-3.10.2+dfsg1/src/mfn/f90-mod/slepcmfn.h.html
--- slepc-3.10.1+dfsg1/src/mfn/f90-mod/slepcmfn.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/f90-mod/slepcmfn.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/f90-mod/slepcmfnmod.F.html slepc-3.10.2+dfsg1/src/mfn/f90-mod/slepcmfnmod.F.html
--- slepc-3.10.1+dfsg1/src/mfn/f90-mod/slepcmfnmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/f90-mod/slepcmfnmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/expokit/index.html slepc-3.10.2+dfsg1/src/mfn/impls/expokit/index.html
--- slepc-3.10.1+dfsg1/src/mfn/impls/expokit/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/impls/expokit/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/expokit/makefile.html slepc-3.10.2+dfsg1/src/mfn/impls/expokit/makefile.html --- slepc-3.10.1+dfsg1/src/mfn/impls/expokit/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/impls/expokit/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html slepc-3.10.2+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html
--- slepc-3.10.1+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/index.html slepc-3.10.2+dfsg1/src/mfn/impls/index.html
--- slepc-3.10.1+dfsg1/src/mfn/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/krylov/index.html slepc-3.10.2+dfsg1/src/mfn/impls/krylov/index.html --- slepc-3.10.1+dfsg1/src/mfn/impls/krylov/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/impls/krylov/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/krylov/makefile.html slepc-3.10.2+dfsg1/src/mfn/impls/krylov/makefile.html --- slepc-3.10.1+dfsg1/src/mfn/impls/krylov/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/impls/krylov/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html slepc-3.10.2+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html
--- slepc-3.10.1+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/impls/makefile.html slepc-3.10.2+dfsg1/src/mfn/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/mfn/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/index.html slepc-3.10.2+dfsg1/src/mfn/index.html
--- slepc-3.10.1+dfsg1/src/mfn/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/dlregismfn.c.html slepc-3.10.2+dfsg1/src/mfn/interface/dlregismfn.c.html --- slepc-3.10.1+dfsg1/src/mfn/interface/dlregismfn.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/interface/dlregismfn.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/index.html slepc-3.10.2+dfsg1/src/mfn/interface/index.html
--- slepc-3.10.1+dfsg1/src/mfn/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/makefile.html slepc-3.10.2+dfsg1/src/mfn/interface/makefile.html --- slepc-3.10.1+dfsg1/src/mfn/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/mfn/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/mfnbasic.c.html slepc-3.10.2+dfsg1/src/mfn/interface/mfnbasic.c.html
--- slepc-3.10.1+dfsg1/src/mfn/interface/mfnbasic.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/interface/mfnbasic.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/mfnmon.c.html slepc-3.10.2+dfsg1/src/mfn/interface/mfnmon.c.html
--- slepc-3.10.1+dfsg1/src/mfn/interface/mfnmon.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/interface/mfnmon.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/mfnopts.c.html slepc-3.10.2+dfsg1/src/mfn/interface/mfnopts.c.html
--- slepc-3.10.1+dfsg1/src/mfn/interface/mfnopts.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/interface/mfnopts.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/mfnregis.c.html slepc-3.10.2+dfsg1/src/mfn/interface/mfnregis.c.html
--- slepc-3.10.1+dfsg1/src/mfn/interface/mfnregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/interface/mfnregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/mfnsetup.c.html slepc-3.10.2+dfsg1/src/mfn/interface/mfnsetup.c.html
--- slepc-3.10.1+dfsg1/src/mfn/interface/mfnsetup.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/interface/mfnsetup.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/interface/mfnsolve.c.html slepc-3.10.2+dfsg1/src/mfn/interface/mfnsolve.c.html
--- slepc-3.10.1+dfsg1/src/mfn/interface/mfnsolve.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/interface/mfnsolve.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/mfn/makefile.html slepc-3.10.2+dfsg1/src/mfn/makefile.html
--- slepc-3.10.1+dfsg1/src/mfn/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/mfn/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/index.html slepc-3.10.2+dfsg1/src/nep/examples/index.html
--- slepc-3.10.1+dfsg1/src/nep/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
tutorials/
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/makefile.html slepc-3.10.2+dfsg1/src/nep/examples/makefile.html --- slepc-3.10.1+dfsg1/src/nep/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/nlevp/gun.c.html slepc-3.10.2+dfsg1/src/nep/examples/nlevp/gun.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/nlevp/gun.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/nlevp/gun.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/nlevp/index.html slepc-3.10.2+dfsg1/src/nep/examples/nlevp/index.html
--- slepc-3.10.1+dfsg1/src/nep/examples/nlevp/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/nlevp/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/nlevp/loaded_string.c.html slepc-3.10.2+dfsg1/src/nep/examples/nlevp/loaded_string.c.html --- slepc-3.10.1+dfsg1/src/nep/examples/nlevp/loaded_string.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/examples/nlevp/loaded_string.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/nlevp/makefile.html slepc-3.10.2+dfsg1/src/nep/examples/nlevp/makefile.html
--- slepc-3.10.1+dfsg1/src/nep/examples/nlevp/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/nlevp/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/index.html slepc-3.10.2+dfsg1/src/nep/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/nep/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/nep/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test10.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test10.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test10.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test10.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test11.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test11.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test11.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test11.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test2f.F.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test2f.F.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test2f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test2f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test6.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test6.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test6.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test6.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test7.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test7.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test7.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test7.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test8.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test8.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test8.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test8.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tests/test9.c.html slepc-3.10.2+dfsg1/src/nep/examples/tests/test9.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tests/test9.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tests/test9.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex20.c.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex20.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex20.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex20.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex20f90.F90.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex20f90.F90.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex20f90.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex20f90.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex21.c.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex21.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex21.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex21.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex22.c.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex22.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex22.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex22.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex22f90.F90.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex22f90.F90.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex22f90.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex22f90.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex27.c.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex27.c.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex27.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex27.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex27f90.F90.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex27f90.F90.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/ex27f90.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/ex27f90.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/index.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/index.html
--- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/examples/tutorials/makefile.html slepc-3.10.2+dfsg1/src/nep/examples/tutorials/makefile.html --- slepc-3.10.1+dfsg1/src/nep/examples/tutorials/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/examples/tutorials/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90 slepc-3.10.2+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90
--- slepc-3.10.1+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90	2019-02-11 16:58:45.000000000 +0000
@@ -1,125 +1,3 @@
-      subroutine NEPRIISetMaximumIterations(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine NEPRIIGetMaximumIterations(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine NEPRIISetLagPreconditioner(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine NEPRIIGetLagPreconditioner(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine NEPRIISetConstCorrectionTol(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscBool b ! PetscBool
-       integer z
-       end subroutine
-      subroutine NEPRIIGetConstCorrectionTol(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscBool b ! PetscBool
-       integer z
-       end subroutine
-      subroutine NEPRIISetKSP(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       KSP b ! KSP
-       integer z
-       end subroutine
-      subroutine NEPRIIGetKSP(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       KSP b ! KSP
-       integer z
-       end subroutine
-      subroutine NEPSLPSetEPS(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       EPS b ! EPS
-       integer z
-       end subroutine
-      subroutine NEPSLPGetEPS(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       EPS b ! EPS
-       integer z
-       end subroutine
-      subroutine NEPSLPSetKSP(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       KSP b ! KSP
-       integer z
-       end subroutine
-      subroutine NEPSLPGetKSP(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       KSP b ! KSP
-       integer z
-       end subroutine
-      subroutine NEPCISSSetSizes(a,b,c,d,e,f,g,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-       PetscInt e ! PetscInt
-       PetscInt f ! PetscInt
-       PetscBool g ! PetscBool
-       integer z
-       end subroutine
-      subroutine NEPCISSGetSizes(a,b,c,d,e,f,g,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-       PetscInt e ! PetscInt
-       PetscInt f ! PetscInt
-       PetscBool g ! PetscBool
-       integer z
-       end subroutine
-      subroutine NEPCISSSetThreshold(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-       integer z
-       end subroutine
-      subroutine NEPCISSGetThreshold(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-       integer z
-       end subroutine
-      subroutine NEPCISSSetRefinement(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       integer z
-       end subroutine
-      subroutine NEPCISSGetRefinement(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       integer z
-       end subroutine
       subroutine NEPCreate(a,b,z)
       use slepcnepdef
        integer a ! MPI_Comm
@@ -489,6 +367,54 @@
        KSP b ! KSP
        integer z
        end subroutine
+      subroutine NEPRIISetMaximumIterations(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine NEPRIIGetMaximumIterations(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine NEPRIISetLagPreconditioner(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine NEPRIIGetLagPreconditioner(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine NEPRIISetConstCorrectionTol(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscBool b ! PetscBool
+       integer z
+       end subroutine
+      subroutine NEPRIIGetConstCorrectionTol(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscBool b ! PetscBool
+       integer z
+       end subroutine
+      subroutine NEPRIISetKSP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       KSP b ! KSP
+       integer z
+       end subroutine
+      subroutine NEPRIIGetKSP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       KSP b ! KSP
+       integer z
+       end subroutine
       subroutine NEPInterpolSetInterpolation(a,b,c,z)
       use slepcnepdef
        NEP a ! NEP
@@ -515,3 +441,77 @@
        PEP b ! PEP
        integer z
        end subroutine
+      subroutine NEPSLPSetEPS(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       EPS b ! EPS
+       integer z
+       end subroutine
+      subroutine NEPSLPGetEPS(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       EPS b ! EPS
+       integer z
+       end subroutine
+      subroutine NEPSLPSetKSP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       KSP b ! KSP
+       integer z
+       end subroutine
+      subroutine NEPSLPGetKSP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       KSP b ! KSP
+       integer z
+       end subroutine
+      subroutine NEPCISSSetSizes(a,b,c,d,e,f,g,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
+       PetscInt e ! PetscInt
+       PetscInt f ! PetscInt
+       PetscBool g ! PetscBool
+       integer z
+       end subroutine
+      subroutine NEPCISSGetSizes(a,b,c,d,e,f,g,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
+       PetscInt e ! PetscInt
+       PetscInt f ! PetscInt
+       PetscBool g ! PetscBool
+       integer z
+       end subroutine
+      subroutine NEPCISSSetThreshold(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+       integer z
+       end subroutine
+      subroutine NEPCISSGetThreshold(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+       integer z
+       end subroutine
+      subroutine NEPCISSSetRefinement(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       integer z
+       end subroutine
+      subroutine NEPCISSGetRefinement(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       integer z
+       end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/nep/f90-mod/index.html slepc-3.10.2+dfsg1/src/nep/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/nep/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/nep/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/nep/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/f90-mod/slepcnep.h90.html slepc-3.10.2+dfsg1/src/nep/f90-mod/slepcnep.h90.html
--- slepc-3.10.1+dfsg1/src/nep/f90-mod/slepcnep.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/f90-mod/slepcnep.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/f90-mod/slepcnep.h.html slepc-3.10.2+dfsg1/src/nep/f90-mod/slepcnep.h.html
--- slepc-3.10.1+dfsg1/src/nep/f90-mod/slepcnep.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/f90-mod/slepcnep.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/f90-mod/slepcnepmod.F.html slepc-3.10.2+dfsg1/src/nep/f90-mod/slepcnepmod.F.html
--- slepc-3.10.1+dfsg1/src/nep/f90-mod/slepcnepmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/f90-mod/slepcnepmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/ciss/index.html slepc-3.10.2+dfsg1/src/nep/impls/ciss/index.html
--- slepc-3.10.1+dfsg1/src/nep/impls/ciss/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/ciss/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/ciss/makefile.html slepc-3.10.2+dfsg1/src/nep/impls/ciss/makefile.html --- slepc-3.10.1+dfsg1/src/nep/impls/ciss/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/impls/ciss/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/ciss/nciss.c.html slepc-3.10.2+dfsg1/src/nep/impls/ciss/nciss.c.html
--- slepc-3.10.1+dfsg1/src/nep/impls/ciss/nciss.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/ciss/nciss.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/index.html slepc-3.10.2+dfsg1/src/nep/impls/index.html
--- slepc-3.10.1+dfsg1/src/nep/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/interpol/index.html slepc-3.10.2+dfsg1/src/nep/impls/interpol/index.html --- slepc-3.10.1+dfsg1/src/nep/impls/interpol/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/impls/interpol/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/interpol/interpol.c.html slepc-3.10.2+dfsg1/src/nep/impls/interpol/interpol.c.html --- slepc-3.10.1+dfsg1/src/nep/impls/interpol/interpol.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/impls/interpol/interpol.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/interpol/makefile.html slepc-3.10.2+dfsg1/src/nep/impls/interpol/makefile.html
--- slepc-3.10.1+dfsg1/src/nep/impls/interpol/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/interpol/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/makefile.html slepc-3.10.2+dfsg1/src/nep/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/nep/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/narnoldi/index.html slepc-3.10.2+dfsg1/src/nep/impls/narnoldi/index.html
--- slepc-3.10.1+dfsg1/src/nep/impls/narnoldi/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/narnoldi/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/narnoldi/makefile.html slepc-3.10.2+dfsg1/src/nep/impls/narnoldi/makefile.html --- slepc-3.10.1+dfsg1/src/nep/impls/narnoldi/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/impls/narnoldi/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html slepc-3.10.2+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html
--- slepc-3.10.1+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/nepdefl.c.html slepc-3.10.2+dfsg1/src/nep/impls/nepdefl.c.html
--- slepc-3.10.1+dfsg1/src/nep/impls/nepdefl.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/nepdefl.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/nepdefl.h.html slepc-3.10.2+dfsg1/src/nep/impls/nepdefl.h.html
--- slepc-3.10.1+dfsg1/src/nep/impls/nepdefl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/nepdefl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/nleigs/index.html slepc-3.10.2+dfsg1/src/nep/impls/nleigs/index.html
--- slepc-3.10.1+dfsg1/src/nep/impls/nleigs/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/nleigs/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/nleigs/makefile.html slepc-3.10.2+dfsg1/src/nep/impls/nleigs/makefile.html --- slepc-3.10.1+dfsg1/src/nep/impls/nleigs/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/impls/nleigs/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/nleigs/nleigs.c.html slepc-3.10.2+dfsg1/src/nep/impls/nleigs/nleigs.c.html
--- slepc-3.10.1+dfsg1/src/nep/impls/nleigs/nleigs.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/nleigs/nleigs.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/rii/index.html slepc-3.10.2+dfsg1/src/nep/impls/rii/index.html
--- slepc-3.10.1+dfsg1/src/nep/impls/rii/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/rii/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/rii/makefile.html slepc-3.10.2+dfsg1/src/nep/impls/rii/makefile.html --- slepc-3.10.1+dfsg1/src/nep/impls/rii/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/impls/rii/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/rii/rii.c.html slepc-3.10.2+dfsg1/src/nep/impls/rii/rii.c.html
--- slepc-3.10.1+dfsg1/src/nep/impls/rii/rii.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/rii/rii.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/slp/index.html slepc-3.10.2+dfsg1/src/nep/impls/slp/index.html
--- slepc-3.10.1+dfsg1/src/nep/impls/slp/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/slp/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/slp/makefile.html slepc-3.10.2+dfsg1/src/nep/impls/slp/makefile.html --- slepc-3.10.1+dfsg1/src/nep/impls/slp/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/impls/slp/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/impls/slp/slp.c.html slepc-3.10.2+dfsg1/src/nep/impls/slp/slp.c.html
--- slepc-3.10.1+dfsg1/src/nep/impls/slp/slp.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/impls/slp/slp.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/index.html slepc-3.10.2+dfsg1/src/nep/index.html
--- slepc-3.10.1+dfsg1/src/nep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/dlregisnep.c.html slepc-3.10.2+dfsg1/src/nep/interface/dlregisnep.c.html --- slepc-3.10.1+dfsg1/src/nep/interface/dlregisnep.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/interface/dlregisnep.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/index.html slepc-3.10.2+dfsg1/src/nep/interface/index.html
--- slepc-3.10.1+dfsg1/src/nep/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/makefile.html slepc-3.10.2+dfsg1/src/nep/interface/makefile.html --- slepc-3.10.1+dfsg1/src/nep/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/nep/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepbasic.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepbasic.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepbasic.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepbasic.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepdefault.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepdefault.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepdefault.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepdefault.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepmon.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepmon.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepmon.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepmon.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepopts.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepopts.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepopts.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepopts.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/neprefine.c.html slepc-3.10.2+dfsg1/src/nep/interface/neprefine.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/neprefine.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/neprefine.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepregis.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepregis.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepsetup.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepsetup.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepsetup.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepsetup.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepsolve.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepsolve.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepsolve.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepsolve.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/interface/nepview.c.html slepc-3.10.2+dfsg1/src/nep/interface/nepview.c.html
--- slepc-3.10.1+dfsg1/src/nep/interface/nepview.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/interface/nepview.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/nep/makefile.html slepc-3.10.2+dfsg1/src/nep/makefile.html
--- slepc-3.10.1+dfsg1/src/nep/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/nep/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/index.html slepc-3.10.2+dfsg1/src/pep/examples/index.html
--- slepc-3.10.1+dfsg1/src/pep/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
tutorials/
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/makefile.html slepc-3.10.2+dfsg1/src/pep/examples/makefile.html --- slepc-3.10.1+dfsg1/src/pep/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/acoustic_wave_1d.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/acoustic_wave_1d.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/acoustic_wave_1d.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/acoustic_wave_1d.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/acoustic_wave_2d.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/acoustic_wave_2d.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/acoustic_wave_2d.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/acoustic_wave_2d.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/butterfly.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/butterfly.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/butterfly.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/butterfly.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/damped_beam.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/damped_beam.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/damped_beam.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/damped_beam.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/index.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/index.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/loaded_string.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/loaded_string.c.html --- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/loaded_string.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/loaded_string.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/makefile.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/makefile.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/pdde_stability.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/pdde_stability.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/pdde_stability.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/pdde_stability.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/planar_waveguide.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/planar_waveguide.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/planar_waveguide.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/planar_waveguide.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/sleeper.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/sleeper.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/sleeper.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/sleeper.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/spring.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/spring.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/spring.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/spring.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/nlevp/wiresaw.c.html slepc-3.10.2+dfsg1/src/pep/examples/nlevp/wiresaw.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/nlevp/wiresaw.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/nlevp/wiresaw.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/index.html slepc-3.10.2+dfsg1/src/pep/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/pep/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/pep/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/pep/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/pep/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/pep/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/test3f.F.html slepc-3.10.2+dfsg1/src/pep/examples/tests/test3f.F.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/test3f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/test3f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/pep/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/pep/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tests/test6.c.html slepc-3.10.2+dfsg1/src/pep/examples/tests/test6.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tests/test6.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tests/test6.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex16.c.html slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex16.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex16.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex16.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex16f90.F90.html slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex16f90.F90.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex16f90.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex16f90.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex17.c.html slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex17.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex17.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex17.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex28.c.html slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex28.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex28.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex28.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex38.c.html slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex38.c.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tutorials/ex38.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tutorials/ex38.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tutorials/index.html slepc-3.10.2+dfsg1/src/pep/examples/tutorials/index.html
--- slepc-3.10.1+dfsg1/src/pep/examples/tutorials/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/examples/tutorials/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/examples/tutorials/makefile.html slepc-3.10.2+dfsg1/src/pep/examples/tutorials/makefile.html --- slepc-3.10.1+dfsg1/src/pep/examples/tutorials/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/examples/tutorials/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90 slepc-3.10.2+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90
--- slepc-3.10.1+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90	2019-02-11 16:58:45.000000000 +0000
@@ -1,141 +1,165 @@
-      subroutine PEPTOARSetRestart(a,b,z)
+      subroutine PEPSTOARSetLocking(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscReal b ! PetscReal
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPTOARGetRestart(a,b,z)
+      subroutine PEPSTOARGetLocking(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscReal b ! PetscReal
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPTOARSetLocking(a,b,z)
+      subroutine PEPSTOARSetDetectZeros(a,b,z)
       use slepcpepdef
        PEP a ! PEP
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPTOARGetLocking(a,b,z)
+      subroutine PEPSTOARGetDetectZeros(a,b,z)
       use slepcpepdef
        PEP a ! PEP
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPLinearSetLinearization(a,b,c,z)
+      subroutine PEPSTOARSetLinearization(a,b,c,z)
       use slepcpepdef
        PEP a ! PEP
        PetscReal b ! PetscReal
        PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine PEPLinearGetLinearization(a,b,c,z)
+      subroutine PEPSTOARGetLinearization(a,b,c,z)
       use slepcpepdef
        PEP a ! PEP
        PetscReal b ! PetscReal
        PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine PEPLinearSetExplicitMatrix(a,b,z)
+      subroutine PEPSTOARSetDimensions(a,b,c,d,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
        integer z
        end subroutine
-      subroutine PEPLinearGetExplicitMatrix(a,b,z)
+      subroutine PEPSTOARGetDimensions(a,b,c,d,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
        integer z
        end subroutine
-      subroutine PEPLinearSetEPS(a,b,z)
+      subroutine PEPJDSetRestart(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       EPS b ! EPS
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine PEPLinearGetEPS(a,b,z)
+      subroutine PEPJDGetRestart(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       EPS b ! EPS
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine PEPSTOARSetLocking(a,b,z)
+      subroutine PEPJDSetFix(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscBool b ! PetscBool
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine PEPSTOARGetLocking(a,b,z)
+      subroutine PEPJDGetFix(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscBool b ! PetscBool
+       PetscReal b ! PetscReal
        integer z
        end subroutine
-      subroutine PEPSTOARSetDetectZeros(a,b,z)
+      subroutine PEPTOARSetRestart(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+       integer z
+       end subroutine
+      subroutine PEPTOARGetRestart(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+       integer z
+       end subroutine
+      subroutine PEPTOARSetLocking(a,b,z)
       use slepcpepdef
        PEP a ! PEP
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPSTOARGetDetectZeros(a,b,z)
+      subroutine PEPTOARGetLocking(a,b,z)
       use slepcpepdef
        PEP a ! PEP
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPSTOARSetLinearization(a,b,c,z)
+      subroutine PEPQArnoldiSetRestart(a,b,z)
       use slepcpepdef
        PEP a ! PEP
        PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine PEPSTOARGetLinearization(a,b,c,z)
+      subroutine PEPQArnoldiGetRestart(a,b,z)
       use slepcpepdef
        PEP a ! PEP
        PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine PEPSTOARSetDimensions(a,b,c,d,z)
+      subroutine PEPQArnoldiSetLocking(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPSTOARGetDimensions(a,b,c,d,z)
+      subroutine PEPQArnoldiGetLocking(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPJDSetRestart(a,b,z)
+      subroutine PEPLinearSetLinearization(a,b,c,z)
       use slepcpepdef
        PEP a ! PEP
        PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine PEPJDGetRestart(a,b,z)
+      subroutine PEPLinearGetLinearization(a,b,c,z)
       use slepcpepdef
        PEP a ! PEP
        PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine PEPJDSetFix(a,b,z)
+      subroutine PEPLinearSetExplicitMatrix(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscReal b ! PetscReal
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine PEPJDGetFix(a,b,z)
+      subroutine PEPLinearGetExplicitMatrix(a,b,z)
       use slepcpepdef
        PEP a ! PEP
-       PetscReal b ! PetscReal
+       PetscBool b ! PetscBool
+       integer z
+       end subroutine
+      subroutine PEPLinearSetEPS(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       EPS b ! EPS
+       integer z
+       end subroutine
+      subroutine PEPLinearGetEPS(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       EPS b ! EPS
        integer z
        end subroutine
       subroutine PEPReasonViewFromOptions(a,z)
@@ -459,27 +483,3 @@
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine PEPQArnoldiSetRestart(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-       integer z
-       end subroutine
-      subroutine PEPQArnoldiGetRestart(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-       integer z
-       end subroutine
-      subroutine PEPQArnoldiSetLocking(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-       integer z
-       end subroutine
-      subroutine PEPQArnoldiGetLocking(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-       integer z
-       end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/pep/f90-mod/index.html slepc-3.10.2+dfsg1/src/pep/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/pep/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/pep/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/pep/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/f90-mod/slepcpep.h90.html slepc-3.10.2+dfsg1/src/pep/f90-mod/slepcpep.h90.html
--- slepc-3.10.1+dfsg1/src/pep/f90-mod/slepcpep.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/f90-mod/slepcpep.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/f90-mod/slepcpep.h.html slepc-3.10.2+dfsg1/src/pep/f90-mod/slepcpep.h.html
--- slepc-3.10.1+dfsg1/src/pep/f90-mod/slepcpep.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/f90-mod/slepcpep.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/f90-mod/slepcpepmod.F.html slepc-3.10.2+dfsg1/src/pep/f90-mod/slepcpepmod.F.html
--- slepc-3.10.1+dfsg1/src/pep/f90-mod/slepcpepmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/f90-mod/slepcpepmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/index.html slepc-3.10.2+dfsg1/src/pep/impls/index.html
--- slepc-3.10.1+dfsg1/src/pep/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/jd/index.html slepc-3.10.2+dfsg1/src/pep/impls/jd/index.html --- slepc-3.10.1+dfsg1/src/pep/impls/jd/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/impls/jd/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/jd/makefile.html slepc-3.10.2+dfsg1/src/pep/impls/jd/makefile.html --- slepc-3.10.1+dfsg1/src/pep/impls/jd/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/impls/jd/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/jd/pjd.c.html slepc-3.10.2+dfsg1/src/pep/impls/jd/pjd.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/jd/pjd.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/jd/pjd.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/index.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/index.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/makefile.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/makefile.html --- slepc-3.10.1+dfsg1/src/pep/impls/krylov/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/pepkrylov.c.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/pepkrylov.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/pepkrylov.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/pepkrylov.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/pepkrylov.h.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/pepkrylov.h.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/pepkrylov.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/pepkrylov.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/qarnoldi/index.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/qarnoldi/index.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/qarnoldi/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/qarnoldi/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html --- slepc-3.10.1+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/index.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/index.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/makefile.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/makefile.html --- slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/index.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/index.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/makefile.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/makefile.html --- slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/linear/index.html slepc-3.10.2+dfsg1/src/pep/impls/linear/index.html
--- slepc-3.10.1+dfsg1/src/pep/impls/linear/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/linear/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/linear/linear.c.html slepc-3.10.2+dfsg1/src/pep/impls/linear/linear.c.html --- slepc-3.10.1+dfsg1/src/pep/impls/linear/linear.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/impls/linear/linear.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/linear/linearp.h.html slepc-3.10.2+dfsg1/src/pep/impls/linear/linearp.h.html
--- slepc-3.10.1+dfsg1/src/pep/impls/linear/linearp.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/linear/linearp.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/linear/makefile.html slepc-3.10.2+dfsg1/src/pep/impls/linear/makefile.html
--- slepc-3.10.1+dfsg1/src/pep/impls/linear/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/linear/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/linear/qeplin.c.html slepc-3.10.2+dfsg1/src/pep/impls/linear/qeplin.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/linear/qeplin.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/linear/qeplin.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/makefile.html slepc-3.10.2+dfsg1/src/pep/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/pep/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/impls/peputils.c.html slepc-3.10.2+dfsg1/src/pep/impls/peputils.c.html
--- slepc-3.10.1+dfsg1/src/pep/impls/peputils.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/impls/peputils.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/index.html slepc-3.10.2+dfsg1/src/pep/index.html
--- slepc-3.10.1+dfsg1/src/pep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/dlregispep.c.html slepc-3.10.2+dfsg1/src/pep/interface/dlregispep.c.html --- slepc-3.10.1+dfsg1/src/pep/interface/dlregispep.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/interface/dlregispep.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/index.html slepc-3.10.2+dfsg1/src/pep/interface/index.html
--- slepc-3.10.1+dfsg1/src/pep/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/makefile.html slepc-3.10.2+dfsg1/src/pep/interface/makefile.html --- slepc-3.10.1+dfsg1/src/pep/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/pep/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepbasic.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepbasic.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepbasic.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepbasic.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepdefault.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepdefault.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepdefault.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepdefault.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepmon.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepmon.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepmon.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepmon.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepopts.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepopts.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepopts.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepopts.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/peprefine.c.html slepc-3.10.2+dfsg1/src/pep/interface/peprefine.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/peprefine.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/peprefine.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepregis.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepregis.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepsetup.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepsetup.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepsetup.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepsetup.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepsolve.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepsolve.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepsolve.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepsolve.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/interface/pepview.c.html slepc-3.10.2+dfsg1/src/pep/interface/pepview.c.html
--- slepc-3.10.1+dfsg1/src/pep/interface/pepview.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/interface/pepview.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/pep/makefile.html slepc-3.10.2+dfsg1/src/pep/makefile.html
--- slepc-3.10.1+dfsg1/src/pep/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/pep/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/index.html slepc-3.10.2+dfsg1/src/svd/examples/index.html
--- slepc-3.10.1+dfsg1/src/svd/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
tutorials/
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/makefile.html slepc-3.10.2+dfsg1/src/svd/examples/makefile.html --- slepc-3.10.1+dfsg1/src/svd/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/index.html slepc-3.10.2+dfsg1/src/svd/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/svd/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/svd/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test4f.F.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test4f.F.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test4f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test4f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test6.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test6.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test6.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test6.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test7.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test7.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test7.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test7.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test8.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test8.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test8.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test8.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tests/test9.c.html slepc-3.10.2+dfsg1/src/svd/examples/tests/test9.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tests/test9.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tests/test9.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex14.c.html slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex14.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex14.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex14.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex15.c.html slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex15.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex15.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex15.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex15f.F.html slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex15f.F.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex15f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex15f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex8.c.html slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex8.c.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tutorials/ex8.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tutorials/ex8.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tutorials/index.html slepc-3.10.2+dfsg1/src/svd/examples/tutorials/index.html
--- slepc-3.10.1+dfsg1/src/svd/examples/tutorials/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/examples/tutorials/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/examples/tutorials/makefile.html slepc-3.10.2+dfsg1/src/svd/examples/tutorials/makefile.html --- slepc-3.10.1+dfsg1/src/svd/examples/tutorials/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/examples/tutorials/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90 slepc-3.10.2+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90
--- slepc-3.10.1+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90	2019-02-11 16:58:45.000000000 +0000
@@ -1,297 +1,297 @@
-      subroutine SVDMonitorCancel(a,z)
+      subroutine SVDCrossSetExplicitMatrix(a,b,z)
       use slepcsvddef
        SVD a ! SVD
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDSetOperator(a,b,z)
+      subroutine SVDCrossGetExplicitMatrix(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       Mat b ! Mat
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDGetOperator(a,b,z)
+      subroutine SVDCrossSetEPS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       Mat b ! Mat
+       EPS b ! EPS
        integer z
        end subroutine
-      subroutine SVDSetUp(a,z)
+      subroutine SVDCrossGetEPS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
+       EPS b ! EPS
        integer z
        end subroutine
-      subroutine SVDAllocateSolution(a,b,z)
+      subroutine SVDPRIMMESetBlockSize(a,b,z)
       use slepcsvddef
        SVD a ! SVD
        PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine SVDCreate(a,b,z)
+      subroutine SVDPRIMMEGetBlockSize(a,b,z)
       use slepcsvddef
-       integer a ! MPI_Comm
-       SVD b ! SVD
+       SVD a ! SVD
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine SVDReset(a,z)
+      subroutine SVDPRIMMESetMethod(a,b,z)
       use slepcsvddef
        SVD a ! SVD
+       SVDPRIMMEMethod b ! SVDPRIMMEMethod
        integer z
        end subroutine
-      subroutine SVDDestroy(a,z)
+      subroutine SVDPRIMMEGetMethod(a,b,z)
       use slepcsvddef
        SVD a ! SVD
+       SVDPRIMMEMethod b ! SVDPRIMMEMethod
        integer z
        end subroutine
-      subroutine SVDSetBV(a,b,c,z)
+      subroutine SVDLanczosSetOneSide(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       BV b ! BV
-       BV c ! BV
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDGetBV(a,b,c,z)
+      subroutine SVDLanczosGetOneSide(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       BV b ! BV
-       BV c ! BV
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDSetDS(a,b,z)
+      subroutine SVDTRLanczosSetOneSide(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       DS b ! DS
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDGetDS(a,b,z)
+      subroutine SVDTRLanczosGetOneSide(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       DS b ! DS
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDSetImplicitTranspose(a,b,z)
+      subroutine SVDCyclicSetExplicitMatrix(a,b,z)
       use slepcsvddef
        SVD a ! SVD
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDGetImplicitTranspose(a,b,z)
+      subroutine SVDCyclicGetExplicitMatrix(a,b,z)
       use slepcsvddef
        SVD a ! SVD
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDSetTolerances(a,b,c,z)
+      subroutine SVDCyclicSetEPS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscReal b ! PetscReal
-       PetscInt c ! PetscInt
+       EPS b ! EPS
        integer z
        end subroutine
-      subroutine SVDSetDimensions(a,b,c,d,z)
+      subroutine SVDCyclicGetEPS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
+       EPS b ! EPS
        integer z
        end subroutine
-      subroutine SVDSetWhichSingularTriplets(a,b,z)
+      subroutine SVDMonitorCancel(a,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDWhich b ! SVDWhich
        integer z
        end subroutine
-      subroutine SVDGetWhichSingularTriplets(a,b,z)
+      subroutine SVDSetOperator(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDWhich b ! SVDWhich
+       Mat b ! Mat
        integer z
        end subroutine
-      subroutine SVDSetConvergenceTest(a,b,z)
+      subroutine SVDGetOperator(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDConv b ! SVDConv
+       Mat b ! Mat
        integer z
        end subroutine
-      subroutine SVDGetConvergenceTest(a,b,z)
+      subroutine SVDSetUp(a,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDConv b ! SVDConv
        integer z
        end subroutine
-      subroutine SVDSetStoppingTest(a,b,z)
+      subroutine SVDAllocateSolution(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDStop b ! SVDStop
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine SVDGetStoppingTest(a,b,z)
+      subroutine SVDCreate(a,b,z)
       use slepcsvddef
-       SVD a ! SVD
-       SVDStop b ! SVDStop
+       integer a ! MPI_Comm
+       SVD b ! SVD
        integer z
        end subroutine
-      subroutine SVDSetFromOptions(a,z)
+      subroutine SVDReset(a,z)
       use slepcsvddef
        SVD a ! SVD
        integer z
        end subroutine
-      subroutine SVDSetTrackAll(a,b,z)
+      subroutine SVDDestroy(a,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDGetTrackAll(a,b,z)
+      subroutine SVDSetBV(a,b,c,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
+       BV b ! BV
+       BV c ! BV
        integer z
        end subroutine
-      subroutine SVDSolve(a,z)
+      subroutine SVDGetBV(a,b,c,z)
       use slepcsvddef
        SVD a ! SVD
+       BV b ! BV
+       BV c ! BV
        integer z
        end subroutine
-      subroutine SVDGetIterationNumber(a,b,z)
+      subroutine SVDSetDS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscInt b ! PetscInt
+       DS b ! DS
        integer z
        end subroutine
-      subroutine SVDGetConvergedReason(a,b,z)
+      subroutine SVDGetDS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDConvergedReason b ! SVDConvergedReason
+       DS b ! DS
        integer z
        end subroutine
-      subroutine SVDGetConverged(a,b,z)
+      subroutine SVDSetImplicitTranspose(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscInt b ! PetscInt
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDComputeError(a,b,c,d,z)
+      subroutine SVDGetImplicitTranspose(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscInt b ! PetscInt
-       SVDErrorType c ! SVDErrorType
-       PetscReal d ! PetscReal
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDReasonViewFromOptions(a,z)
+      subroutine SVDSetTolerances(a,b,c,z)
       use slepcsvddef
        SVD a ! SVD
+       PetscReal b ! PetscReal
+       PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine SVDErrorViewFromOptions(a,z)
+      subroutine SVDSetDimensions(a,b,c,d,z)
       use slepcsvddef
        SVD a ! SVD
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
        integer z
        end subroutine
-      subroutine SVDValuesViewFromOptions(a,z)
+      subroutine SVDSetWhichSingularTriplets(a,b,z)
       use slepcsvddef
        SVD a ! SVD
+       SVDWhich b ! SVDWhich
        integer z
        end subroutine
-      subroutine SVDVectorsViewFromOptions(a,z)
+      subroutine SVDGetWhichSingularTriplets(a,b,z)
       use slepcsvddef
        SVD a ! SVD
+       SVDWhich b ! SVDWhich
        integer z
        end subroutine
-      subroutine SVDPRIMMESetBlockSize(a,b,z)
+      subroutine SVDSetConvergenceTest(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscInt b ! PetscInt
+       SVDConv b ! SVDConv
        integer z
        end subroutine
-      subroutine SVDPRIMMEGetBlockSize(a,b,z)
+      subroutine SVDGetConvergenceTest(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscInt b ! PetscInt
+       SVDConv b ! SVDConv
        integer z
        end subroutine
-      subroutine SVDPRIMMESetMethod(a,b,z)
+      subroutine SVDSetStoppingTest(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDPRIMMEMethod b ! SVDPRIMMEMethod
+       SVDStop b ! SVDStop
        integer z
        end subroutine
-      subroutine SVDPRIMMEGetMethod(a,b,z)
+      subroutine SVDGetStoppingTest(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDPRIMMEMethod b ! SVDPRIMMEMethod
+       SVDStop b ! SVDStop
        integer z
        end subroutine
-      subroutine SVDLanczosSetOneSide(a,b,z)
+      subroutine SVDSetFromOptions(a,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDLanczosGetOneSide(a,b,z)
+      subroutine SVDSetTrackAll(a,b,z)
       use slepcsvddef
        SVD a ! SVD
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDCyclicSetExplicitMatrix(a,b,z)
+      subroutine SVDGetTrackAll(a,b,z)
       use slepcsvddef
        SVD a ! SVD
        PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDCyclicGetExplicitMatrix(a,b,z)
+      subroutine SVDSolve(a,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDCyclicSetEPS(a,b,z)
+      subroutine SVDGetIterationNumber(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       EPS b ! EPS
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine SVDCyclicGetEPS(a,b,z)
+      subroutine SVDGetConvergedReason(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       EPS b ! EPS
+       SVDConvergedReason b ! SVDConvergedReason
        integer z
        end subroutine
-      subroutine SVDCrossSetExplicitMatrix(a,b,z)
+      subroutine SVDGetConverged(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine SVDCrossGetExplicitMatrix(a,b,z)
+      subroutine SVDComputeError(a,b,c,d,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
+       SVDErrorType c ! SVDErrorType
+       PetscReal d ! PetscReal
        integer z
        end subroutine
-      subroutine SVDCrossSetEPS(a,b,z)
+      subroutine SVDReasonViewFromOptions(a,z)
       use slepcsvddef
        SVD a ! SVD
-       EPS b ! EPS
        integer z
        end subroutine
-      subroutine SVDCrossGetEPS(a,b,z)
+      subroutine SVDErrorViewFromOptions(a,z)
       use slepcsvddef
        SVD a ! SVD
-       EPS b ! EPS
        integer z
        end subroutine
-      subroutine SVDTRLanczosSetOneSide(a,b,z)
+      subroutine SVDValuesViewFromOptions(a,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine SVDTRLanczosGetOneSide(a,b,z)
+      subroutine SVDVectorsViewFromOptions(a,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
        integer z
        end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/svd/f90-mod/index.html slepc-3.10.2+dfsg1/src/svd/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/svd/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/svd/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/svd/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/f90-mod/slepcsvd.h90.html slepc-3.10.2+dfsg1/src/svd/f90-mod/slepcsvd.h90.html
--- slepc-3.10.1+dfsg1/src/svd/f90-mod/slepcsvd.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/f90-mod/slepcsvd.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/f90-mod/slepcsvd.h.html slepc-3.10.2+dfsg1/src/svd/f90-mod/slepcsvd.h.html
--- slepc-3.10.1+dfsg1/src/svd/f90-mod/slepcsvd.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/f90-mod/slepcsvd.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/f90-mod/slepcsvdmod.F.html slepc-3.10.2+dfsg1/src/svd/f90-mod/slepcsvdmod.F.html
--- slepc-3.10.1+dfsg1/src/svd/f90-mod/slepcsvdmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/f90-mod/slepcsvdmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cross/cross.c.html slepc-3.10.2+dfsg1/src/svd/impls/cross/cross.c.html
--- slepc-3.10.1+dfsg1/src/svd/impls/cross/cross.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/cross/cross.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cross/index.html slepc-3.10.2+dfsg1/src/svd/impls/cross/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/cross/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/cross/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cross/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/cross/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/cross/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/cross/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cyclic.c.html slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cyclic.c.html
--- slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cyclic.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cyclic.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html
--- slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cyclicimpl.h.html slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cyclicimpl.h.html
--- slepc-3.10.1+dfsg1/src/svd/impls/cyclic/cyclicimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/cyclic/cyclicimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cyclic/index.html slepc-3.10.2+dfsg1/src/svd/impls/cyclic/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/cyclic/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/cyclic/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/cyclic/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/cyclic/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/cyclic/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/cyclic/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/external/index.html slepc-3.10.2+dfsg1/src/svd/impls/external/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/external/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/external/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/external/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/external/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/external/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/external/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/external/primme/index.html slepc-3.10.2+dfsg1/src/svd/impls/external/primme/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/external/primme/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/external/primme/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/external/primme/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/external/primme/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/external/primme/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/external/primme/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/external/primme/svdprimme.c.html slepc-3.10.2+dfsg1/src/svd/impls/external/primme/svdprimme.c.html
--- slepc-3.10.1+dfsg1/src/svd/impls/external/primme/svdprimme.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/external/primme/svdprimme.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/index.html slepc-3.10.2+dfsg1/src/svd/impls/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/lanczos/gklanczos.c.html slepc-3.10.2+dfsg1/src/svd/impls/lanczos/gklanczos.c.html --- slepc-3.10.1+dfsg1/src/svd/impls/lanczos/gklanczos.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/lanczos/gklanczos.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/lanczos/index.html slepc-3.10.2+dfsg1/src/svd/impls/lanczos/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/lanczos/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/lanczos/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/lanczos/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/lanczos/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/lanczos/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/lanczos/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/lapack/index.html slepc-3.10.2+dfsg1/src/svd/impls/lapack/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/lapack/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/lapack/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/lapack/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/lapack/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/lapack/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/lapack/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/lapack/svdlapack.c.html slepc-3.10.2+dfsg1/src/svd/impls/lapack/svdlapack.c.html
--- slepc-3.10.1+dfsg1/src/svd/impls/lapack/svdlapack.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/lapack/svdlapack.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/svd/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/trlanczos/index.html slepc-3.10.2+dfsg1/src/svd/impls/trlanczos/index.html
--- slepc-3.10.1+dfsg1/src/svd/impls/trlanczos/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/trlanczos/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/trlanczos/makefile.html slepc-3.10.2+dfsg1/src/svd/impls/trlanczos/makefile.html --- slepc-3.10.1+dfsg1/src/svd/impls/trlanczos/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/impls/trlanczos/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html slepc-3.10.2+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html
--- slepc-3.10.1+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/index.html slepc-3.10.2+dfsg1/src/svd/index.html
--- slepc-3.10.1+dfsg1/src/svd/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/dlregissvd.c.html slepc-3.10.2+dfsg1/src/svd/interface/dlregissvd.c.html --- slepc-3.10.1+dfsg1/src/svd/interface/dlregissvd.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/interface/dlregissvd.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/index.html slepc-3.10.2+dfsg1/src/svd/interface/index.html
--- slepc-3.10.1+dfsg1/src/svd/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/makefile.html slepc-3.10.2+dfsg1/src/svd/interface/makefile.html --- slepc-3.10.1+dfsg1/src/svd/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/svd/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svdbasic.c.html slepc-3.10.2+dfsg1/src/svd/interface/svdbasic.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svdbasic.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svdbasic.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svddefault.c.html slepc-3.10.2+dfsg1/src/svd/interface/svddefault.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svddefault.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svddefault.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svdmon.c.html slepc-3.10.2+dfsg1/src/svd/interface/svdmon.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svdmon.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svdmon.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svdopts.c.html slepc-3.10.2+dfsg1/src/svd/interface/svdopts.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svdopts.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svdopts.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svdregis.c.html slepc-3.10.2+dfsg1/src/svd/interface/svdregis.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svdregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svdregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svdsetup.c.html slepc-3.10.2+dfsg1/src/svd/interface/svdsetup.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svdsetup.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svdsetup.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svdsolve.c.html slepc-3.10.2+dfsg1/src/svd/interface/svdsolve.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svdsolve.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svdsolve.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/interface/svdview.c.html slepc-3.10.2+dfsg1/src/svd/interface/svdview.c.html
--- slepc-3.10.1+dfsg1/src/svd/interface/svdview.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/interface/svdview.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/svd/makefile.html slepc-3.10.2+dfsg1/src/svd/makefile.html
--- slepc-3.10.1+dfsg1/src/svd/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/svd/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test10.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test10.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test10.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test10.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test11.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test11.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test11.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test11.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test12.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test12.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test12.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test12.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test13.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test13.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test13.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test13.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test14.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test14.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test14.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test14.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test15.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test15.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test15.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test15.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test16.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test16.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test16.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test16.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test1f.F90.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test1f.F90.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test1f.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test1f.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test6.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test6.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test6.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test6.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test7.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test7.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test7.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test7.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test8.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test8.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test8.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test8.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test9.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test9.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/examples/tests/test9.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/examples/tests/test9.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/ftn-auto-interfaces/slepcbv.h90 slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/ftn-auto-interfaces/slepcbv.h90
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/ftn-auto-interfaces/slepcbv.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/ftn-auto-interfaces/slepcbv.h90	2019-02-11 16:58:45.000000000 +0000
@@ -1,3 +1,28 @@
+      subroutine BVTensorBuildFirstColumn(a,b,z)
+      use slepcbvdef
+       BV a ! BV
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine BVTensorCompress(a,b,z)
+      use slepcbvdef
+       BV a ! BV
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine BVTensorGetDegree(a,b,z)
+      use slepcbvdef
+       BV a ! BV
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine BVCreateTensor(a,b,c,z)
+      use slepcbvdef
+       BV a ! BV
+       PetscInt b ! PetscInt
+       BV c ! BV
+       integer z
+       end subroutine
       subroutine BVMult(a,b,c,d,e,z)
       use slepcbvdef
        BV a ! BV
@@ -532,28 +557,3 @@
        Mat d ! Mat
        integer z
        end subroutine
-      subroutine BVTensorBuildFirstColumn(a,b,z)
-      use slepcbvdef
-       BV a ! BV
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine BVTensorCompress(a,b,z)
-      use slepcbvdef
-       BV a ! BV
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine BVTensorGetDegree(a,b,z)
-      use slepcbvdef
-       BV a ! BV
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine BVCreateTensor(a,b,c,z)
-      use slepcbvdef
-       BV a ! BV
-       PetscInt b ! PetscInt
-       BV c ! BV
-       integer z
-       end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbvmod.F.html slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbvmod.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbvmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbvmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/contiguous/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/contiguous/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/contiguous/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/contiguous/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/mat/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/mat/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/mat/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/mat/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/mat/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/mat/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/mat/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/mat/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/svecimpl.h.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/svecimpl.h.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/svec/svecimpl.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/svec/svecimpl.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/tensor/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/tensor/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/tensor/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/tensor/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/vecs/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/vecs/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/vecs/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/vecs/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvblas.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvblas.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvblas.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvblas.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvops.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvops.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvops.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvops.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvregis.c.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvregis.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/bvregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/bvregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/cuda/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/cuda/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/cuda/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/cuda/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/index.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Basis Vectors - BV

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/bv/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/bv/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/bv/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/bv/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/bv/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/bv/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test12.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test12.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test12.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test12.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test13.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test13.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test13.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test13.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test14f.F90.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test14f.F90.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test14f.F90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test14f.F90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test15.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test15.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test15.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test15.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test16.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test16.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test16.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test16.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test17.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test17.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test17.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test17.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test18.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test18.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test18.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test18.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test6.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test6.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test6.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test6.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test7.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test7.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test7.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test7.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test8.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test8.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test8.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test8.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test9.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test9.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/examples/tests/test9.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/examples/tests/test9.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/slepcdsmod.F.html slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/slepcdsmod.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/f90-mod/slepcdsmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/f90-mod/slepcdsmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghep/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghep/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c 2019-02-11 16:58:45.000000000 +0000 @@ -296,7 +296,7 @@ #else PetscErrorCode ierr; PetscScalar *x,*y; - PetscReal ncond2; + PetscReal ncond2=1.0; PetscBLASInt n0_,n1_,inc=1; PetscFunctionBegin; @@ -359,8 +359,8 @@ if (tr2->idx[0]idx[1]) { ierr = HRGen(PetscRealPart(y[tr2->idx[0]]),PetscRealPart(y[tr2->idx[1]]),&(tr2->type),&(tr2->cs),&(tr2->sn),&(tr2->alpha),&ncond2);CHKERRQ(ierr); } else { - tr2->alpha = PetscRealPart(y[tr2->idx[0]]); - ncond2 = 1.0; + tr2->alpha = PetscRealPart(y[tr2->idx[0]]); + ncond2 = 1.0; } if (ncond2>*ncond) *ncond = ncond2; } diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -302,7 +302,7 @@
 295:   SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"LARFG/LARF - Lapack routines are unavailable");
 296: #else
 298:   PetscScalar    *x,*y;
-299:   PetscReal       ncond2;
+299:   PetscReal      ncond2=1.0;
 300:   PetscBLASInt   n0_,n1_,inc=1;
 
 303:   /* Hyperbolic transformation to make zeros in x */
@@ -364,8 +364,8 @@
 359:     if (tr2->idx[0]<tr2->idx[1]) {
 360:       HRGen(PetscRealPart(y[tr2->idx[0]]),PetscRealPart(y[tr2->idx[1]]),&(tr2->type),&(tr2->cs),&(tr2->sn),&(tr2->alpha),&ncond2);
 361:     } else {
-362:     tr2->alpha = PetscRealPart(y[tr2->idx[0]]);
-363:     ncond2 = 1.0;
+362:       tr2->alpha = PetscRealPart(y[tr2->idx[0]]);
+363:       ncond2 = 1.0;
 364:     }
 365:     if (ncond2>*ncond) *ncond = ncond2;
 366:   }
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/gnhep/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/gnhep/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/gnhep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/gnhep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/hep/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/hep/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nep/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nep/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nep/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nep/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nep/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nep/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nhep/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nhep/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nhep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nhep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/pep/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/pep/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/pep/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/pep/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/pep/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/pep/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/pep/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/pep/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/svd/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/svd/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/svd/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/svd/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/svd/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/svd/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/impls/svd/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/impls/svd/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/dsops.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/dsops.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/dsops.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/dsops.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/dspriv.c.html slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/dspriv.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/dspriv.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/dspriv.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/index.html slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/ds/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/ds/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/ds/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/ds/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/ds/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/ds/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test10.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test10.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test10.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test10.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test11.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test11.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test11.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test11.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test12.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test12.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test12.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test12.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test1f.F.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test1f.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test1f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test1f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test6.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test6.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test6.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test6.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test7.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test7.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test7.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test7.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test7f.F.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test7f.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test7f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test7f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test8.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test8.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test8.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test8.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test9.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test9.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/examples/tests/test9.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/examples/tests/test9.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90 slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90	2019-02-11 16:58:45.000000000 +0000
@@ -1,3 +1,31 @@
+      subroutine FNCombineSetChildren(a,b,c,d,z)
+      use slepcfndef
+       FN a ! FN
+       FNCombineType b ! FNCombineType
+       FN c ! FN
+       FN d ! FN
+       integer z
+       end subroutine
+      subroutine FNCombineGetChildren(a,b,c,d,z)
+      use slepcfndef
+       FN a ! FN
+       FNCombineType b ! FNCombineType
+       FN c ! FN
+       FN d ! FN
+       integer z
+       end subroutine
+      subroutine FNPhiSetIndex(a,b,z)
+      use slepcfndef
+       FN a ! FN
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine FNPhiGetIndex(a,b,z)
+      use slepcfndef
+       FN a ! FN
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
       subroutine FNCreate(a,b,z)
       use slepcfndef
        integer a ! MPI_Comm
@@ -87,31 +115,3 @@
        FN a ! FN
        integer z
        end subroutine
-      subroutine FNCombineSetChildren(a,b,c,d,z)
-      use slepcfndef
-       FN a ! FN
-       FNCombineType b ! FNCombineType
-       FN c ! FN
-       FN d ! FN
-       integer z
-       end subroutine
-      subroutine FNCombineGetChildren(a,b,c,d,z)
-      use slepcfndef
-       FN a ! FN
-       FNCombineType b ! FNCombineType
-       FN c ! FN
-       FN d ! FN
-       integer z
-       end subroutine
-      subroutine FNPhiSetIndex(a,b,z)
-      use slepcfndef
-       FN a ! FN
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
-      subroutine FNPhiGetIndex(a,b,z)
-      use slepcfndef
-       FN a ! FN
-       PetscInt b ! PetscInt
-       integer z
-       end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfnmod.F.html slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfnmod.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfnmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfnmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/combine/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/combine/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/combine/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/combine/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/combine/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/combine/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/combine/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/combine/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c	2019-02-11 16:58:45.000000000 +0000
@@ -769,9 +769,10 @@
  */
 static PetscReal normest1(PetscBLASInt n,PetscScalar *A,PetscInt m,PetscScalar *work,PetscRandom rand)
 {
-  PetscScalar  *X,*Y,*Z,*S,*S_old,*aux,val,sone=1.0,szero=0.0;
-  PetscReal    est=0.0,est_old,vals[2]={0.0,0.0},*zvals,maxzval[2],raux;
-  PetscBLASInt i,j,t=2,it=0,ind[2],est_j=0,m1;
+  PetscScalar    *X,*Y,*Z,*S,*S_old,*aux,val,sone=1.0,szero=0.0;
+  PetscReal      est=0.0,est_old,vals[2]={0.0,0.0},*zvals,maxzval[2],raux;
+  PetscBLASInt   i,j,t=2,it=0,ind[2],est_j=0,m1;
+  PetscErrorCode ierr;
 
   PetscFunctionBegin;
   X = work;
@@ -837,7 +838,7 @@
     for (j=0;j=2 */
       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n,&n,&n,&sone,A,&n,A,&n,&szero,v,&n));
       for (j=0;j nrm) nrm = tmp;   /* norm(v,inf) */
     } else {
@@ -896,10 +898,11 @@
  */
 static PetscInt ell(PetscBLASInt n,PetscScalar *A,PetscReal coeff,PetscInt m,PetscScalar *work,PetscRandom rand)
 {
-  PetscScalar  *Ascaled=work;
-  PetscReal    nrm,alpha,beta,rwork[1];
-  PetscInt     t;
-  PetscBLASInt i,j;
+  PetscScalar    *Ascaled=work;
+  PetscReal      nrm,alpha,beta,rwork[1];
+  PetscInt       t;
+  PetscBLASInt   i,j;
+  PetscErrorCode ierr;
 
   PetscFunctionBegin;
   beta = PetscPowReal(coeff,1.0/(2*m+1));
@@ -907,7 +910,7 @@
     for (j=0;j 
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -769,422 +769,422 @@
 769:  */
 770: static PetscReal normest1(PetscBLASInt n,PetscScalar *A,PetscInt m,PetscScalar *work,PetscRandom rand)
 771: {
-772:   PetscScalar  *X,*Y,*Z,*S,*S_old,*aux,val,sone=1.0,szero=0.0;
-773:   PetscReal    est=0.0,est_old,vals[2]={0.0,0.0},*zvals,maxzval[2],raux;
-774:   PetscBLASInt i,j,t=2,it=0,ind[2],est_j=0,m1;
-
-777:   X = work;
-778:   Y = work + 2*n;
-779:   Z = work + 4*n;
-780:   S = work + 6*n;
-781:   S_old = work + 8*n;
-782:   zvals = (PetscReal*)(work + 10*n);
-
-784:   for (i=0;i<n;i++) {  /* X has columns of unit 1-norm */
-785:     X[i] = 1.0/n;
-786:     PetscRandomGetValue(rand,&val);
-787:     if (PetscRealPart(val) < 0.5) X[i+n] = -1.0/n;
-788:     else X[i+n] = 1.0/n;
-789:   }
-790:   for (i=0;i<t*n;i++) S[i] = 0.0;
-791:   ind[0] = 0; ind[1] = 0;
-792:   est_old = 0;
-793:   while (1) {
-794:     it++;
-795:     for (j=0;j<m;j++) {  /* Y = A^m*X */
-796:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n,&t,&n,&sone,A,&n,X,&n,&szero,Y,&n));
-797:       if (j<m-1) SWAP(X,Y,aux);
-798:     }
-799:     for (j=0;j<t;j++) {  /* vals[j] = norm(Y(:,j),1) */
-800:       vals[j] = 0.0;
-801:       for (i=0;i<n;i++) vals[j] += PetscAbsScalar(Y[i+j*n]);
-802:     }
-803:     if (vals[0]<vals[1]) {
-804:       SWAP(vals[0],vals[1],raux);
-805:       m1 = 1;
-806:     } else m1 = 0;
-807:     est = vals[0];
-808:     if (est>est_old || it==2) est_j = ind[m1];
-809:     if (it>=2 && est<=est_old) {
-810:       est = est_old;
-811:       break;
-812:     }
-813:     est_old = est;
-814:     if (it>ITMAX) break;
-815:     SWAP(S,S_old,aux);
-816:     for (i=0;i<t*n;i++) {  /* S = sign(Y) */
-817:       S[i] = (PetscRealPart(Y[i]) < 0.0)? -1.0: 1.0;
-818:     }
-819:     for (j=0;j<m;j++) {  /* Z = (A^T)^m*S */
-820:       PetscStackCallBLAS("BLASgemm",BLASgemm_("C","N",&n,&t,&n,&sone,A,&n,S,&n,&szero,Z,&n));
-821:       if (j<m-1) SWAP(S,Z,aux);
-822:     }
-823:     maxzval[0] = -1; maxzval[1] = -1;
-824:     ind[0] = 0; ind[1] = 0;
-825:     for (i=0;i<n;i++) {  /* zvals[i] = norm(Z(i,:),inf) */
-826:       zvals[i] = PetscMax(PetscAbsScalar(Z[i+0*n]),PetscAbsScalar(Z[i+1*n]));
-827:       if (zvals[i]>maxzval[0]) {
-828:         maxzval[0] = zvals[i];
-829:         ind[0] = i;
-830:       } else if (zvals[i]>maxzval[1]) {
-831:         maxzval[1] = zvals[i];
-832:         ind[1] = i;
-833:       }
-834:     }
-835:     if (it>=2 && maxzval[0]==zvals[est_j]) break;
-836:     for (i=0;i<t*n;i++) X[i] = 0.0;
-837:     for (j=0;j<t;j++) X[ind[j]+j*n] = 1.0;
-838:   }
-839:   /* Flop count is roughly (it * 2*m * t*gemv) = 4*its*m*t*n*n */
-840:   PetscLogFlops(4.0*it*m*t*n*n);
-841:   PetscFunctionReturn(est);
-842: }
-
-844: #define SMALLN 100
-
-846: /*
-847:  * Estimate norm(A^m,1) (required workspace is 2*n*n)
-848:  */
-849: static PetscReal normAm(PetscBLASInt n,PetscScalar *A,PetscInt m,PetscScalar *work,PetscRandom rand)
-850: {
-851:   PetscScalar  *v=work,*w=work+n*n,*aux,sone=1.0,szero=0.0;
-852:   PetscReal    nrm,rwork[1],tmp;
-853:   PetscBLASInt i,j,one=1;
-854:   PetscBool    isrealpos=PETSC_TRUE;
-
-857:   if (n<SMALLN) {   /* compute matrix power explicitly */
-858:     if (m==1) {
-859:       nrm = LAPACKlange_("O",&n,&n,A,&n,rwork);
-860:       PetscLogFlops(1.0*n*n);
-861:     } else {  /* m>=2 */
-862:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n,&n,&n,&sone,A,&n,A,&n,&szero,v,&n));
-863:       for (j=0;j<m-2;j++) {
-864:         PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n,&n,&n,&sone,A,&n,v,&n,&szero,w,&n));
-865:         SWAP(v,w,aux);
-866:       }
-867:       nrm = LAPACKlange_("O",&n,&n,v,&n,rwork);
-868:       PetscLogFlops(2.0*n*n*n*(m-1)+1.0*n*n);
-869:     }
-870:   } else {
-871:     for (i=0;i<n;i++)
-872:       for (j=0;j<n;j++) 
-873: #if defined(PETSC_USE_COMPLEX)
-874:         if (PetscRealPart(A[i+j*n])<0.0 || PetscImaginaryPart(A[i+j*n])!=0.0) { isrealpos = PETSC_FALSE; break; }
-875: #else
-876:         if (A[i+j*n]<0.0) { isrealpos = PETSC_FALSE; break; }
-877: #endif
-878:     if (isrealpos) {   /* for positive matrices only */
-879:       for (i=0;i<n;i++) v[i] = 1.0;
-880:       for (j=0;j<m;j++) {  /* w = A'*v */
-881:         PetscStackCallBLAS("BLASgemv",BLASgemv_("C",&n,&n,&sone,A,&n,v,&one,&szero,w,&one));
-882:         SWAP(v,w,aux);
-883:       }
-884:       PetscLogFlops(2.0*n*n*m);
-885:       nrm = 0.0;
-886:       for (i=0;i<n;i++) if ((tmp = PetscAbsScalar(v[i])) > nrm) nrm = tmp;   /* norm(v,inf) */
-887:     } else {
-888:       nrm = normest1(n,A,m,work,rand);
-889:     }
-890:   }
-891:   PetscFunctionReturn(nrm);
-892: }
-
-894: /*
-895:  * Function needed to compute optimal parameters (required workspace is 3*n*n)
-896:  */
-897: static PetscInt ell(PetscBLASInt n,PetscScalar *A,PetscReal coeff,PetscInt m,PetscScalar *work,PetscRandom rand)
-898: {
-899:   PetscScalar  *Ascaled=work;
-900:   PetscReal    nrm,alpha,beta,rwork[1];
-901:   PetscInt     t;
-902:   PetscBLASInt i,j;
-
-905:   beta = PetscPowReal(coeff,1.0/(2*m+1));
-906:   for (i=0;i<n;i++)
-907:     for (j=0;j<n;j++) 
-908:       Ascaled[i+j*n] = beta*PetscAbsScalar(A[i+j*n]);
-909:   nrm = LAPACKlange_("O",&n,&n,A,&n,rwork);
-910:   PetscLogFlops(2.0*n*n);
-911:   alpha = normAm(n,Ascaled,2*m+1,work+n*n,rand)/nrm;
-912:   t = PetscMax((PetscInt)PetscCeilReal(PetscLogReal(2.0*alpha/PETSC_MACHINE_EPSILON)/PetscLogReal(2.0)/(2*m)),0);
-913:   PetscFunctionReturn(t);
-914: }
-
-916: /*
-917:  * Compute scaling parameter (s) and order of Pade approximant (m)  (required workspace is 4*n*n)
-918:  */
-919: static PetscErrorCode expm_params(PetscInt n,PetscScalar **Apowers,PetscInt *s,PetscInt *m,PetscScalar *work)
-920: {
-921:   PetscErrorCode  ierr;
-922:   PetscScalar     sfactor,sone=1.0,szero=0.0,*A=Apowers[0],*Ascaled;
-923:   PetscReal       d4,d6,d8,d10,eta1,eta3,eta4,eta5,rwork[1];
-924:   PetscBLASInt    n_,n2,one=1;
-925:   PetscRandom     rand;
-926:   const PetscReal coeff[5] = { 9.92063492063492e-06, 9.94131285136576e-11,  /* backward error function */
-927:                                2.22819456055356e-16, 1.69079293431187e-22, 8.82996160201868e-36 };
-928:   const PetscReal theta[5] = { 1.495585217958292e-002,    /* m = 3  */
-929:                                2.539398330063230e-001,    /* m = 5  */
-930:                                9.504178996162932e-001,    /* m = 7  */
-931:                                2.097847961257068e+000,    /* m = 9  */
-932:                                5.371920351148152e+000 };  /* m = 13 */
-
-935:   *s = 0;
-936:   *m = 13;
-937:   PetscBLASIntCast(n,&n_);
-938:   PetscRandomCreate(PETSC_COMM_SELF,&rand);
-939:   d4 = PetscPowReal(LAPACKlange_("O",&n_,&n_,Apowers[2],&n_,rwork),1.0/4.0);
-940:   if (d4==0.0) { /* safeguard for the case A = 0 */
-941:     *m = 3;
-942:     goto done;
-943:   }
-944:   d6 = PetscPowReal(LAPACKlange_("O",&n_,&n_,Apowers[3],&n_,rwork),1.0/6.0);
-945:   PetscLogFlops(2.0*n*n);
-946:   eta1 = PetscMax(d4,d6);
-947:   if (eta1<=theta[0] && !ell(n_,A,coeff[0],3,work,rand)) {
-948:     *m = 3;
-949:     goto done;
-950:   }
-951:   if (eta1<=theta[1] && !ell(n_,A,coeff[1],5,work,rand)) {
-952:     *m = 5;
-953:     goto done;
-954:   }
-955:   if (n<SMALLN) {
-956:     PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[2],&n_,Apowers[2],&n_,&szero,work,&n_));
-957:     d8 = PetscPowReal(LAPACKlange_("O",&n_,&n_,work,&n_,rwork),1.0/8.0);
-958:     PetscLogFlops(2.0*n*n*n+1.0*n*n);
-959:   } else {
-960:     d8 = PetscPowReal(normAm(n_,Apowers[2],2,work,rand),1.0/8.0);
-961:   }
-962:   eta3 = PetscMax(d6,d8);
-963:   if (eta3<=theta[2] && !ell(n_,A,coeff[2],7,work,rand)) {
-964:     *m = 7;
-965:     goto done;
-966:   }
-967:   if (eta3<=theta[3] && !ell(n_,A,coeff[3],9,work,rand)) {
-968:     *m = 9;
-969:     goto done;
-970:   }
-971:   if (n<SMALLN) {
-972:     PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[2],&n_,Apowers[3],&n_,&szero,work,&n_));
-973:     d10 = PetscPowReal(LAPACKlange_("O",&n_,&n_,work,&n_,rwork),1.0/10.0);
-974:     PetscLogFlops(2.0*n*n*n+1.0*n*n);
-975:   } else {
-976:     d10 = PetscPowReal(normAm(n_,Apowers[1],5,work,rand),1.0/10.0);
-977:   }
-978:   eta4 = PetscMax(d8,d10);
-979:   eta5 = PetscMin(eta3,eta4);
-980:   *s = PetscMax((PetscInt)PetscCeilReal(PetscLogReal(eta5/theta[4])/PetscLogReal(2.0)),0);
-981:   if (*s) {
-982:     Ascaled = work+3*n*n;
-983:     n2 = n_*n_;
-984:     PetscStackCallBLAS("BLAScopy",BLAScopy_(&n2,A,&one,Ascaled,&one));
-985:     sfactor = PetscPowRealInt(2.0,-(*s));
-986:     PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&sfactor,Ascaled,&one));
-987:     PetscLogFlops(1.0*n*n);
-988:   } else Ascaled = A;
-989:   *s += ell(n_,Ascaled,coeff[4],13,work,rand);
-990: done:
-991:   PetscRandomDestroy(&rand);
-992:   return(0);
-993: }
-
-995: /*
-996:  * Matrix exponential implementation based on algorithm and matlab code by N. Higham and co-authors
-997:  *
-998:  *     N. J. Higham, "The scaling and squaring method for the matrix exponential 
-999:  *     revisited", SIAM J. Matrix Anal. Appl. 26(4):1179-1193, 2005.
-1000:  */
-1001: PetscErrorCode FNEvaluateFunctionMat_Exp_Higham(FN fn,Mat A,Mat B)
-1002: {
-1003: #if defined(PETSC_MISSING_LAPACK_GESV) || defined(SLEPC_MISSING_LAPACK_LANGE)
-1005:   SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"GESV/LANGE - Lapack routines are unavailable");
-1006: #else
-1007:   PetscErrorCode    ierr;
-1008:   PetscBLASInt      n_,n2,*ipiv,info,one=1;
-1009:   PetscInt          n,m,j,s;
-1010:   PetscScalar       scale,smone=-1.0,sone=1.0,stwo=2.0,szero=0.0;
-1011:   PetscScalar       *Aa,*Ba,*Apowers[5],*Q,*P,*W,*work,*aux;
-1012:   const PetscScalar *c;
-1013:   const PetscScalar c3[4]   = { 120, 60, 12, 1 };
-1014:   const PetscScalar c5[6]   = { 30240, 15120, 3360, 420, 30, 1 };
-1015:   const PetscScalar c7[8]   = { 17297280, 8648640, 1995840, 277200, 25200, 1512, 56, 1 };
-1016:   const PetscScalar c9[10]  = { 17643225600, 8821612800, 2075673600, 302702400, 30270240,
-1017:                                 2162160, 110880, 3960, 90, 1 };
-1018:   const PetscScalar c13[14] = { 64764752532480000, 32382376266240000, 7771770303897600,
-1019:                                 1187353796428800,  129060195264000,   10559470521600,
-1020:                                 670442572800,      33522128640,       1323241920,
-1021:                                 40840800,          960960,            16380,  182,  1 };
-
-1024:   MatDenseGetArray(A,&Aa);
-1025:   MatDenseGetArray(B,&Ba);
-1026:   MatGetSize(A,&n,NULL);
-1027:   PetscBLASIntCast(n,&n_);
-1028:   n2 = n_*n_;
-1029:   PetscMalloc2(8*n*n,&work,n,&ipiv);
-
-1031:   /* Matrix powers */
-1032:   Apowers[0] = work;                  /* Apowers[0] = A   */
-1033:   Apowers[1] = Apowers[0] + n*n;      /* Apowers[1] = A^2 */
-1034:   Apowers[2] = Apowers[1] + n*n;      /* Apowers[2] = A^4 */
-1035:   Apowers[3] = Apowers[2] + n*n;      /* Apowers[3] = A^6 */
-1036:   Apowers[4] = Apowers[3] + n*n;      /* Apowers[4] = A^8 */
-
-1038:   PetscMemcpy(Apowers[0],Aa,n2*sizeof(PetscScalar));
-1039:   PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[0],&n_,Apowers[0],&n_,&szero,Apowers[1],&n_));
-1040:   PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[1],&n_,Apowers[1],&n_,&szero,Apowers[2],&n_));
-1041:   PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[1],&n_,Apowers[2],&n_,&szero,Apowers[3],&n_));
-1042:   PetscLogFlops(6.0*n*n*n);
-
-1044:   /* Compute scaling parameter and order of Pade approximant */
-1045:   expm_params(n,Apowers,&s,&m,Apowers[4]);
-
-1047:   if (s) { /* rescale */
-1048:     for (j=0;j<4;j++) {
-1049:       scale = PetscPowRealInt(2.0,-PetscMax(2*j,1)*s);
-1050:       PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&scale,Apowers[j],&one));
-1051:     }
-1052:     PetscLogFlops(4.0*n*n);
-1053:   }
-
-1055:   /* Evaluate the Pade approximant */
-1056:   switch (m) {
-1057:     case 3:  c = c3;  break;
-1058:     case 5:  c = c5;  break;
-1059:     case 7:  c = c7;  break;
-1060:     case 9:  c = c9;  break;
-1061:     case 13: c = c13; break;
-1062:     default: SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Wrong value of m %d",m);
-1063:   }
-1064:   P = Ba;
-1065:   Q = Apowers[4] + n*n;
-1066:   W = Q + n*n;
-1067:   switch (m) {
-1068:     case 3:
-1069:     case 5:
-1070:     case 7:
-1071:     case 9:
-1072:       if (m==9) PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[1],&n_,Apowers[3],&n_,&szero,Apowers[4],&n_));
-1073:       PetscMemzero(P,n2*sizeof(PetscScalar));
-1074:       PetscMemzero(Q,n2*sizeof(PetscScalar));
-1075:       for (j=0;j<n;j++) {
-1076:         P[j+j*n] = c[1];
-1077:         Q[j+j*n] = c[0];
-1078:       }
-1079:       for (j=m;j>=3;j-=2) {
-1080:         PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[j],Apowers[(j+1)/2-1],&one,P,&one));
-1081:         PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[j-1],Apowers[(j+1)/2-1],&one,Q,&one));
-1082:         PetscLogFlops(4.0*n*n);
-1083:       }
-1084:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[0],&n_,P,&n_,&szero,W,&n_));
-1085:       PetscLogFlops(2.0*n*n*n);
-1086:       SWAP(P,W,aux);
-1087:       break;
-1088:     case 13:
-1089:       /*  P = A*(Apowers[3]*(c[13]*Apowers[3] + c[11]*Apowers[2] + c[9]*Apowers[1]) 
-1090:               + c[7]*Apowers[3] + c[5]*Apowers[2] + c[3]*Apowers[1] + c[1]*I)       */
-1091:       PetscStackCallBLAS("BLAScopy",BLAScopy_(&n2,Apowers[3],&one,P,&one));
-1092:       PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&c[13],P,&one));
-1093:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[11],Apowers[2],&one,P,&one));
-1094:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[9],Apowers[1],&one,P,&one));
-1095:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[3],&n_,P,&n_,&szero,W,&n_));
-1096:       PetscLogFlops(5.0*n*n+2.0*n*n*n);
-1097:       PetscMemzero(P,n2*sizeof(PetscScalar));
-1098:       for (j=0;j<n;j++) P[j+j*n] = c[1];
-1099:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[7],Apowers[3],&one,P,&one));
-1100:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[5],Apowers[2],&one,P,&one));
-1101:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[3],Apowers[1],&one,P,&one));
-1102:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&sone,P,&one,W,&one));
-1103:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[0],&n_,W,&n_,&szero,P,&n_));
-1104:       PetscLogFlops(7.0*n*n+2.0*n*n*n);
-1105:       /*  Q = Apowers[3]*(c[12]*Apowers[3] + c[10]*Apowers[2] + c[8]*Apowers[1])
-1106:               + c[6]*Apowers[3] + c[4]*Apowers[2] + c[2]*Apowers[1] + c[0]*I        */
-1107:       PetscStackCallBLAS("BLAScopy",BLAScopy_(&n2,Apowers[3],&one,Q,&one));
-1108:       PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&c[12],Q,&one));
-1109:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[10],Apowers[2],&one,Q,&one));
-1110:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[8],Apowers[1],&one,Q,&one));
-1111:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[3],&n_,Q,&n_,&szero,W,&n_));
-1112:       PetscLogFlops(5.0*n*n+2.0*n*n*n);
-1113:       PetscMemzero(Q,n2*sizeof(PetscScalar));
-1114:       for (j=0;j<n;j++) Q[j+j*n] = c[0];
-1115:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[6],Apowers[3],&one,Q,&one));
-1116:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[4],Apowers[2],&one,Q,&one));
-1117:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[2],Apowers[1],&one,Q,&one));
-1118:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&sone,W,&one,Q,&one));
-1119:       PetscLogFlops(7.0*n*n);
-1120:       break;
-1121:     default: SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Wrong value of m %d",m);
-1122:   }
-1123:   PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&smone,P,&one,Q,&one));
-1124:   PetscStackCallBLAS("LAPACKgesv",LAPACKgesv_(&n_,&n_,Q,&n_,ipiv,P,&n_,&info));
-1125:   SlepcCheckLapackInfo("gesv",info);
-1126:   PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&stwo,P,&one));
-1127:   for (j=0;j<n;j++) P[j+j*n] += 1.0;
-1128:   PetscLogFlops(2.0*n*n*n/3.0+4.0*n*n);
-
-1130:   /* Squaring */
-1131:   for (j=1;j<=s;j++) {
-1132:     PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,P,&n_,P,&n_,&szero,W,&n_));
-1133:     SWAP(P,W,aux);
-1134:   }
-1135:   if (P!=Ba) { PetscMemcpy(Ba,P,n2*sizeof(PetscScalar)); }
-1136:   PetscLogFlops(2.0*n*n*n*s);
-
-1138:   PetscFree2(work,ipiv);
-1139:   MatDenseRestoreArray(A,&Aa);
-1140:   MatDenseRestoreArray(B,&Ba);
-1141:   return(0);
-1142: #endif
-1143: }
-
-1145: PetscErrorCode FNView_Exp(FN fn,PetscViewer viewer)
-1146: {
-1148:   PetscBool      isascii;
-1149:   char           str[50];
-1150:   const char     *methodname[] = {
-1151:                   "scaling & squaring, [m/m] Pade approximant (Higham)",
-1152:                   "scaling & squaring, [6/6] Pade approximant",
-1153:                   "scaling & squaring, subdiagonal Pade approximant"
-1154:   };
-1155:   const int      nmeth=sizeof(methodname)/sizeof(methodname[0]);
-
-1158:   PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&isascii);
-1159:   if (isascii) {
-1160:     if (fn->beta==(PetscScalar)1.0) {
-1161:       if (fn->alpha==(PetscScalar)1.0) {
-1162:         PetscViewerASCIIPrintf(viewer,"  Exponential: exp(x)\n");
-1163:       } else {
-1164:         SlepcSNPrintfScalar(str,50,fn->alpha,PETSC_TRUE);
-1165:         PetscViewerASCIIPrintf(viewer,"  Exponential: exp(%s*x)\n",str);
-1166:       }
-1167:     } else {
-1168:       SlepcSNPrintfScalar(str,50,fn->beta,PETSC_TRUE);
-1169:       if (fn->alpha==(PetscScalar)1.0) {
-1170:         PetscViewerASCIIPrintf(viewer,"  Exponential: %s*exp(x)\n",str);
-1171:       } else {
-1172:         PetscViewerASCIIPrintf(viewer,"  Exponential: %s",str);
-1173:         PetscViewerASCIIUseTabs(viewer,PETSC_FALSE);
-1174:         SlepcSNPrintfScalar(str,50,fn->alpha,PETSC_TRUE);
-1175:         PetscViewerASCIIPrintf(viewer,"*exp(%s*x)\n",str);
-1176:         PetscViewerASCIIUseTabs(viewer,PETSC_TRUE);
-1177:       }
-1178:     }
-1179:     if (fn->method<nmeth) {
-1180:       PetscViewerASCIIPrintf(viewer,"  computing matrix functions with: %s\n",methodname[fn->method]);
+772:   PetscScalar    *X,*Y,*Z,*S,*S_old,*aux,val,sone=1.0,szero=0.0;
+773:   PetscReal      est=0.0,est_old,vals[2]={0.0,0.0},*zvals,maxzval[2],raux;
+774:   PetscBLASInt   i,j,t=2,it=0,ind[2],est_j=0,m1;
+
+778:   X = work;
+779:   Y = work + 2*n;
+780:   Z = work + 4*n;
+781:   S = work + 6*n;
+782:   S_old = work + 8*n;
+783:   zvals = (PetscReal*)(work + 10*n);
+
+785:   for (i=0;i<n;i++) {  /* X has columns of unit 1-norm */
+786:     X[i] = 1.0/n;
+787:     PetscRandomGetValue(rand,&val);
+788:     if (PetscRealPart(val) < 0.5) X[i+n] = -1.0/n;
+789:     else X[i+n] = 1.0/n;
+790:   }
+791:   for (i=0;i<t*n;i++) S[i] = 0.0;
+792:   ind[0] = 0; ind[1] = 0;
+793:   est_old = 0;
+794:   while (1) {
+795:     it++;
+796:     for (j=0;j<m;j++) {  /* Y = A^m*X */
+797:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n,&t,&n,&sone,A,&n,X,&n,&szero,Y,&n));
+798:       if (j<m-1) SWAP(X,Y,aux);
+799:     }
+800:     for (j=0;j<t;j++) {  /* vals[j] = norm(Y(:,j),1) */
+801:       vals[j] = 0.0;
+802:       for (i=0;i<n;i++) vals[j] += PetscAbsScalar(Y[i+j*n]);
+803:     }
+804:     if (vals[0]<vals[1]) {
+805:       SWAP(vals[0],vals[1],raux);
+806:       m1 = 1;
+807:     } else m1 = 0;
+808:     est = vals[0];
+809:     if (est>est_old || it==2) est_j = ind[m1];
+810:     if (it>=2 && est<=est_old) {
+811:       est = est_old;
+812:       break;
+813:     }
+814:     est_old = est;
+815:     if (it>ITMAX) break;
+816:     SWAP(S,S_old,aux);
+817:     for (i=0;i<t*n;i++) {  /* S = sign(Y) */
+818:       S[i] = (PetscRealPart(Y[i]) < 0.0)? -1.0: 1.0;
+819:     }
+820:     for (j=0;j<m;j++) {  /* Z = (A^T)^m*S */
+821:       PetscStackCallBLAS("BLASgemm",BLASgemm_("C","N",&n,&t,&n,&sone,A,&n,S,&n,&szero,Z,&n));
+822:       if (j<m-1) SWAP(S,Z,aux);
+823:     }
+824:     maxzval[0] = -1; maxzval[1] = -1;
+825:     ind[0] = 0; ind[1] = 0;
+826:     for (i=0;i<n;i++) {  /* zvals[i] = norm(Z(i,:),inf) */
+827:       zvals[i] = PetscMax(PetscAbsScalar(Z[i+0*n]),PetscAbsScalar(Z[i+1*n]));
+828:       if (zvals[i]>maxzval[0]) {
+829:         maxzval[0] = zvals[i];
+830:         ind[0] = i;
+831:       } else if (zvals[i]>maxzval[1]) {
+832:         maxzval[1] = zvals[i];
+833:         ind[1] = i;
+834:       }
+835:     }
+836:     if (it>=2 && maxzval[0]==zvals[est_j]) break;
+837:     for (i=0;i<t*n;i++) X[i] = 0.0;
+838:     for (j=0;j<t;j++) X[ind[j]+j*n] = 1.0;
+839:   }
+840:   /* Flop count is roughly (it * 2*m * t*gemv) = 4*its*m*t*n*n */
+841:   PetscLogFlops(4.0*it*m*t*n*n);
+842:   PetscFunctionReturn(est);
+843: }
+
+845: #define SMALLN 100
+
+847: /*
+848:  * Estimate norm(A^m,1) (required workspace is 2*n*n)
+849:  */
+850: static PetscReal normAm(PetscBLASInt n,PetscScalar *A,PetscInt m,PetscScalar *work,PetscRandom rand)
+851: {
+852:   PetscScalar    *v=work,*w=work+n*n,*aux,sone=1.0,szero=0.0;
+853:   PetscReal      nrm,rwork[1],tmp;
+854:   PetscBLASInt   i,j,one=1;
+855:   PetscBool      isrealpos=PETSC_TRUE;
+
+859:   if (n<SMALLN) {   /* compute matrix power explicitly */
+860:     if (m==1) {
+861:       nrm = LAPACKlange_("O",&n,&n,A,&n,rwork);
+862:       PetscLogFlops(1.0*n*n);
+863:     } else {  /* m>=2 */
+864:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n,&n,&n,&sone,A,&n,A,&n,&szero,v,&n));
+865:       for (j=0;j<m-2;j++) {
+866:         PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n,&n,&n,&sone,A,&n,v,&n,&szero,w,&n));
+867:         SWAP(v,w,aux);
+868:       }
+869:       nrm = LAPACKlange_("O",&n,&n,v,&n,rwork);
+870:       PetscLogFlops(2.0*n*n*n*(m-1)+1.0*n*n);
+871:     }
+872:   } else {
+873:     for (i=0;i<n;i++)
+874:       for (j=0;j<n;j++) 
+875: #if defined(PETSC_USE_COMPLEX)
+876:         if (PetscRealPart(A[i+j*n])<0.0 || PetscImaginaryPart(A[i+j*n])!=0.0) { isrealpos = PETSC_FALSE; break; }
+877: #else
+878:         if (A[i+j*n]<0.0) { isrealpos = PETSC_FALSE; break; }
+879: #endif
+880:     if (isrealpos) {   /* for positive matrices only */
+881:       for (i=0;i<n;i++) v[i] = 1.0;
+882:       for (j=0;j<m;j++) {  /* w = A'*v */
+883:         PetscStackCallBLAS("BLASgemv",BLASgemv_("C",&n,&n,&sone,A,&n,v,&one,&szero,w,&one));
+884:         SWAP(v,w,aux);
+885:       }
+886:       PetscLogFlops(2.0*n*n*m);
+887:       nrm = 0.0;
+888:       for (i=0;i<n;i++) if ((tmp = PetscAbsScalar(v[i])) > nrm) nrm = tmp;   /* norm(v,inf) */
+889:     } else {
+890:       nrm = normest1(n,A,m,work,rand);
+891:     }
+892:   }
+893:   PetscFunctionReturn(nrm);
+894: }
+
+896: /*
+897:  * Function needed to compute optimal parameters (required workspace is 3*n*n)
+898:  */
+899: static PetscInt ell(PetscBLASInt n,PetscScalar *A,PetscReal coeff,PetscInt m,PetscScalar *work,PetscRandom rand)
+900: {
+901:   PetscScalar    *Ascaled=work;
+902:   PetscReal      nrm,alpha,beta,rwork[1];
+903:   PetscInt       t;
+904:   PetscBLASInt   i,j;
+
+908:   beta = PetscPowReal(coeff,1.0/(2*m+1));
+909:   for (i=0;i<n;i++)
+910:     for (j=0;j<n;j++) 
+911:       Ascaled[i+j*n] = beta*PetscAbsScalar(A[i+j*n]);
+912:   nrm = LAPACKlange_("O",&n,&n,A,&n,rwork);
+913:   PetscLogFlops(2.0*n*n);
+914:   alpha = normAm(n,Ascaled,2*m+1,work+n*n,rand)/nrm;
+915:   t = PetscMax((PetscInt)PetscCeilReal(PetscLogReal(2.0*alpha/PETSC_MACHINE_EPSILON)/PetscLogReal(2.0)/(2*m)),0);
+916:   PetscFunctionReturn(t);
+917: }
+
+919: /*
+920:  * Compute scaling parameter (s) and order of Pade approximant (m)  (required workspace is 4*n*n)
+921:  */
+922: static PetscErrorCode expm_params(PetscInt n,PetscScalar **Apowers,PetscInt *s,PetscInt *m,PetscScalar *work)
+923: {
+924:   PetscErrorCode  ierr;
+925:   PetscScalar     sfactor,sone=1.0,szero=0.0,*A=Apowers[0],*Ascaled;
+926:   PetscReal       d4,d6,d8,d10,eta1,eta3,eta4,eta5,rwork[1];
+927:   PetscBLASInt    n_,n2,one=1;
+928:   PetscRandom     rand;
+929:   const PetscReal coeff[5] = { 9.92063492063492e-06, 9.94131285136576e-11,  /* backward error function */
+930:                                2.22819456055356e-16, 1.69079293431187e-22, 8.82996160201868e-36 };
+931:   const PetscReal theta[5] = { 1.495585217958292e-002,    /* m = 3  */
+932:                                2.539398330063230e-001,    /* m = 5  */
+933:                                9.504178996162932e-001,    /* m = 7  */
+934:                                2.097847961257068e+000,    /* m = 9  */
+935:                                5.371920351148152e+000 };  /* m = 13 */
+
+938:   *s = 0;
+939:   *m = 13;
+940:   PetscBLASIntCast(n,&n_);
+941:   PetscRandomCreate(PETSC_COMM_SELF,&rand);
+942:   d4 = PetscPowReal(LAPACKlange_("O",&n_,&n_,Apowers[2],&n_,rwork),1.0/4.0);
+943:   if (d4==0.0) { /* safeguard for the case A = 0 */
+944:     *m = 3;
+945:     goto done;
+946:   }
+947:   d6 = PetscPowReal(LAPACKlange_("O",&n_,&n_,Apowers[3],&n_,rwork),1.0/6.0);
+948:   PetscLogFlops(2.0*n*n);
+949:   eta1 = PetscMax(d4,d6);
+950:   if (eta1<=theta[0] && !ell(n_,A,coeff[0],3,work,rand)) {
+951:     *m = 3;
+952:     goto done;
+953:   }
+954:   if (eta1<=theta[1] && !ell(n_,A,coeff[1],5,work,rand)) {
+955:     *m = 5;
+956:     goto done;
+957:   }
+958:   if (n<SMALLN) {
+959:     PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[2],&n_,Apowers[2],&n_,&szero,work,&n_));
+960:     d8 = PetscPowReal(LAPACKlange_("O",&n_,&n_,work,&n_,rwork),1.0/8.0);
+961:     PetscLogFlops(2.0*n*n*n+1.0*n*n);
+962:   } else {
+963:     d8 = PetscPowReal(normAm(n_,Apowers[2],2,work,rand),1.0/8.0);
+964:   }
+965:   eta3 = PetscMax(d6,d8);
+966:   if (eta3<=theta[2] && !ell(n_,A,coeff[2],7,work,rand)) {
+967:     *m = 7;
+968:     goto done;
+969:   }
+970:   if (eta3<=theta[3] && !ell(n_,A,coeff[3],9,work,rand)) {
+971:     *m = 9;
+972:     goto done;
+973:   }
+974:   if (n<SMALLN) {
+975:     PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[2],&n_,Apowers[3],&n_,&szero,work,&n_));
+976:     d10 = PetscPowReal(LAPACKlange_("O",&n_,&n_,work,&n_,rwork),1.0/10.0);
+977:     PetscLogFlops(2.0*n*n*n+1.0*n*n);
+978:   } else {
+979:     d10 = PetscPowReal(normAm(n_,Apowers[1],5,work,rand),1.0/10.0);
+980:   }
+981:   eta4 = PetscMax(d8,d10);
+982:   eta5 = PetscMin(eta3,eta4);
+983:   *s = PetscMax((PetscInt)PetscCeilReal(PetscLogReal(eta5/theta[4])/PetscLogReal(2.0)),0);
+984:   if (*s) {
+985:     Ascaled = work+3*n*n;
+986:     n2 = n_*n_;
+987:     PetscStackCallBLAS("BLAScopy",BLAScopy_(&n2,A,&one,Ascaled,&one));
+988:     sfactor = PetscPowRealInt(2.0,-(*s));
+989:     PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&sfactor,Ascaled,&one));
+990:     PetscLogFlops(1.0*n*n);
+991:   } else Ascaled = A;
+992:   *s += ell(n_,Ascaled,coeff[4],13,work,rand);
+993: done:
+994:   PetscRandomDestroy(&rand);
+995:   return(0);
+996: }
+
+998: /*
+999:  * Matrix exponential implementation based on algorithm and matlab code by N. Higham and co-authors
+1000:  *
+1001:  *     N. J. Higham, "The scaling and squaring method for the matrix exponential 
+1002:  *     revisited", SIAM J. Matrix Anal. Appl. 26(4):1179-1193, 2005.
+1003:  */
+1004: PetscErrorCode FNEvaluateFunctionMat_Exp_Higham(FN fn,Mat A,Mat B)
+1005: {
+1006: #if defined(PETSC_MISSING_LAPACK_GESV) || defined(SLEPC_MISSING_LAPACK_LANGE)
+1008:   SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"GESV/LANGE - Lapack routines are unavailable");
+1009: #else
+1010:   PetscErrorCode    ierr;
+1011:   PetscBLASInt      n_,n2,*ipiv,info,one=1;
+1012:   PetscInt          n,m,j,s;
+1013:   PetscScalar       scale,smone=-1.0,sone=1.0,stwo=2.0,szero=0.0;
+1014:   PetscScalar       *Aa,*Ba,*Apowers[5],*Q,*P,*W,*work,*aux;
+1015:   const PetscScalar *c;
+1016:   const PetscScalar c3[4]   = { 120, 60, 12, 1 };
+1017:   const PetscScalar c5[6]   = { 30240, 15120, 3360, 420, 30, 1 };
+1018:   const PetscScalar c7[8]   = { 17297280, 8648640, 1995840, 277200, 25200, 1512, 56, 1 };
+1019:   const PetscScalar c9[10]  = { 17643225600, 8821612800, 2075673600, 302702400, 30270240,
+1020:                                 2162160, 110880, 3960, 90, 1 };
+1021:   const PetscScalar c13[14] = { 64764752532480000, 32382376266240000, 7771770303897600,
+1022:                                 1187353796428800,  129060195264000,   10559470521600,
+1023:                                 670442572800,      33522128640,       1323241920,
+1024:                                 40840800,          960960,            16380,  182,  1 };
+
+1027:   MatDenseGetArray(A,&Aa);
+1028:   MatDenseGetArray(B,&Ba);
+1029:   MatGetSize(A,&n,NULL);
+1030:   PetscBLASIntCast(n,&n_);
+1031:   n2 = n_*n_;
+1032:   PetscMalloc2(8*n*n,&work,n,&ipiv);
+
+1034:   /* Matrix powers */
+1035:   Apowers[0] = work;                  /* Apowers[0] = A   */
+1036:   Apowers[1] = Apowers[0] + n*n;      /* Apowers[1] = A^2 */
+1037:   Apowers[2] = Apowers[1] + n*n;      /* Apowers[2] = A^4 */
+1038:   Apowers[3] = Apowers[2] + n*n;      /* Apowers[3] = A^6 */
+1039:   Apowers[4] = Apowers[3] + n*n;      /* Apowers[4] = A^8 */
+
+1041:   PetscMemcpy(Apowers[0],Aa,n2*sizeof(PetscScalar));
+1042:   PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[0],&n_,Apowers[0],&n_,&szero,Apowers[1],&n_));
+1043:   PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[1],&n_,Apowers[1],&n_,&szero,Apowers[2],&n_));
+1044:   PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[1],&n_,Apowers[2],&n_,&szero,Apowers[3],&n_));
+1045:   PetscLogFlops(6.0*n*n*n);
+
+1047:   /* Compute scaling parameter and order of Pade approximant */
+1048:   expm_params(n,Apowers,&s,&m,Apowers[4]);
+
+1050:   if (s) { /* rescale */
+1051:     for (j=0;j<4;j++) {
+1052:       scale = PetscPowRealInt(2.0,-PetscMax(2*j,1)*s);
+1053:       PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&scale,Apowers[j],&one));
+1054:     }
+1055:     PetscLogFlops(4.0*n*n);
+1056:   }
+
+1058:   /* Evaluate the Pade approximant */
+1059:   switch (m) {
+1060:     case 3:  c = c3;  break;
+1061:     case 5:  c = c5;  break;
+1062:     case 7:  c = c7;  break;
+1063:     case 9:  c = c9;  break;
+1064:     case 13: c = c13; break;
+1065:     default: SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Wrong value of m %d",m);
+1066:   }
+1067:   P = Ba;
+1068:   Q = Apowers[4] + n*n;
+1069:   W = Q + n*n;
+1070:   switch (m) {
+1071:     case 3:
+1072:     case 5:
+1073:     case 7:
+1074:     case 9:
+1075:       if (m==9) PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[1],&n_,Apowers[3],&n_,&szero,Apowers[4],&n_));
+1076:       PetscMemzero(P,n2*sizeof(PetscScalar));
+1077:       PetscMemzero(Q,n2*sizeof(PetscScalar));
+1078:       for (j=0;j<n;j++) {
+1079:         P[j+j*n] = c[1];
+1080:         Q[j+j*n] = c[0];
+1081:       }
+1082:       for (j=m;j>=3;j-=2) {
+1083:         PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[j],Apowers[(j+1)/2-1],&one,P,&one));
+1084:         PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[j-1],Apowers[(j+1)/2-1],&one,Q,&one));
+1085:         PetscLogFlops(4.0*n*n);
+1086:       }
+1087:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[0],&n_,P,&n_,&szero,W,&n_));
+1088:       PetscLogFlops(2.0*n*n*n);
+1089:       SWAP(P,W,aux);
+1090:       break;
+1091:     case 13:
+1092:       /*  P = A*(Apowers[3]*(c[13]*Apowers[3] + c[11]*Apowers[2] + c[9]*Apowers[1]) 
+1093:               + c[7]*Apowers[3] + c[5]*Apowers[2] + c[3]*Apowers[1] + c[1]*I)       */
+1094:       PetscStackCallBLAS("BLAScopy",BLAScopy_(&n2,Apowers[3],&one,P,&one));
+1095:       PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&c[13],P,&one));
+1096:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[11],Apowers[2],&one,P,&one));
+1097:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[9],Apowers[1],&one,P,&one));
+1098:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[3],&n_,P,&n_,&szero,W,&n_));
+1099:       PetscLogFlops(5.0*n*n+2.0*n*n*n);
+1100:       PetscMemzero(P,n2*sizeof(PetscScalar));
+1101:       for (j=0;j<n;j++) P[j+j*n] = c[1];
+1102:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[7],Apowers[3],&one,P,&one));
+1103:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[5],Apowers[2],&one,P,&one));
+1104:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[3],Apowers[1],&one,P,&one));
+1105:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&sone,P,&one,W,&one));
+1106:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[0],&n_,W,&n_,&szero,P,&n_));
+1107:       PetscLogFlops(7.0*n*n+2.0*n*n*n);
+1108:       /*  Q = Apowers[3]*(c[12]*Apowers[3] + c[10]*Apowers[2] + c[8]*Apowers[1])
+1109:               + c[6]*Apowers[3] + c[4]*Apowers[2] + c[2]*Apowers[1] + c[0]*I        */
+1110:       PetscStackCallBLAS("BLAScopy",BLAScopy_(&n2,Apowers[3],&one,Q,&one));
+1111:       PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&c[12],Q,&one));
+1112:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[10],Apowers[2],&one,Q,&one));
+1113:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[8],Apowers[1],&one,Q,&one));
+1114:       PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,Apowers[3],&n_,Q,&n_,&szero,W,&n_));
+1115:       PetscLogFlops(5.0*n*n+2.0*n*n*n);
+1116:       PetscMemzero(Q,n2*sizeof(PetscScalar));
+1117:       for (j=0;j<n;j++) Q[j+j*n] = c[0];
+1118:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[6],Apowers[3],&one,Q,&one));
+1119:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[4],Apowers[2],&one,Q,&one));
+1120:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&c[2],Apowers[1],&one,Q,&one));
+1121:       PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&sone,W,&one,Q,&one));
+1122:       PetscLogFlops(7.0*n*n);
+1123:       break;
+1124:     default: SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Wrong value of m %d",m);
+1125:   }
+1126:   PetscStackCallBLAS("BLASaxpy",BLASaxpy_(&n2,&smone,P,&one,Q,&one));
+1127:   PetscStackCallBLAS("LAPACKgesv",LAPACKgesv_(&n_,&n_,Q,&n_,ipiv,P,&n_,&info));
+1128:   SlepcCheckLapackInfo("gesv",info);
+1129:   PetscStackCallBLAS("BLASscal",BLASscal_(&n2,&stwo,P,&one));
+1130:   for (j=0;j<n;j++) P[j+j*n] += 1.0;
+1131:   PetscLogFlops(2.0*n*n*n/3.0+4.0*n*n);
+
+1133:   /* Squaring */
+1134:   for (j=1;j<=s;j++) {
+1135:     PetscStackCallBLAS("BLASgemm",BLASgemm_("N","N",&n_,&n_,&n_,&sone,P,&n_,P,&n_,&szero,W,&n_));
+1136:     SWAP(P,W,aux);
+1137:   }
+1138:   if (P!=Ba) { PetscMemcpy(Ba,P,n2*sizeof(PetscScalar)); }
+1139:   PetscLogFlops(2.0*n*n*n*s);
+
+1141:   PetscFree2(work,ipiv);
+1142:   MatDenseRestoreArray(A,&Aa);
+1143:   MatDenseRestoreArray(B,&Ba);
+1144:   return(0);
+1145: #endif
+1146: }
+
+1148: PetscErrorCode FNView_Exp(FN fn,PetscViewer viewer)
+1149: {
+1151:   PetscBool      isascii;
+1152:   char           str[50];
+1153:   const char     *methodname[] = {
+1154:                   "scaling & squaring, [m/m] Pade approximant (Higham)",
+1155:                   "scaling & squaring, [6/6] Pade approximant",
+1156:                   "scaling & squaring, subdiagonal Pade approximant"
+1157:   };
+1158:   const int      nmeth=sizeof(methodname)/sizeof(methodname[0]);
+
+1161:   PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&isascii);
+1162:   if (isascii) {
+1163:     if (fn->beta==(PetscScalar)1.0) {
+1164:       if (fn->alpha==(PetscScalar)1.0) {
+1165:         PetscViewerASCIIPrintf(viewer,"  Exponential: exp(x)\n");
+1166:       } else {
+1167:         SlepcSNPrintfScalar(str,50,fn->alpha,PETSC_TRUE);
+1168:         PetscViewerASCIIPrintf(viewer,"  Exponential: exp(%s*x)\n",str);
+1169:       }
+1170:     } else {
+1171:       SlepcSNPrintfScalar(str,50,fn->beta,PETSC_TRUE);
+1172:       if (fn->alpha==(PetscScalar)1.0) {
+1173:         PetscViewerASCIIPrintf(viewer,"  Exponential: %s*exp(x)\n",str);
+1174:       } else {
+1175:         PetscViewerASCIIPrintf(viewer,"  Exponential: %s",str);
+1176:         PetscViewerASCIIUseTabs(viewer,PETSC_FALSE);
+1177:         SlepcSNPrintfScalar(str,50,fn->alpha,PETSC_TRUE);
+1178:         PetscViewerASCIIPrintf(viewer,"*exp(%s*x)\n",str);
+1179:         PetscViewerASCIIUseTabs(viewer,PETSC_TRUE);
+1180:       }
 1181:     }
-1182:   }
-1183:   return(0);
-1184: }
-
-1186: PETSC_EXTERN PetscErrorCode FNCreate_Exp(FN fn)
-1187: {
-1189:   fn->ops->evaluatefunction       = FNEvaluateFunction_Exp;
-1190:   fn->ops->evaluatederivative     = FNEvaluateDerivative_Exp;
-1191:   fn->ops->evaluatefunctionmat[0] = FNEvaluateFunctionMat_Exp_Higham;
-1192:   fn->ops->evaluatefunctionmat[1] = FNEvaluateFunctionMat_Exp_Pade;
-1193:   fn->ops->evaluatefunctionmat[2] = FNEvaluateFunctionMat_Exp_GuettelNakatsukasa;
-1194:   fn->ops->view                   = FNView_Exp;
-1195:   return(0);
-1196: }
+1182:     if (fn->method<nmeth) {
+1183:       PetscViewerASCIIPrintf(viewer,"  computing matrix functions with: %s\n",methodname[fn->method]);
+1184:     }
+1185:   }
+1186:   return(0);
+1187: }
+
+1189: PETSC_EXTERN PetscErrorCode FNCreate_Exp(FN fn)
+1190: {
+1192:   fn->ops->evaluatefunction       = FNEvaluateFunction_Exp;
+1193:   fn->ops->evaluatederivative     = FNEvaluateDerivative_Exp;
+1194:   fn->ops->evaluatefunctionmat[0] = FNEvaluateFunctionMat_Exp_Higham;
+1195:   fn->ops->evaluatefunctionmat[1] = FNEvaluateFunctionMat_Exp_Pade;
+1196:   fn->ops->evaluatefunctionmat[2] = FNEvaluateFunctionMat_Exp_GuettelNakatsukasa;
+1197:   fn->ops->view                   = FNView_Exp;
+1198:   return(0);
+1199: }
 
 
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/exp/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/exp/index.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/exp/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/exp/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/exp/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/exp/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/exp/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/exp/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/fnutil.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/fnutil.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/fnutil.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/fnutil.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/log/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/log/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/log/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/log/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/log/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/log/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/log/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/log/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/phi/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/phi/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/phi/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/phi/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/phi/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/phi/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/phi/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/phi/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/rational/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/rational/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/rational/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/rational/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/rational/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/rational/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/rational/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/rational/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/sqrt/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/sqrt/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/sqrt/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/sqrt/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/fnregis.c.html slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/fnregis.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/fnregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/fnregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/index.html slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Mathematical Function - FN

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/fn/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/fn/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/fn/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/fn/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/fn/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/fn/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/index.html slepc-3.10.2+dfsg1/src/sys/classes/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/test1f.F.html slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/test1f.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/test1f.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/test1f.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90 slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90	2019-02-11 16:58:45.000000000 +0000
@@ -20,6 +20,38 @@
        PetscReal g ! PetscReal
        integer z
        end subroutine
+      subroutine RGEllipseSetParameters(a,b,c,d,z)
+      use slepcrgdef
+       RG a ! RG
+       PetscScalar b ! PetscScalar
+       PetscReal c ! PetscReal
+       PetscReal d ! PetscReal
+       integer z
+       end subroutine
+      subroutine RGEllipseGetParameters(a,b,c,d,z)
+      use slepcrgdef
+       RG a ! RG
+       PetscScalar b ! PetscScalar
+       PetscReal c ! PetscReal
+       PetscReal d ! PetscReal
+       integer z
+       end subroutine
+      subroutine RGPolygonSetVertices(a,b,c,d,z)
+      use slepcrgdef
+       RG a ! RG
+       PetscInt b ! PetscInt
+       PetscScalar c (*) ! PetscScalar
+       PetscScalar d (*) ! PetscScalar
+       integer z
+       end subroutine
+      subroutine RGPolygonGetVertices(a,b,c,d,z)
+      use slepcrgdef
+       RG a ! RG
+       PetscInt b ! PetscInt
+       PetscScalar c ! PetscScalar
+       PetscScalar d ! PetscScalar
+       integer z
+       end subroutine
       subroutine RGIntervalSetEndpoints(a,b,c,d,e,z)
       use slepcrgdef
        RG a ! RG
@@ -121,35 +153,3 @@
        RG a ! RG
        integer z
        end subroutine
-      subroutine RGPolygonSetVertices(a,b,c,d,z)
-      use slepcrgdef
-       RG a ! RG
-       PetscInt b ! PetscInt
-       PetscScalar c (*) ! PetscScalar
-       PetscScalar d (*) ! PetscScalar
-       integer z
-       end subroutine
-      subroutine RGPolygonGetVertices(a,b,c,d,z)
-      use slepcrgdef
-       RG a ! RG
-       PetscInt b ! PetscInt
-       PetscScalar c ! PetscScalar
-       PetscScalar d ! PetscScalar
-       integer z
-       end subroutine
-      subroutine RGEllipseSetParameters(a,b,c,d,z)
-      use slepcrgdef
-       RG a ! RG
-       PetscScalar b ! PetscScalar
-       PetscReal c ! PetscReal
-       PetscReal d ! PetscReal
-       integer z
-       end subroutine
-      subroutine RGEllipseGetParameters(a,b,c,d,z)
-      use slepcrgdef
-       RG a ! RG
-       PetscScalar b ! PetscScalar
-       PetscReal c ! PetscReal
-       PetscReal d ! PetscReal
-       integer z
-       end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrgmod.F.html slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrgmod.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrgmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrgmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ellipse/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ellipse/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ellipse/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ellipse/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/interval/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/interval/index.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/interval/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/interval/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/interval/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/interval/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/interval/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/interval/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/polygon/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/polygon/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/polygon/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/polygon/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ring/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ring/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ring/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ring/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ring/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ring/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ring/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ring/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/index.html slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/index.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Region - RG

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/rgregis.c.html slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/rgregis.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/interface/rgregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/interface/rgregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/rg/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/rg/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/rg/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/rg/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test2.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test2.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test2.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test2.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test3.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test3.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test3.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test3.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test4.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test4.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test4.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test4.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test5.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test5.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/examples/tests/test5.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/examples/tests/test5.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90 slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90
--- slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90	2019-02-11 16:58:45.000000000 +0000
@@ -1,47 +1,37 @@
-      subroutine STFilterSetInterval(a,b,c,z)
-      use slepcstdef
-       ST a ! ST
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-       integer z
-       end subroutine
-      subroutine STFilterGetInterval(a,b,c,z)
+      subroutine STPrecondGetMatForPC(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
+       Mat b ! Mat
        integer z
        end subroutine
-      subroutine STFilterSetRange(a,b,c,z)
+      subroutine STPrecondSetMatForPC(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
+       Mat b ! Mat
        integer z
        end subroutine
-      subroutine STFilterGetRange(a,b,c,z)
+      subroutine STPrecondSetKSPHasMat(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine STFilterSetDegree(a,b,z)
+      subroutine STPrecondGetKSPHasMat(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscInt b ! PetscInt
+       PetscBool b ! PetscBool
        integer z
        end subroutine
-      subroutine STFilterGetDegree(a,b,z)
+      subroutine STCayleySetAntishift(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscInt b ! PetscInt
+       PetscScalar b ! PetscScalar
        integer z
        end subroutine
-      subroutine STFilterGetThreshold(a,b,z)
+      subroutine STCayleyGetAntishift(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscReal b ! PetscReal
+       PetscScalar b ! PetscScalar
        integer z
        end subroutine
       subroutine STSetFromOptions(a,z)
@@ -294,39 +284,49 @@
        PetscInt c ! PetscInt
        integer z
        end subroutine
-      subroutine STPrecondGetMatForPC(a,b,z)
+      subroutine STFilterSetInterval(a,b,c,z)
       use slepcstdef
        ST a ! ST
-       Mat b ! Mat
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine STPrecondSetMatForPC(a,b,z)
+      subroutine STFilterGetInterval(a,b,c,z)
       use slepcstdef
        ST a ! ST
-       Mat b ! Mat
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine STPrecondSetKSPHasMat(a,b,z)
+      subroutine STFilterSetRange(a,b,c,z)
       use slepcstdef
        ST a ! ST
-       PetscBool b ! PetscBool
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine STPrecondGetKSPHasMat(a,b,z)
+      subroutine STFilterGetRange(a,b,c,z)
       use slepcstdef
        ST a ! ST
-       PetscBool b ! PetscBool
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
        integer z
        end subroutine
-      subroutine STCayleySetAntishift(a,b,z)
+      subroutine STFilterSetDegree(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscScalar b ! PetscScalar
+       PetscInt b ! PetscInt
        integer z
        end subroutine
-      subroutine STCayleyGetAntishift(a,b,z)
+      subroutine STFilterGetDegree(a,b,z)
       use slepcstdef
        ST a ! ST
-       PetscScalar b ! PetscScalar
+       PetscInt b ! PetscInt
+       integer z
+       end subroutine
+      subroutine STFilterGetThreshold(a,b,z)
+      use slepcstdef
+       ST a ! ST
+       PetscReal b ! PetscReal
        integer z
        end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/slepcstmod.F.html slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/slepcstmod.F.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/f90-mod/slepcstmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/f90-mod/slepcstmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/cayley/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/cayley/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/cayley/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/cayley/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/cayley/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/cayley/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/cayley/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/cayley/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/filter.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/filter.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/filter.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/filter.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/filter.h.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/filter.h.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/filter.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/filter.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/filter/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/filter/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/precond/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/precond/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/precond/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/precond/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/precond/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/precond/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/precond/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/precond/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/precond/precond.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/precond/precond.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/precond/precond.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/precond/precond.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shell/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shell/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shell/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shell/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shell/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shell/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shell/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shell/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shell/shell.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shell/shell.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shell/shell.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shell/shell.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shift/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shift/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shift/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shift/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shift/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shift/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shift/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shift/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shift/shift.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shift/shift.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/shift/shift.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/shift/shift.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/sinvert/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/sinvert/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/sinvert/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/sinvert/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/index.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/index.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/index.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/index.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/index.html 2019-02-11 16:58:45.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

Spectral Transformation - ST

diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/makefile.html --- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stfunc.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stfunc.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stfunc.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stfunc.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stregis.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stregis.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stregis.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stregis.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stset.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stset.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stset.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stset.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stshellmat.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stshellmat.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stshellmat.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stshellmat.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stsles.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stsles.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stsles.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stsles.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stsolve.c.html slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stsolve.c.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/interface/stsolve.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/interface/stsolve.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/classes/st/makefile.html slepc-3.10.2+dfsg1/src/sys/classes/st/makefile.html
--- slepc-3.10.1+dfsg1/src/sys/classes/st/makefile.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/classes/st/makefile.html	2019-02-11 16:58:45.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/dlregisslepc.c.html slepc-3.10.2+dfsg1/src/sys/dlregisslepc.c.html
--- slepc-3.10.1+dfsg1/src/sys/dlregisslepc.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/dlregisslepc.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/index.html slepc-3.10.2+dfsg1/src/sys/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
tutorials/
diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/tutorials/ex33.c.html slepc-3.10.2+dfsg1/src/sys/examples/tutorials/ex33.c.html
--- slepc-3.10.1+dfsg1/src/sys/examples/tutorials/ex33.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/examples/tutorials/ex33.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/tutorials/index.html slepc-3.10.2+dfsg1/src/sys/examples/tutorials/index.html
--- slepc-3.10.1+dfsg1/src/sys/examples/tutorials/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/examples/tutorials/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/examples/tutorials/makefile.html slepc-3.10.2+dfsg1/src/sys/examples/tutorials/makefile.html --- slepc-3.10.1+dfsg1/src/sys/examples/tutorials/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/examples/tutorials/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90 slepc-3.10.2+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90
--- slepc-3.10.1+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90	2019-02-11 16:58:45.000000000 +0000
@@ -11,6 +11,20 @@
        Mat i ! Mat
        integer z
        end subroutine
+      subroutine VecNormalizeComplex(a,b,c,d,z)
+      use slepcsysdef
+       Vec a ! Vec
+       Vec b ! Vec
+       PetscBool c ! PetscBool
+       PetscReal d ! PetscReal
+       integer z
+       end subroutine
+      subroutine VecDuplicateEmpty(a,b,z)
+      use slepcsysdef
+       Vec a ! Vec
+       Vec b ! Vec
+       integer z
+       end subroutine
       subroutine SlepcInitialized(a,z)
       use slepcsysdef
        PetscBool a ! PetscBool
@@ -35,17 +49,3 @@
        PetscInt e ! PetscInt
        integer z
        end subroutine
-      subroutine VecNormalizeComplex(a,b,c,d,z)
-      use slepcsysdef
-       Vec a ! Vec
-       Vec b ! Vec
-       PetscBool c ! PetscBool
-       PetscReal d ! PetscReal
-       integer z
-       end subroutine
-      subroutine VecDuplicateEmpty(a,b,z)
-      use slepcsysdef
-       Vec a ! Vec
-       Vec b ! Vec
-       integer z
-       end subroutine
diff -Nru slepc-3.10.1+dfsg1/src/sys/f90-mod/index.html slepc-3.10.2+dfsg1/src/sys/f90-mod/index.html
--- slepc-3.10.1+dfsg1/src/sys/f90-mod/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/f90-mod/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/f90-mod/makefile.html slepc-3.10.2+dfsg1/src/sys/f90-mod/makefile.html --- slepc-3.10.1+dfsg1/src/sys/f90-mod/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/f90-mod/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/f90-mod/slepcsysmod.F.html slepc-3.10.2+dfsg1/src/sys/f90-mod/slepcsysmod.F.html
--- slepc-3.10.1+dfsg1/src/sys/f90-mod/slepcsysmod.F.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/f90-mod/slepcsysmod.F.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/index.html slepc-3.10.2+dfsg1/src/sys/index.html
--- slepc-3.10.1+dfsg1/src/sys/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/makefile.html slepc-3.10.2+dfsg1/src/sys/makefile.html --- slepc-3.10.1+dfsg1/src/sys/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/examples/index.html slepc-3.10.2+dfsg1/src/sys/mat/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/mat/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/mat/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/mat/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/mat/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/mat/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/mat/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/mat/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/mat/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/mat/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/mat/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/mat/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/mat/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/mat/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/mat/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/index.html slepc-3.10.2+dfsg1/src/sys/mat/index.html
--- slepc-3.10.1+dfsg1/src/sys/mat/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/mat/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/makefile.html slepc-3.10.2+dfsg1/src/sys/mat/makefile.html --- slepc-3.10.1+dfsg1/src/sys/mat/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/mat/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/mat/matutil.c.html slepc-3.10.2+dfsg1/src/sys/mat/matutil.c.html
--- slepc-3.10.1+dfsg1/src/sys/mat/matutil.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/mat/matutil.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/slepcinit.c slepc-3.10.2+dfsg1/src/sys/slepcinit.c
--- slepc-3.10.1+dfsg1/src/sys/slepcinit.c	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/slepcinit.c	2019-02-11 16:58:45.000000000 +0000
@@ -133,6 +133,20 @@
 }
 #endif
 
+#if defined(PETSC_HAVE_THREADSAFETY)
+PETSC_EXTERN PetscErrorCode STInitializePackage(void);
+PETSC_EXTERN PetscErrorCode DSInitializePackage(void);
+PETSC_EXTERN PetscErrorCode FNInitializePackage(void);
+PETSC_EXTERN PetscErrorCode BVInitializePackage(void);
+PETSC_EXTERN PetscErrorCode RGInitializePackage(void);
+PETSC_EXTERN PetscErrorCode EPSInitializePackage(void);
+PETSC_EXTERN PetscErrorCode SVDInitializePackage(void);
+PETSC_EXTERN PetscErrorCode PEPInitializePackage(void);
+PETSC_EXTERN PetscErrorCode NEPInitializePackage(void);
+PETSC_EXTERN PetscErrorCode MFNInitializePackage(void);
+PETSC_EXTERN PetscErrorCode LMEInitializePackage(void);
+#endif
+
 /*
     SlepcInitialize_DynamicLibraries - Adds the default dynamic link libraries to the
     search path.
diff -Nru slepc-3.10.1+dfsg1/src/sys/slepcinit.c.html slepc-3.10.2+dfsg1/src/sys/slepcinit.c.html
--- slepc-3.10.1+dfsg1/src/sys/slepcinit.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/slepcinit.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -139,207 +139,221 @@
 133: }
 134: #endif
 
-136: /*
-137:     SlepcInitialize_DynamicLibraries - Adds the default dynamic link libraries to the
-138:     search path.
-139: */
-140: PetscErrorCode SlepcInitialize_DynamicLibraries(void)
-141: {
-142: #if (defined(PETSC_HAVE_DYNAMIC_LIBRARIES) && defined(PETSC_USE_SHARED_LIBRARIES)) || defined(PETSC_HAVE_THREADSAFETY)
-144: #endif
-145: #if defined(PETSC_HAVE_DYNAMIC_LIBRARIES) && defined(PETSC_USE_SHARED_LIBRARIES)
-146:   PetscBool      found,preload;
-147: #endif
-
-150: #if defined(PETSC_HAVE_DYNAMIC_LIBRARIES) && defined(PETSC_USE_SHARED_LIBRARIES)
-151:   preload = PETSC_FALSE;
-152:   PetscOptionsGetBool(NULL,NULL,"-dynamic_library_preload",&preload,NULL);
-153:   if (preload) {
-154: #if defined(PETSC_USE_SINGLE_LIBRARY)
-155:     SlepcLoadDynamicLibrary("",&found);
-156:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc dynamic library\nYou cannot move the dynamic libraries!");
-157: #else
-158:     SlepcLoadDynamicLibrary("sys",&found);
-159:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc sys dynamic library\nYou cannot move the dynamic libraries!");
-160:     SlepcLoadDynamicLibrary("eps",&found);
-161:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc EPS dynamic library\nYou cannot move the dynamic libraries!");
-162:     SlepcLoadDynamicLibrary("pep",&found);
-163:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc PEP dynamic library\nYou cannot move the dynamic libraries!");
-164:     SlepcLoadDynamicLibrary("nep",&found);
-165:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc NEP dynamic library\nYou cannot move the dynamic libraries!");
-166:     SlepcLoadDynamicLibrary("svd",&found);
-167:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc SVD dynamic library\nYou cannot move the dynamic libraries!");
-168:     SlepcLoadDynamicLibrary("mfn",&found);
-169:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc MFN dynamic library\nYou cannot move the dynamic libraries!");
-170:     SlepcLoadDynamicLibrary("lme",&found);
-171:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc LME dynamic library\nYou cannot move the dynamic libraries!");
-172: #endif
-173:   }
-174: #endif
-
-176: #if defined(PETSC_HAVE_THREADSAFETY)
-177:   STInitializePackage();
-178:   DSInitializePackage();
-179:   FNInitializePackage();
-180:   BVInitializePackage();
-181:   RGInitializePackage();
-182:   EPSInitializePackage();
-183:   SVDInitializePackage();
-184:   PEPInitializePackage();
-185:   NEPInitializePackage();
-186:   MFNInitializePackage();
-187:   LMEInitializePackage();
+136: #if defined(PETSC_HAVE_THREADSAFETY)
+137: PETSC_EXTERN PetscErrorCode STInitializePackage(void);
+138: PETSC_EXTERN PetscErrorCode DSInitializePackage(void);
+139: PETSC_EXTERN PetscErrorCode FNInitializePackage(void);
+140: PETSC_EXTERN PetscErrorCode BVInitializePackage(void);
+141: PETSC_EXTERN PetscErrorCode RGInitializePackage(void);
+142: PETSC_EXTERN PetscErrorCode EPSInitializePackage(void);
+143: PETSC_EXTERN PetscErrorCode SVDInitializePackage(void);
+144: PETSC_EXTERN PetscErrorCode PEPInitializePackage(void);
+145: PETSC_EXTERN PetscErrorCode NEPInitializePackage(void);
+146: PETSC_EXTERN PetscErrorCode MFNInitializePackage(void);
+147: PETSC_EXTERN PetscErrorCode LMEInitializePackage(void);
+148: #endif
+
+150: /*
+151:     SlepcInitialize_DynamicLibraries - Adds the default dynamic link libraries to the
+152:     search path.
+153: */
+154: PetscErrorCode SlepcInitialize_DynamicLibraries(void)
+155: {
+156: #if (defined(PETSC_HAVE_DYNAMIC_LIBRARIES) && defined(PETSC_USE_SHARED_LIBRARIES)) || defined(PETSC_HAVE_THREADSAFETY)
+158: #endif
+159: #if defined(PETSC_HAVE_DYNAMIC_LIBRARIES) && defined(PETSC_USE_SHARED_LIBRARIES)
+160:   PetscBool      found,preload;
+161: #endif
+
+164: #if defined(PETSC_HAVE_DYNAMIC_LIBRARIES) && defined(PETSC_USE_SHARED_LIBRARIES)
+165:   preload = PETSC_FALSE;
+166:   PetscOptionsGetBool(NULL,NULL,"-dynamic_library_preload",&preload,NULL);
+167:   if (preload) {
+168: #if defined(PETSC_USE_SINGLE_LIBRARY)
+169:     SlepcLoadDynamicLibrary("",&found);
+170:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc dynamic library\nYou cannot move the dynamic libraries!");
+171: #else
+172:     SlepcLoadDynamicLibrary("sys",&found);
+173:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc sys dynamic library\nYou cannot move the dynamic libraries!");
+174:     SlepcLoadDynamicLibrary("eps",&found);
+175:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc EPS dynamic library\nYou cannot move the dynamic libraries!");
+176:     SlepcLoadDynamicLibrary("pep",&found);
+177:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc PEP dynamic library\nYou cannot move the dynamic libraries!");
+178:     SlepcLoadDynamicLibrary("nep",&found);
+179:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc NEP dynamic library\nYou cannot move the dynamic libraries!");
+180:     SlepcLoadDynamicLibrary("svd",&found);
+181:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc SVD dynamic library\nYou cannot move the dynamic libraries!");
+182:     SlepcLoadDynamicLibrary("mfn",&found);
+183:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc MFN dynamic library\nYou cannot move the dynamic libraries!");
+184:     SlepcLoadDynamicLibrary("lme",&found);
+185:     if (!found) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc LME dynamic library\nYou cannot move the dynamic libraries!");
+186: #endif
+187:   }
 188: #endif
-189:   return(0);
-190: }
 
-192: PetscErrorCode SlepcCitationsInitialize()
-193: {
-
-197:   PetscCitationsRegister("@Article{slepc-toms,\n"
-198:     "   author = \"Vicente Hernandez and Jose E. Roman and Vicente Vidal\",\n"
-199:     "   title = \"{SLEPc}: A Scalable and Flexible Toolkit for the Solution of Eigenvalue Problems\",\n"
-200:     "   journal = \"{ACM} Trans. Math. Software\",\n"
-201:     "   volume = \"31\",\n"
-202:     "   number = \"3\",\n"
-203:     "   pages = \"351--362\",\n"
-204:     "   year = \"2005,\"\n"
-205:     "   doi = \"https://doi.org/10.1145/1089014.1089019\"\n"
-206:     "}\n",NULL);
-207:   PetscCitationsRegister("@TechReport{slepc-manual,\n"
-208:     "   author = \"J. E. Roman and C. Campos and E. Romero and A. Tomas\",\n"
-209:     "   title = \"{SLEPc} Users Manual\",\n"
-210:     "   number = \"DSIC-II/24/02 - Revision 3.10\",\n"
-211:     "   institution = \"D. Sistemes Inform\\`atics i Computaci\\'o, Universitat Polit\\`ecnica de Val\\`encia\",\n"
-212:     "   year = \"2018\"\n"
-213:     "}\n",NULL);
-214:   return(0);
-215: }
-
-217: /*@C
-218:    SlepcInitialize - Initializes the SLEPc library. SlepcInitialize() calls
-219:    PetscInitialize() if that has not been called yet, so this routine should
-220:    always be called near the beginning of your program.
-
-222:    Collective on MPI_COMM_WORLD or PETSC_COMM_WORLD if it has been set
-
-224:    Input Parameters:
-225: +  argc - count of number of command line arguments
-226: .  args - the command line arguments
-227: .  file - [optional] PETSc database file, defaults to ~username/.petscrc
-228:           (use NULL for default)
-229: -  help - [optional] Help message to print, use NULL for no message
-
-231:    Fortran Note:
-232:    Fortran syntax is very similar to that of PetscInitialize()
-
-234:    Level: beginner
-
-236: .seealso: SlepcFinalize(), PetscInitialize()
-237: @*/
-238: PetscErrorCode SlepcInitialize(int *argc,char ***args,const char file[],const char help[])
-239: {
-241:   PetscBool      flg;
-
-244:   if (SlepcInitializeCalled) return(0);
-245:   PetscSetHelpVersionFunctions(SlepcPrintHelpIntro,SlepcPrintVersion);
-246:   PetscInitialized(&flg);
-247:   if (!flg) {
-248:     PetscInitialize(argc,args,file,help);
-249:     SlepcBeganPetsc = PETSC_TRUE;
-250:   }
-
-252:   SlepcCitationsInitialize();
-
-254:   /* Load the dynamic libraries (on machines that support them), this registers all the solvers etc. */
-255:   SlepcInitialize_DynamicLibraries();
-
-257: #if defined(PETSC_HAVE_DRAND48)
-258:   /* work-around for Cygwin drand48() initialization bug */
-259:   srand48(0);
-260: #endif
-
-262:   SlepcInitializeCalled = PETSC_TRUE;
-263:   PetscInfo(0,"SLEPc successfully started\n");
-264:   return(0);
-265: }
-
-267: /*@C
-268:    SlepcFinalize - Checks for options to be called at the conclusion
-269:    of the SLEPc program and calls PetscFinalize().
-
-271:    Collective on PETSC_COMM_WORLD
-
-273:    Level: beginner
-
-275: .seealso: SlepcInitialize(), PetscFinalize()
-276: @*/
-277: PetscErrorCode SlepcFinalize(void)
-278: {
-279:   PetscErrorCode 0;
-
-282:   PetscInfo(0,"SlepcFinalize() called\n");
-283:   if (SlepcBeganPetsc) {
-284:     PetscFinalize();
-285:   }
-286:   SlepcInitializeCalled = PETSC_FALSE;
-287:   PetscFunctionReturn(ierr);
-288: }
-
-290: /*@C
-291:    SlepcInitializeNoArguments - Calls SlepcInitialize() from C/C++ without
-292:    the command line arguments.
-
-294:    Collective
-
-296:    Level: advanced
-
-298: .seealso: SlepcInitialize(), SlepcInitializeFortran()
-299: @*/
-300: PetscErrorCode SlepcInitializeNoArguments(void)
-301: {
-303:   int            argc = 0;
-304:   char           **args = 0;
-
-307:   SlepcInitialize(&argc,&args,NULL,NULL);
-308:   PetscFunctionReturn(ierr);
-309: }
-
-311: /*@
-312:    SlepcInitialized - Determine whether SLEPc is initialized.
-
-314:    Level: beginner
-
-316: .seealso: SlepcInitialize(), SlepcInitializeFortran()
-317: @*/
-318: PetscErrorCode SlepcInitialized(PetscBool *isInitialized)
-319: {
-322:   *isInitialized = SlepcInitializeCalled;
-323:   return(0);
-324: }
-
-326: PETSC_EXTERN PetscBool PetscBeganMPI;
-
-328: /*
-329:    SlepcInitializeNoPointers - Calls SlepcInitialize() from C/C++ without the pointers
-330:    to argc and args (analogue to PetscInitializeNoPointers).
-
-332:    Collective
-
-334:    Level: advanced
-
-336: .seealso: SlepcInitialize()
-337: */
-338: PetscErrorCode SlepcInitializeNoPointers(int argc,char **args,const char *filename,const char *help)
-339: {
-341:   int            myargc = argc;
-342:   char           **myargs = args;
-
-345:   SlepcInitialize(&myargc,&myargs,filename,help);
-346:   PetscPopSignalHandler();
-347:   PetscBeganMPI = PETSC_FALSE;
-348:   PetscFunctionReturn(ierr);
-349: }
+190: #if defined(PETSC_HAVE_THREADSAFETY)
+191:   STInitializePackage();
+192:   DSInitializePackage();
+193:   FNInitializePackage();
+194:   BVInitializePackage();
+195:   RGInitializePackage();
+196:   EPSInitializePackage();
+197:   SVDInitializePackage();
+198:   PEPInitializePackage();
+199:   NEPInitializePackage();
+200:   MFNInitializePackage();
+201:   LMEInitializePackage();
+202: #endif
+203:   return(0);
+204: }
+
+206: PetscErrorCode SlepcCitationsInitialize()
+207: {
+
+211:   PetscCitationsRegister("@Article{slepc-toms,\n"
+212:     "   author = \"Vicente Hernandez and Jose E. Roman and Vicente Vidal\",\n"
+213:     "   title = \"{SLEPc}: A Scalable and Flexible Toolkit for the Solution of Eigenvalue Problems\",\n"
+214:     "   journal = \"{ACM} Trans. Math. Software\",\n"
+215:     "   volume = \"31\",\n"
+216:     "   number = \"3\",\n"
+217:     "   pages = \"351--362\",\n"
+218:     "   year = \"2005,\"\n"
+219:     "   doi = \"https://doi.org/10.1145/1089014.1089019\"\n"
+220:     "}\n",NULL);
+221:   PetscCitationsRegister("@TechReport{slepc-manual,\n"
+222:     "   author = \"J. E. Roman and C. Campos and E. Romero and A. Tomas\",\n"
+223:     "   title = \"{SLEPc} Users Manual\",\n"
+224:     "   number = \"DSIC-II/24/02 - Revision 3.10\",\n"
+225:     "   institution = \"D. Sistemes Inform\\`atics i Computaci\\'o, Universitat Polit\\`ecnica de Val\\`encia\",\n"
+226:     "   year = \"2018\"\n"
+227:     "}\n",NULL);
+228:   return(0);
+229: }
+
+231: /*@C
+232:    SlepcInitialize - Initializes the SLEPc library. SlepcInitialize() calls
+233:    PetscInitialize() if that has not been called yet, so this routine should
+234:    always be called near the beginning of your program.
+
+236:    Collective on MPI_COMM_WORLD or PETSC_COMM_WORLD if it has been set
+
+238:    Input Parameters:
+239: +  argc - count of number of command line arguments
+240: .  args - the command line arguments
+241: .  file - [optional] PETSc database file, defaults to ~username/.petscrc
+242:           (use NULL for default)
+243: -  help - [optional] Help message to print, use NULL for no message
+
+245:    Fortran Note:
+246:    Fortran syntax is very similar to that of PetscInitialize()
+
+248:    Level: beginner
+
+250: .seealso: SlepcFinalize(), PetscInitialize()
+251: @*/
+252: PetscErrorCode SlepcInitialize(int *argc,char ***args,const char file[],const char help[])
+253: {
+255:   PetscBool      flg;
+
+258:   if (SlepcInitializeCalled) return(0);
+259:   PetscSetHelpVersionFunctions(SlepcPrintHelpIntro,SlepcPrintVersion);
+260:   PetscInitialized(&flg);
+261:   if (!flg) {
+262:     PetscInitialize(argc,args,file,help);
+263:     SlepcBeganPetsc = PETSC_TRUE;
+264:   }
+
+266:   SlepcCitationsInitialize();
+
+268:   /* Load the dynamic libraries (on machines that support them), this registers all the solvers etc. */
+269:   SlepcInitialize_DynamicLibraries();
+
+271: #if defined(PETSC_HAVE_DRAND48)
+272:   /* work-around for Cygwin drand48() initialization bug */
+273:   srand48(0);
+274: #endif
+
+276:   SlepcInitializeCalled = PETSC_TRUE;
+277:   PetscInfo(0,"SLEPc successfully started\n");
+278:   return(0);
+279: }
+
+281: /*@C
+282:    SlepcFinalize - Checks for options to be called at the conclusion
+283:    of the SLEPc program and calls PetscFinalize().
+
+285:    Collective on PETSC_COMM_WORLD
+
+287:    Level: beginner
+
+289: .seealso: SlepcInitialize(), PetscFinalize()
+290: @*/
+291: PetscErrorCode SlepcFinalize(void)
+292: {
+293:   PetscErrorCode 0;
+
+296:   PetscInfo(0,"SlepcFinalize() called\n");
+297:   if (SlepcBeganPetsc) {
+298:     PetscFinalize();
+299:   }
+300:   SlepcInitializeCalled = PETSC_FALSE;
+301:   PetscFunctionReturn(ierr);
+302: }
+
+304: /*@C
+305:    SlepcInitializeNoArguments - Calls SlepcInitialize() from C/C++ without
+306:    the command line arguments.
+
+308:    Collective
+
+310:    Level: advanced
+
+312: .seealso: SlepcInitialize(), SlepcInitializeFortran()
+313: @*/
+314: PetscErrorCode SlepcInitializeNoArguments(void)
+315: {
+317:   int            argc = 0;
+318:   char           **args = 0;
+
+321:   SlepcInitialize(&argc,&args,NULL,NULL);
+322:   PetscFunctionReturn(ierr);
+323: }
+
+325: /*@
+326:    SlepcInitialized - Determine whether SLEPc is initialized.
+
+328:    Level: beginner
+
+330: .seealso: SlepcInitialize(), SlepcInitializeFortran()
+331: @*/
+332: PetscErrorCode SlepcInitialized(PetscBool *isInitialized)
+333: {
+336:   *isInitialized = SlepcInitializeCalled;
+337:   return(0);
+338: }
+
+340: PETSC_EXTERN PetscBool PetscBeganMPI;
+
+342: /*
+343:    SlepcInitializeNoPointers - Calls SlepcInitialize() from C/C++ without the pointers
+344:    to argc and args (analogue to PetscInitializeNoPointers).
+
+346:    Collective
+
+348:    Level: advanced
+
+350: .seealso: SlepcInitialize()
+351: */
+352: PetscErrorCode SlepcInitializeNoPointers(int argc,char **args,const char *filename,const char *help)
+353: {
+355:   int            myargc = argc;
+356:   char           **myargs = args;
+
+359:   SlepcInitialize(&myargc,&myargs,filename,help);
+360:   PetscPopSignalHandler();
+361:   PetscBeganMPI = PETSC_FALSE;
+362:   PetscFunctionReturn(ierr);
+363: }
 
 
diff -Nru slepc-3.10.1+dfsg1/src/sys/slepcsc.c.html slepc-3.10.2+dfsg1/src/sys/slepcsc.c.html --- slepc-3.10.1+dfsg1/src/sys/slepcsc.c.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/slepcsc.c.html 2019-02-11 16:58:45.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/slepcutil.c.html slepc-3.10.2+dfsg1/src/sys/slepcutil.c.html
--- slepc-3.10.1+dfsg1/src/sys/slepcutil.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/slepcutil.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/examples/index.html slepc-3.10.2+dfsg1/src/sys/vec/examples/index.html
--- slepc-3.10.1+dfsg1/src/sys/vec/examples/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/examples/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

tests/
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/examples/makefile.html slepc-3.10.2+dfsg1/src/sys/vec/examples/makefile.html --- slepc-3.10.1+dfsg1/src/sys/vec/examples/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/vec/examples/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/examples/tests/index.html slepc-3.10.2+dfsg1/src/sys/vec/examples/tests/index.html
--- slepc-3.10.1+dfsg1/src/sys/vec/examples/tests/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/examples/tests/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/examples/tests/makefile.html slepc-3.10.2+dfsg1/src/sys/vec/examples/tests/makefile.html --- slepc-3.10.1+dfsg1/src/sys/vec/examples/tests/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/vec/examples/tests/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/examples/tests/test1.c.html slepc-3.10.2+dfsg1/src/sys/vec/examples/tests/test1.c.html
--- slepc-3.10.1+dfsg1/src/sys/vec/examples/tests/test1.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/examples/tests/test1.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/index.html slepc-3.10.2+dfsg1/src/sys/vec/index.html
--- slepc-3.10.1+dfsg1/src/sys/vec/index.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/index.html	2019-02-11 16:58:45.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+

SLEPc System routines

diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/makefile.html slepc-3.10.2+dfsg1/src/sys/vec/makefile.html --- slepc-3.10.1+dfsg1/src/sys/vec/makefile.html 2018-10-23 10:33:30.000000000 +0000 +++ slepc-3.10.2+dfsg1/src/sys/vec/makefile.html 2019-02-11 16:58:45.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/pool.c.html slepc-3.10.2+dfsg1/src/sys/vec/pool.c.html
--- slepc-3.10.1+dfsg1/src/sys/vec/pool.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/pool.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/veccomp0.h.html slepc-3.10.2+dfsg1/src/sys/vec/veccomp0.h.html
--- slepc-3.10.1+dfsg1/src/sys/vec/veccomp0.h.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/veccomp0.h.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/veccomp.c.html slepc-3.10.2+dfsg1/src/sys/vec/veccomp.c.html
--- slepc-3.10.1+dfsg1/src/sys/vec/veccomp.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/veccomp.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/src/sys/vec/vecutil.c.html slepc-3.10.2+dfsg1/src/sys/vec/vecutil.c.html
--- slepc-3.10.1+dfsg1/src/sys/vec/vecutil.c.html	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/src/sys/vec/vecutil.c.html	2019-02-11 16:58:45.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.10.1 2018-10-23
- +
slepc-3.10.2 2019-02-11
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.10.1+dfsg1/TAGS slepc-3.10.2+dfsg1/TAGS
--- slepc-3.10.1+dfsg1/TAGS	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/TAGS	2019-02-11 16:58:45.000000000 +0000
@@ -21,9 +21,9 @@
  def __init__(self, slepcdir, petscdir, petscarch, argDB = None, framework = None):__init__37,1202
  def __str__(self):__str__48,1596
  def setupModules(self):setupModules51,1630
- def setup(self):setup70,2991
- def cmakeboot(self, args, log):cmakeboot76,3131
-def main(slepcdir, petscdir, petscarch=os.environ['PETSC_ARCH'], argDB=None, framework=None, log=StdoutLogger(), args=[]):main177,8250
+ def setup(self):setup69,2909
+ def cmakeboot(self, args, log):cmakeboot75,3049
+def main(slepcdir, petscdir, petscarch=os.environ['PETSC_ARCH'], argDB=None, framework=None, log=StdoutLogger(), args=[]):main176,8168
 
 config/cmakegen.py,1821
 cmakegen.py:^?cmakegen.py^A,1
@@ -190,36 +190,38 @@
          verbose=opts.verbose,verbose993,38894
          testdir=opts.testdir)testdir995,38988
 
-config/install.py,1555
+config/install.py,1693
 install.py:^?install.py^A,1
-  WindowsError = NoneWindowsError8,132
-class Installer:Installer10,155
-  def __init__(self, args = None):__init__11,172
-  def readInstallDir(self, src):readInstallDir36,1282
-  def setupDirectories(self):setupDirectories52,1794
-  def checkDestdir(self):checkDestdir72,3103
-  def copyfile(self, src, dst, symlinks = False, copyFunc = shutil.copy2):copyfile96,4553
-  def copyexamplefiles(self, src, dst, copyFunc = shutil.copy2):copyexamplefiles121,5378
-  def fixExamplesMakefile(self, src):fixExamplesMakefile130,5718
-  def copyExamples(self, src, dst):copyExamples144,6229
-  def copyConfig(self, src, dst):copyConfig172,7376
-  def copytree(self, src, dst, symlinks = False, copyFunc = shutil.copy2, exclude = [], exclude_ext= ['.DSYM','.o','.pyc','.html'], recurse = 1):copytree188,8062
-  def fixConfFile(self, src):fixConfFile240,10291
-  def fixConf(self):fixConf263,11548
-  def createUninstaller(self):createUninstaller271,11887
-  def installIncludes(self):installIncludes303,12788
-  def installConf(self):installConf309,13080
-  def installBin(self):installBin314,13457
-  def installShare(self):installShare321,13725
-  def copyLib(self, src, dst):copyLib332,14343
-  def installLib(self):installLib357,15497
-  def outputInstallDone(self):outputInstallDone363,15844
-  def outputDestDirDone(self):outputDestDirDone375,16226
-  def runsetup(self):runsetup384,16495
-  def runcopy(self):runcopy389,16581
-  def runfix(self):runfix409,17320
-  def rundone(self):rundone413,17371
-  def run(self):run421,17545
+  getstatusoutput = commands.getstatusoutputgetstatusoutput6,129
+  getstatusoutput = subprocess.getstatusoutputgetstatusoutput9,200
+  WindowsError = NoneWindowsError14,286
+class Installer:Installer16,309
+  def __init__(self, args = None):__init__17,326
+  def readInstallDir(self, src):readInstallDir42,1436
+  def setupDirectories(self):setupDirectories58,1948
+  def checkDestdir(self):checkDestdir78,3257
+  def copyfile(self, src, dst, symlinks = False, copyFunc = shutil.copy2):copyfile102,4707
+  def copyexamplefiles(self, src, dst, copyFunc = shutil.copy2):copyexamplefiles127,5532
+  def fixExamplesMakefile(self, src):fixExamplesMakefile136,5872
+  def copyExamples(self, src, dst):copyExamples150,6383
+  def copyConfig(self, src, dst):copyConfig178,7530
+  def copytree(self, src, dst, symlinks = False, copyFunc = shutil.copy2, exclude = [], exclude_ext= ['.DSYM','.o','.pyc','.html'], recurse = 1):copytree194,8216
+  def fixConfFile(self, src):fixConfFile246,10445
+  def fixConf(self):fixConf269,11702
+  def createUninstaller(self):createUninstaller277,12041
+  def installIncludes(self):installIncludes309,12942
+  def installConf(self):installConf315,13234
+  def installBin(self):installBin320,13611
+  def installShare(self):installShare327,13879
+  def copyLib(self, src, dst):copyLib338,14497
+  def installLib(self):installLib363,15636
+  def outputInstallDone(self):outputInstallDone369,15983
+  def outputDestDirDone(self):outputDestDirDone381,16365
+  def runsetup(self):runsetup390,16634
+  def runcopy(self):runcopy395,16720
+  def runfix(self):runfix415,17459
+  def rundone(self):rundone419,17510
+  def run(self):run427,17684
 
 config/log.py,269
 log.py:^?log.py^A,1
@@ -2217,7 +2219,7 @@
 makefile:^?makefile^A,1
 LOCDIR = ./LOCDIR15,516
 DIRS   = src include docsDIRS16,528
-	-@grep "define SLEPC_VERSION" ${SLEPC_DIR}/include/slepcversion.h | ${SED} "s/........//"SLEPC_VERSION92,4986
+	-@grep "define SLEPC_VERSION" ${SLEPC_DIR}/include/slepcversion.h | ${SED} "s/........//"SLEPC_VERSION93,5058
 
 setup.py,1786
 setup.py:^?setup.py^A,1
@@ -8159,10 +8161,10 @@
 static PetscErrorCode HRApply(PetscInt n,PetscScalar *x1,PetscInt inc1,PetscScalar *x2,PetscInt inc2,PetscReal c,PetscReal s)HRApply83,2042
 static PetscErrorCode TridiagDiag_HHR(PetscInt n,PetscScalar *A,PetscInt lda,PetscReal *s,PetscScalar* Q,PetscInt ldq,PetscBool flip,PetscReal *d,PetscReal *e,PetscInt *perm_,PetscScalar *work,PetscReal *rwork,PetscBLASInt *iwork)TridiagDiag_HHR118,2944
 static PetscErrorCode MadeHRtr(PetscInt sz,PetscInt n,PetscInt idx0,PetscInt n0,PetscInt idx1,PetscInt n1,struct HRtr *tr1,struct HRtr *tr2,PetscReal *ncond,PetscScalar *work)MadeHRtr291,8833
-static PetscErrorCode TryHRIt(PetscInt n,PetscInt j,PetscInt sz,PetscScalar *H,PetscInt ldh,PetscScalar *R,PetscInt ldr,PetscReal *s,PetscBool *exg,PetscBool *ok,PetscInt *n0,PetscInt *n1,PetscInt *idx0,PetscInt *idx1,PetscReal *cond,PetscScalar *work)TryHRIt377,12229
-static PetscErrorCode PseudoOrthog_HR(PetscInt *nv,PetscScalar *V,PetscInt ldv,PetscReal *s,PetscScalar *R,PetscInt ldr,PetscBLASInt *perm,PetscBLASInt *cmplxEig,PetscBool *breakdown,PetscScalar *work)PseudoOrthog_HR526,18515
-PetscErrorCode DSGHIEPOrthogEigenv(DS ds,DSMatType mat,PetscScalar *wr,PetscScalar *wi,PetscBool accum)DSGHIEPOrthogEigenv620,21442
-PetscErrorCode DSIntermediate_GHIEP(DS ds)DSIntermediate_GHIEP719,24618
+static PetscErrorCode TryHRIt(PetscInt n,PetscInt j,PetscInt sz,PetscScalar *H,PetscInt ldh,PetscScalar *R,PetscInt ldr,PetscReal *s,PetscBool *exg,PetscBool *ok,PetscInt *n0,PetscInt *n1,PetscInt *idx0,PetscInt *idx1,PetscReal *cond,PetscScalar *work)TryHRIt377,12236
+static PetscErrorCode PseudoOrthog_HR(PetscInt *nv,PetscScalar *V,PetscInt ldv,PetscReal *s,PetscScalar *R,PetscInt ldr,PetscBLASInt *perm,PetscBLASInt *cmplxEig,PetscBool *breakdown,PetscScalar *work)PseudoOrthog_HR526,18522
+PetscErrorCode DSGHIEPOrthogEigenv(DS ds,DSMatType mat,PetscScalar *wr,PetscScalar *wi,PetscBool accum)DSGHIEPOrthogEigenv620,21449
+PetscErrorCode DSIntermediate_GHIEP(DS ds)DSIntermediate_GHIEP719,24625
 
 src/sys/classes/ds/impls/ghiep/makefile,297
 makefile:^?makefile^A,1
@@ -8723,13 +8725,13 @@
 PetscErrorCode FNEvaluateFunctionMat_Exp_GuettelNakatsukasa(FN fn,Mat A,Mat B)FNEvaluateFunctionMat_Exp_GuettelNakatsukasa490,18057
 #define ITMAX ITMAX765,29609
 static PetscReal normest1(PetscBLASInt n,PetscScalar *A,PetscInt m,PetscScalar *work,PetscRandom rand)normest1770,29715
-#define SMALLN SMALLN844,31996
-static PetscReal normAm(PetscBLASInt n,PetscScalar *A,PetscInt m,PetscScalar *work,PetscRandom rand)normAm849,32077
-static PetscInt ell(PetscBLASInt n,PetscScalar *A,PetscReal coeff,PetscInt m,PetscScalar *work,PetscRandom rand)ell897,33744
-static PetscErrorCode expm_params(PetscInt n,PetscScalar **Apowers,PetscInt *s,PetscInt *m,PetscScalar *work)expm_params919,34500
-PetscErrorCode FNEvaluateFunctionMat_Exp_Higham(FN fn,Mat A,Mat B)FNEvaluateFunctionMat_Exp_Higham1001,37790
-PetscErrorCode FNView_Exp(FN fn,PetscViewer viewer)FNView_Exp1145,45021
-PETSC_EXTERN PetscErrorCode FNCreate_Exp(FN fn)FNCreate_Exp1186,46792
+#define SMALLN SMALLN845,32046
+static PetscReal normAm(PetscBLASInt n,PetscScalar *A,PetscInt m,PetscScalar *work,PetscRandom rand)normAm850,32127
+static PetscInt ell(PetscBLASInt n,PetscScalar *A,PetscReal coeff,PetscInt m,PetscScalar *work,PetscRandom rand)ell899,33888
+static PetscErrorCode expm_params(PetscInt n,PetscScalar **Apowers,PetscInt *s,PetscInt *m,PetscScalar *work)expm_params922,34696
+PetscErrorCode FNEvaluateFunctionMat_Exp_Higham(FN fn,Mat A,Mat B)FNEvaluateFunctionMat_Exp_Higham1004,37986
+PetscErrorCode FNView_Exp(FN fn,PetscViewer viewer)FNView_Exp1148,45217
+PETSC_EXTERN PetscErrorCode FNCreate_Exp(FN fn)FNCreate_Exp1189,46988
 
 src/sys/classes/fn/impls/exp/makefile,280
 makefile:^?makefile^A,1
@@ -9938,7 +9940,7 @@
 PetscErrorCode MatCreateTile(PetscScalar a,Mat A,PetscScalar b,Mat B,PetscScalar c,Mat C,PetscScalar d,Mat D,Mat *G)MatCreateTile283,10137
 PetscErrorCode MatCreateVecsEmpty(Mat mat,Vec *right,Vec *left)MatCreateVecsEmpty366,13600
 
-src/sys/slepcinit.c,1358
+src/sys/slepcinit.c,1359
 slepcinit.c:^?slepcinit.c^A,1
 PetscErrorCode SlepcGetVersion(char version[],size_t len)SlepcGetVersion28,730
 PetscErrorCode SlepcGetVersionNumber(PetscInt *major,PetscInt *minor,PetscInt *subminor,PetscInt *release)SlepcGetVersionNumber65,1992
@@ -9947,14 +9949,14 @@
 PetscBool SlepcBeganPetsc = PETSC_FALSE;SlepcBeganPetsc115,3854
 PetscBool SlepcInitializeCalled = PETSC_FALSE;SlepcInitializeCalled116,3895
 static PetscErrorCode SlepcLoadDynamicLibrary(const char *name,PetscBool *found)SlepcLoadDynamicLibrary119,4024
-PetscErrorCode SlepcInitialize_DynamicLibraries(void)SlepcInitialize_DynamicLibraries140,4723
-PetscErrorCode SlepcCitationsInitialize()SlepcCitationsInitialize192,7619
-PetscErrorCode SlepcInitialize(int *argc,char ***args,const char file[],const char help[])SlepcInitialize238,9377
-PetscErrorCode SlepcFinalize(void)SlepcFinalize277,10541
-PetscErrorCode SlepcInitializeNoArguments(void)SlepcInitializeNoArguments300,11025
-PetscErrorCode SlepcInitialized(PetscBool *isInitialized)SlepcInitialized318,11403
-PETSC_EXTERN PetscBool PetscBeganMPI;PetscBeganMPI326,11594
-PetscErrorCode SlepcInitializeNoPointers(int argc,char **args,const char *filename,const char *help)SlepcInitializeNoPointers338,11851
+PetscErrorCode SlepcInitialize_DynamicLibraries(void)SlepcInitialize_DynamicLibraries154,5379
+PetscErrorCode SlepcCitationsInitialize()SlepcCitationsInitialize206,8275
+PetscErrorCode SlepcInitialize(int *argc,char ***args,const char file[],const char help[])SlepcInitialize252,10033
+PetscErrorCode SlepcFinalize(void)SlepcFinalize291,11197
+PetscErrorCode SlepcInitializeNoArguments(void)SlepcInitializeNoArguments314,11681
+PetscErrorCode SlepcInitialized(PetscBool *isInitialized)SlepcInitialized332,12059
+PETSC_EXTERN PetscBool PetscBeganMPI;PetscBeganMPI340,12250
+PetscErrorCode SlepcInitializeNoPointers(int argc,char **args,const char *filename,const char *help)SlepcInitializeNoPointers352,12507
 
 src/sys/slepcsc.c,2058
 slepcsc.c:^?slepcsc.c^A,1
diff -Nru slepc-3.10.1+dfsg1/TAGS_PYTHON slepc-3.10.2+dfsg1/TAGS_PYTHON
--- slepc-3.10.1+dfsg1/TAGS_PYTHON	2018-10-23 10:33:30.000000000 +0000
+++ slepc-3.10.2+dfsg1/TAGS_PYTHON	2019-02-11 16:58:45.000000000 +0000
@@ -92,39 +92,41 @@
  def __init__(self, slepcdir, petscdir, petscarch, argDB = None, framework = None):__init__37,1202
  def __str__(self):__str__48,1596
  def setupModules(self):setupModules51,1630
- def setup(self):setup70,2991
- def cmakeboot(self, args, log):cmakeboot76,3131
-def main(slepcdir, petscdir, petscarch=os.environ['PETSC_ARCH'], argDB=None, framework=None, log=StdoutLogger(), args=[]):main177,8250
+ def setup(self):setup69,2909
+ def cmakeboot(self, args, log):cmakeboot75,3049
+def main(slepcdir, petscdir, petscarch=os.environ['PETSC_ARCH'], argDB=None, framework=None, log=StdoutLogger(), args=[]):main176,8168
 
-config/install.py,1555
-  WindowsError = NoneWindowsError8,132
-class Installer:Installer10,155
-  def __init__(self, args = None):__init__11,172
-  def readInstallDir(self, src):readInstallDir36,1282
-  def setupDirectories(self):setupDirectories52,1794
-  def checkDestdir(self):checkDestdir72,3103
-  def copyfile(self, src, dst, symlinks = False, copyFunc = shutil.copy2):copyfile96,4553
-  def copyexamplefiles(self, src, dst, copyFunc = shutil.copy2):copyexamplefiles121,5378
-  def fixExamplesMakefile(self, src):fixExamplesMakefile130,5718
-  def copyExamples(self, src, dst):copyExamples144,6229
-  def copyConfig(self, src, dst):copyConfig172,7376
-  def copytree(self, src, dst, symlinks = False, copyFunc = shutil.copy2, exclude = [], exclude_ext= ['.DSYM','.o','.pyc','.html'], recurse = 1):copytree188,8062
-  def fixConfFile(self, src):fixConfFile240,10291
-  def fixConf(self):fixConf263,11548
-  def createUninstaller(self):createUninstaller271,11887
-  def installIncludes(self):installIncludes303,12788
-  def installConf(self):installConf309,13080
-  def installBin(self):installBin314,13457
-  def installShare(self):installShare321,13725
-  def copyLib(self, src, dst):copyLib332,14343
-  def installLib(self):installLib357,15497
-  def outputInstallDone(self):outputInstallDone363,15844
-  def outputDestDirDone(self):outputDestDirDone375,16226
-  def runsetup(self):runsetup384,16495
-  def runcopy(self):runcopy389,16581
-  def runfix(self):runfix409,17320
-  def rundone(self):rundone413,17371
-  def run(self):run421,17545
+config/install.py,1693
+  getstatusoutput = commands.getstatusoutputgetstatusoutput6,129
+  getstatusoutput = subprocess.getstatusoutputgetstatusoutput9,200
+  WindowsError = NoneWindowsError14,286
+class Installer:Installer16,309
+  def __init__(self, args = None):__init__17,326
+  def readInstallDir(self, src):readInstallDir42,1436
+  def setupDirectories(self):setupDirectories58,1948
+  def checkDestdir(self):checkDestdir78,3257
+  def copyfile(self, src, dst, symlinks = False, copyFunc = shutil.copy2):copyfile102,4707
+  def copyexamplefiles(self, src, dst, copyFunc = shutil.copy2):copyexamplefiles127,5532
+  def fixExamplesMakefile(self, src):fixExamplesMakefile136,5872
+  def copyExamples(self, src, dst):copyExamples150,6383
+  def copyConfig(self, src, dst):copyConfig178,7530
+  def copytree(self, src, dst, symlinks = False, copyFunc = shutil.copy2, exclude = [], exclude_ext= ['.DSYM','.o','.pyc','.html'], recurse = 1):copytree194,8216
+  def fixConfFile(self, src):fixConfFile246,10445
+  def fixConf(self):fixConf269,11702
+  def createUninstaller(self):createUninstaller277,12041
+  def installIncludes(self):installIncludes309,12942
+  def installConf(self):installConf315,13234
+  def installBin(self):installBin320,13611
+  def installShare(self):installShare327,13879
+  def copyLib(self, src, dst):copyLib338,14497
+  def installLib(self):installLib363,15636
+  def outputInstallDone(self):outputInstallDone369,15983
+  def outputDestDirDone(self):outputDestDirDone381,16365
+  def runsetup(self):runsetup390,16634
+  def runcopy(self):runcopy395,16720
+  def runfix(self):runfix415,17459
+  def rundone(self):rundone419,17510
+  def run(self):run427,17684
 
 config/packages/lapack.py,255
 class Lapack(package.Package):Lapack13,420