diff -Nru slepc-3.14.1+dfsg1/config/configure.py slepc-3.14.2+dfsg1/config/configure.py --- slepc-3.14.1+dfsg1/config/configure.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/configure.py 2021-02-01 14:43:03.000000000 +0000 @@ -148,7 +148,7 @@ # Check if packages-download directory contains requested packages if slepc.downloaddir: - l = list(filter(None, [pkg.MissingTarball(slepc.downloaddir) for pkg in externalpackages])) + l = list(filter(None, [pkg.MissingTarball(slepc.downloaddir) for pkg in externalpackages + [sowing]])) if l: log.Println('\n\nDownload the following packages and run the script again:') for pkg in l: log.Println(pkg) diff -Nru slepc-3.14.1+dfsg1/config/package.py slepc-3.14.2+dfsg1/config/package.py --- slepc-3.14.1+dfsg1/config/package.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/package.py 2021-02-01 14:43:03.000000000 +0000 @@ -157,7 +157,7 @@ def MissingTarball(self,downloaddir): '''Check if tarball is missing in downloaddir''' - if self.downloadable and hasattr(self,'download') and self.download: + if self.downloadable and hasattr(self,'download') and self.download and hasattr(self,'archive'): localFile = os.path.join(downloaddir,self.archive) if not os.path.exists(localFile): url = self.packageurl @@ -285,12 +285,16 @@ def ShowInfo(self): if self.havepackage: + if hasattr(self,'version'): + packagename = self.packagename.upper()+' version '+self.version + else: + packagename = self.packagename.upper() if hasattr(self,'petscdepend'): - self.log.Println(self.packagename.upper()+' from %s linked by PETSc' % self.petscdepend.upper()) + self.log.Println(packagename+' from %s linked by PETSc' % self.petscdepend.upper()) elif self.builtafterslepc: - self.log.Println(self.packagename.upper()+' to be built after SLEPc') + self.log.Println(packagename+' to be built after SLEPc') else: - self.log.Println(self.packagename.upper()+' library flags:') + self.log.Println(packagename+' library flags:') self.log.Println(' '+' '.join(self.packageflags)) def Link(self,functions,callbacks,flags,givencode='',cflags='',clanguage='c',logdump=True): diff -Nru slepc-3.14.1+dfsg1/config/packages/arpack.py slepc-3.14.2+dfsg1/config/packages/arpack.py --- slepc-3.14.1+dfsg1/config/packages/arpack.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/arpack.py 2021-02-01 14:43:03.000000000 +0000 @@ -23,6 +23,7 @@ self.dirname = 'arpack-ng-'+self.version self.supportssingle = True self.fortran = True + self.hasheaders = True # the option --with-arpack-include=... is simply ignored self.ProcessArgs(argdb) def Functions(self,petsc): @@ -62,7 +63,7 @@ libs = [['-lparpack','-larpack'],['-lparpack_MPI','-larpack'],['-lparpack_MPI-LINUX','-larpack_LINUX'],['-lparpack_MPI-SUN4','-larpack_SUN4']] if self.packagedir: - dirs = [os.path.join(self.packagedir,'lib'),self.packagedir] + dirs = [os.path.join(self.packagedir,'lib'),self.packagedir,os.path.join(self.packagedir,'lib64')] else: dirs = self.GenerateGuesses('Arpack',archdir) self.FortranLib(slepcconf,slepcvars,dirs,libs,functions) @@ -98,7 +99,6 @@ libs = [['-larpack']] else: libs = [['-lparpack','-larpack']] - libdir = os.path.join(prefixdir,'lib') - dirs = [libdir] + dirs = [os.path.join(prefixdir,'lib'),os.path.join(prefixdir,'lib64')] self.FortranLib(slepcconf,slepcvars,dirs,libs,functions) diff -Nru slepc-3.14.1+dfsg1/config/packages/blzpack.py slepc-3.14.2+dfsg1/config/packages/blzpack.py --- slepc-3.14.1+dfsg1/config/packages/blzpack.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/blzpack.py 2021-02-01 14:43:03.000000000 +0000 @@ -32,7 +32,7 @@ libs = [['-lblzpack']] if self.packagedir: - dirs = [os.path.join(self.packagedir,'lib'),self.packagedir] + dirs = [os.path.join(self.packagedir,'lib'),self.packagedir,os.path.join(self.packagedir,'lib64')] else: dirs = self.GenerateGuesses('Blzpack',archdir) diff -Nru slepc-3.14.1+dfsg1/config/packages/elpa.py slepc-3.14.2+dfsg1/config/packages/elpa.py --- slepc-3.14.1+dfsg1/config/packages/elpa.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/elpa.py 2021-02-01 14:43:03.000000000 +0000 @@ -18,8 +18,8 @@ self.installable = True self.downloadable = True self.version = '2020.05.001' - self.url = 'https://elpa.mpcdf.mpg.de/html/Releases/'+self.version+'/elpa-'+self.version+'.tar.gz' self.archive = 'elpa-'+self.version+'.tar.gz' + self.url = 'https://elpa.mpcdf.mpg.de/html/Releases/'+self.version+'/'+self.archive self.dirname = 'elpa-'+self.version self.supportssingle = True self.fortran = True @@ -53,7 +53,7 @@ def Check(self,slepcconf,slepcvars,petsc,archdir): code = self.SampleCode(petsc) if self.packagedir: - dirs = [os.path.join(self.packagedir,'lib'),self.packagedir] + dirs = [os.path.join(self.packagedir,'lib'),self.packagedir,os.path.join(self.packagedir,'lib64')] incdirs = [os.path.join(self.packagedir,'include'),self.packagedir] else: dirs = self.GenerateGuesses('elpa',archdir) @@ -111,13 +111,16 @@ # Check build code = self.SampleCode(petsc) - if petsc.buildsharedlib: - l = petsc.slflag + libdir + ' -L' + libdir + ' -lelpa' - else: - l = '-L' + libdir + ' -lelpa' - f = '-I' + os.path.join(incdir,self.dirname) + altlibdir = os.path.join(prefixdir,'lib64') + for ldir in [libdir,altlibdir]: + if petsc.buildsharedlib: + l = petsc.slflag + ldir + ' -L' + ldir + ' -lelpa' + else: + l = '-L' + ldir + ' -lelpa' + f = '-I' + os.path.join(incdir,self.dirname) + (result, output) = self.Link([],[],[l]+[f],code,f,petsc.language) + if result: break - (result, output) = self.Link([],[],[l]+[f],code,f,petsc.language) if not result: self.log.Exit('Unable to link with downloaded ELPA') diff -Nru slepc-3.14.1+dfsg1/config/packages/hpddm.py slepc-3.14.2+dfsg1/config/packages/hpddm.py --- slepc-3.14.1+dfsg1/config/packages/hpddm.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/hpddm.py 2021-02-01 14:43:03.000000000 +0000 @@ -20,9 +20,9 @@ package.Package.__init__(self,argdb,log) self.packagename = 'hpddm' self.downloadable = True - self.gitcommit = '90bcc19f07d79d3ba032753e22bef25b04cd01b6' - self.url = 'https://github.com/hpddm/hpddm/archive/'+self.gitcommit+'.tar.gz' + self.gitcommit = 'd29735a339b1dcb939a0e5aaab60271c7537ee89' self.archive = self.gitcommit+'.tar.gz' + self.url = 'https://github.com/hpddm/hpddm/archive/'+self.archive self.dirname = 'hpddm-'+self.gitcommit self.supportssingle = True self.supports64bint = True diff -Nru slepc-3.14.1+dfsg1/config/packages/primme.py slepc-3.14.2+dfsg1/config/packages/primme.py --- slepc-3.14.1+dfsg1/config/packages/primme.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/primme.py 2021-02-01 14:43:03.000000000 +0000 @@ -17,7 +17,7 @@ self.packagename = 'primme' self.installable = True self.downloadable = True - self.version = '3.1.1' + self.version = '3.2' self.url = 'https://github.com/primme/primme/archive/v'+self.version+'.tar.gz' self.archive = 'primme-'+self.version+'.tar.gz' self.dirname = 'primme-'+self.version @@ -62,7 +62,7 @@ def Check(self,slepcconf,slepcvars,petsc,archdir): code = self.SampleCode(petsc) if self.packagedir: - dirs = [os.path.join(self.packagedir,'lib'),self.packagedir] + dirs = [os.path.join(self.packagedir,'lib'),self.packagedir,os.path.join(self.packagedir,'lib64')] incdirs = [os.path.join(self.packagedir,'include'),self.packagedir] else: dirs = self.GenerateGuesses('Primme',archdir) @@ -105,7 +105,7 @@ # Makefile cont = 'export LIBRARY = libprimme.'+petsc.ar_lib_suffix+'\n' cont += 'export SOLIBRARY = libprimme.'+petsc.sl_suffix+'\n' - cont += 'export SONAMELIBRARY = libprimme.'+petsc.sl_suffix+self.version+'\n' + cont += 'export SONAMELIBRARY = libprimme.'+petsc.sl_suffix+'.'+self.version+'\n' cont += 'export CC = '+petsc.cc+'\n' if hasattr(petsc,'fc'): cont += 'export F77 = '+petsc.fc+'\n' diff -Nru slepc-3.14.1+dfsg1/config/packages/slepc4py.py slepc-3.14.2+dfsg1/config/packages/slepc4py.py --- slepc-3.14.1+dfsg1/config/packages/slepc4py.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/slepc4py.py 2021-02-01 14:43:03.000000000 +0000 @@ -16,7 +16,9 @@ package.Package.__init__(self,argdb,log) self.packagename = 'slepc4py' self.downloadable = True + self.version = '3.14.0' self.url = 'https://gitlab.com/slepc/slepc4py.git' + self.dirname = 'slepc4py-'+self.version self.builtafterslepc = True self.ProcessArgs(argdb) @@ -26,15 +28,16 @@ destdir = os.path.join(prefixdir,'lib') # Check if source is already available - builddir = os.path.join(externdir,'slepc4py') + builddir = os.path.join(externdir,self.dirname) if os.path.exists(builddir): self.log.write('Using '+builddir) else: # clone slepc4py repo url = self.packageurl if url=='': url = self.url + self.log.write('Cloning '+url+' to '+builddir) try: - (result,output) = self.RunCommand('cd '+externdir+'&& git clone '+url) + (result,output) = self.RunCommand('cd '+externdir+'&& git clone -b '+self.version+' '+url+' '+self.dirname) except RuntimeError as e: self.log.Exit('Cannot clone '+url+': '+str(e)) diff -Nru slepc-3.14.1+dfsg1/config/packages/slepc.py slepc-3.14.2+dfsg1/config/packages/slepc.py --- slepc-3.14.1+dfsg1/config/packages/slepc.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/slepc.py 2021-02-01 14:43:03.000000000 +0000 @@ -29,7 +29,7 @@ print(' --with-packages-download-dir='.ljust(wd)+': Skip network download of tarballs and locate them in specified dir') print('\nSLEPc:') print(' --prefix='.ljust(wd)+': Specify location to install SLEPc (e.g., /usr/local)') - print(' --DATAFILESPATH='.ljust(wd)+': Specify location of datafiles (for SLEPc developers)') + print(' --DATAFILESPATH='.ljust(wd)+': Location of datafiles (available at https://slepc.upv.es/datafiles/)') def InitDir(self): if 'SLEPC_DIR' in os.environ: diff -Nru slepc-3.14.1+dfsg1/config/packages/slicot.py slepc-3.14.2+dfsg1/config/packages/slicot.py --- slepc-3.14.1+dfsg1/config/packages/slicot.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/slicot.py 2021-02-01 14:43:03.000000000 +0000 @@ -17,8 +17,8 @@ self.packagename = 'slicot' self.installable = True self.version = '4.5' - self.url = 'http://slicot.org/objects/software/shared/slicot45.tar.gz' self.archive = 'slicot45.tar.gz' + self.url = 'http://slicot.org/objects/software/shared/'+self.archive self.dirname = 'slicot' self.supportsscalar = ['real'] self.fortran = True @@ -33,7 +33,7 @@ libs = [['-lslicot']] if self.packagedir: - dirs = [os.path.join(self.packagedir,'lib'),self.packagedir] + dirs = [os.path.join(self.packagedir,'lib'),self.packagedir,os.path.join(self.packagedir,'lib64')] else: dirs = self.GenerateGuesses('slicot',archdir) diff -Nru slepc-3.14.1+dfsg1/config/packages/sowing.py slepc-3.14.2+dfsg1/config/packages/sowing.py --- slepc-3.14.1+dfsg1/config/packages/sowing.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/sowing.py 2021-02-01 14:43:03.000000000 +0000 @@ -16,7 +16,10 @@ package.Package.__init__(self,argdb,log) self.packagename = 'sowing' self.downloadable = True - self.url = 'https://bitbucket.org/petsc/pkg-sowing.git' + self.version = '1.1.26' + self.url = 'https://bitbucket.org/petsc/pkg-sowing/get/v'+self.version+'-p1.tar.gz' + self.archive = 'sowing-'+self.version+'-p1.tar.gz' + self.dirname = 'sowing-'+self.version+'-p1' self.ProcessArgs(argdb) def ShowHelp(self): @@ -28,21 +31,9 @@ name = self.packagename.upper() self.log.NewSection('Installing '+name+'...') - # Create externalpackages directory + # Get package externdir = slepc.CreateDir(archdir,'externalpackages') - - # Check if source is already available - builddir = os.path.join(externdir,'pkg-sowing') - if os.path.exists(builddir): - self.log.write('Using '+builddir) - else: # clone Sowing repo - url = self.packageurl - if url=='': - url = self.url - try: - (result,output) = self.RunCommand('cd '+externdir+'&& git clone '+url) - except RuntimeError as e: - self.log.Exit('Cannot clone '+url+': '+str(e)) + builddir = self.Download(externdir,slepc.downloaddir) # Configure, build and install package (result,output) = self.RunCommand('cd '+builddir+'&& ./configure --prefix='+archdir+'&&'+petsc.make+'&&'+petsc.make+' install') diff -Nru slepc-3.14.1+dfsg1/config/packages/trlan.py slepc-3.14.2+dfsg1/config/packages/trlan.py --- slepc-3.14.1+dfsg1/config/packages/trlan.py 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/config/packages/trlan.py 2021-02-01 14:43:03.000000000 +0000 @@ -18,8 +18,8 @@ self.installable = True self.downloadable = True self.version = '201009' - self.url = 'https://codeforge.lbl.gov/frs/download.php/210/trlan-'+self.version+'.tar.gz' self.archive = 'trlan-'+self.version+'.tar.gz' + self.url = 'https://codeforge.lbl.gov/frs/download.php/210/'+self.archive self.dirname = 'trlan-'+self.version self.supportsscalar = ['real'] self.fortran = True @@ -36,7 +36,7 @@ libs = [['-ltrlan_mpi']] if self.packagedir: - dirs = [os.path.join(self.packagedir,'lib'),self.packagedir] + dirs = [os.path.join(self.packagedir,'lib'),self.packagedir,os.path.join(self.packagedir,'lib64')] else: dirs = self.GenerateGuesses('TRLan',archdir) diff -Nru slepc-3.14.1+dfsg1/CTAGS slepc-3.14.2+dfsg1/CTAGS --- slepc-3.14.1+dfsg1/CTAGS 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/CTAGS 2021-02-01 14:43:03.000000000 +0000 @@ -3177,6 +3177,7 @@ LOCDIR src/sys/vec/tests/makefile /^LOCDIR = src\/sys\/vec\/tests\/$/;" m language:Make L_max src/eps/impls/ciss/ciss.c /^ PetscInt L_max; \/* maximum number of columns of the source matrix V *\/$/;" m language:C struct:__anon68 file: Lapack config/packages/lapack.py /^class Lapack(package.Package):$/;" c language:Python +Laplacian src/eps/tests/test39.c /^PetscErrorCode Laplacian(MPI_Comm comm,PetscInt n,PetscInt m,PetscInt shift,Mat *A)$/;" f language:C Link config/package.py /^ def Link(self,functions,callbacks,flags,givencode='',cflags='',clanguage='c',logdump=True):$/;" m language:Python class:Package LinkBlasLapack config/packages/lapack.py /^ def LinkBlasLapack(self,functions,callbacks,flags,petsc):$/;" m language:Python class:Lapack LoadConf config/packages/petsc.py /^ def LoadConf(self):$/;" m language:Python class:PETSc @@ -7009,6 +7010,7 @@ help src/eps/tests/test36.c /^static char help[] = "Tests a HEP problem with Hermitian matrix.\\n\\n";$/;" v language:C file: help src/eps/tests/test37.c /^static char help[] = "Tests solving an eigenproblem defined with MatNest. "$/;" v language:C file: help src/eps/tests/test38.c /^static char help[] = "Test EPSLYAPII interface functions.\\n\\n"$/;" v language:C file: +help src/eps/tests/test39.c /^static char help[] = "Tests multiple calls to EPSSolve with matrices of different local size.\\n\\n"$/;" v language:C file: help src/eps/tests/test4.c /^static char help[] = "Test the solution of a HEP without calling EPSSetFromOptions (based on ex1.c).\\n\\n"$/;" v language:C file: help src/eps/tests/test5.c /^static char help[] = "Test EPS with different builds with a matrix loaded from a file.\\n"$/;" v language:C file: help src/eps/tests/test6.c /^static char help[] = "Diagonal eigenproblem.\\n\\n"$/;" v language:C file: @@ -7310,7 +7312,7 @@ ksp src/nep/impls/slp/slp.h /^ KSP ksp;$/;" m language:C++ struct:__anon118 ksp_max_size src/eps/impls/davidson/dvdimprovex.c /^ PetscInt ksp_max_size; \/* the ksp maximum subvectors size *\/$/;" m language:C struct:__anon74 file: ksphasmat src/sys/classes/st/impls/precond/precond.c /^ PetscBool ksphasmat; \/* the KSP must have the same matrix as PC *\/$/;" m language:C struct:__anon170 file: -l config/configure.py /^ l = list(filter(None, [pkg.MissingTarball(slepc.downloaddir) for pkg in externalpackages]))$/;" v language:Python +l config/configure.py /^ l = list(filter(None, [pkg.MissingTarball(slepc.downloaddir) for pkg in externalpackages + [sowing]]))$/;" v language:Python l include/slepc/private/bvimpl.h /^ PetscInt l; \/* number of leading columns *\/$/;" m language:C++ struct:_p_BV l include/slepc/private/dsimpl.h /^ PetscInt l; \/* number of locked (inactive) leading columns *\/$/;" m language:C++ struct:_p_DS lN include/slepc/private/vecimplslepc.h /^ PetscInt lN; \/* virtual local size *\/$/;" m language:C++ struct:__anon12 @@ -7451,6 +7453,7 @@ main src/eps/tests/test36.c /^int main(int argc,char **argv)$/;" f language:C main src/eps/tests/test37.c /^int main(int argc,char **argv)$/;" f language:C main src/eps/tests/test38.c /^int main(int argc,char **argv)$/;" f language:C +main src/eps/tests/test39.c /^int main(int argc,char **argv)$/;" f language:C main src/eps/tests/test4.c /^int main(int argc,char **argv)$/;" f language:C main src/eps/tests/test5.c /^int main(int argc,char **argv)$/;" f language:C main src/eps/tests/test6.c /^int main(int argc,char **argv)$/;" f language:C diff -Nru slepc-3.14.1+dfsg1/debian/changelog slepc-3.14.2+dfsg1/debian/changelog --- slepc-3.14.1+dfsg1/debian/changelog 2021-01-24 07:05:12.000000000 +0000 +++ slepc-3.14.2+dfsg1/debian/changelog 2021-02-16 15:21:59.000000000 +0000 @@ -1,14 +1,14 @@ -slepc (3.14.1+dfsg1-1build2) hirsute; urgency=medium +slepc (3.14.2+dfsg1-1build1) hirsute; urgency=medium - * No-change rebuild against petsc 3.14.3+dfsg1-1 and openmpi 4.1.0-7 + * No change rebuild with fixed ownership. - -- Graham Inggs Sun, 24 Jan 2021 07:05:12 +0000 + -- Dimitri John Ledkov Tue, 16 Feb 2021 15:21:59 +0000 -slepc (3.14.1+dfsg1-1build1) hirsute; urgency=medium +slepc (3.14.2+dfsg1-1) unstable; urgency=medium - * No-change rebuild against petsc 3.14.3+dfsg1-1 + * New upstream release. - -- Graham Inggs Thu, 21 Jan 2021 19:11:52 +0000 + -- Drew Parsons Fri, 12 Feb 2021 12:22:46 +0100 slepc (3.14.1+dfsg1-1) unstable; urgency=medium diff -Nru slepc-3.14.1+dfsg1/debian/control slepc-3.14.2+dfsg1/debian/control --- slepc-3.14.1+dfsg1/debian/control 2020-12-25 23:33:07.000000000 +0000 +++ slepc-3.14.2+dfsg1/debian/control 2021-02-16 15:21:59.000000000 +0000 @@ -1,6 +1,7 @@ Source: slepc Priority: optional -Maintainer: Debian Science Maintainers +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Science Maintainers Uploaders: "Adam C. Powell, IV" , Drew Parsons Build-Depends: debhelper-compat (= 13), python3, pkg-config, dh-python, gfortran, diff -Nru slepc-3.14.1+dfsg1/debian/patches/build_suffix.patch slepc-3.14.2+dfsg1/debian/patches/build_suffix.patch --- slepc-3.14.1+dfsg1/debian/patches/build_suffix.patch 2020-12-25 23:33:07.000000000 +0000 +++ slepc-3.14.2+dfsg1/debian/patches/build_suffix.patch 2021-02-12 11:22:46.000000000 +0000 @@ -1,7 +1,7 @@ Index: slepc/config/configure.py =================================================================== ---- slepc.orig/config/configure.py 2020-11-07 00:18:03.743615578 +0800 -+++ slepc/config/configure.py 2020-11-07 00:18:03.735615506 +0800 +--- slepc.orig/config/configure.py 2021-02-12 12:21:44.812595506 +0100 ++++ slepc/config/configure.py 2021-02-12 12:21:44.808595541 +0100 @@ -165,6 +165,8 @@ pseudoarch += '-opt' if not 'real' in petsc.scalar: @@ -13,8 +13,8 @@ archname = petsc.arch Index: slepc/config/packages/slepc.py =================================================================== ---- slepc.orig/config/packages/slepc.py 2020-11-07 00:18:03.743615578 +0800 -+++ slepc/config/packages/slepc.py 2020-11-07 00:18:03.735615506 +0800 +--- slepc.orig/config/packages/slepc.py 2021-02-12 12:21:44.812595506 +0100 ++++ slepc/config/packages/slepc.py 2021-02-12 12:21:44.808595541 +0100 @@ -18,6 +18,7 @@ self.clean = argdb.PopBool('with-clean')[0] self.prefixdir = argdb.PopPath('prefix')[0] @@ -29,5 +29,5 @@ print(' --prefix='.ljust(wd)+': Specify location to install SLEPc (e.g., /usr/local)') + print(' --build-suffix= : Extension to name of build directory (e.g. "64" to distinguish 64-bit builds)') print(' --shared-library-extension= : Extension to name of shared library') - print(' --DATAFILESPATH='.ljust(wd)+': Specify location of datafiles (for SLEPc developers)') + print(' --DATAFILESPATH='.ljust(wd)+': Location of datafiles (available at https://slepc.upv.es/datafiles/)') diff -Nru slepc-3.14.1+dfsg1/debian/patches/double_colon_patch slepc-3.14.2+dfsg1/debian/patches/double_colon_patch --- slepc-3.14.1+dfsg1/debian/patches/double_colon_patch 2020-12-25 23:33:07.000000000 +0000 +++ slepc-3.14.2+dfsg1/debian/patches/double_colon_patch 2021-02-12 11:22:46.000000000 +0000 @@ -1,8 +1,8 @@ Index: slepc/makefile =================================================================== ---- slepc.orig/makefile 2020-10-12 11:36:11.219511357 +0800 -+++ slepc/makefile 2020-10-12 11:36:11.215511361 +0800 -@@ -144,7 +144,7 @@ +--- slepc.orig/makefile 2021-02-12 12:20:19.453268939 +0100 ++++ slepc/makefile 2021-02-12 12:20:19.449268966 +0100 +@@ -143,7 +143,7 @@ allclean: -@${OMAKE} -f gmakefile clean diff -Nru slepc-3.14.1+dfsg1/debian/patches/soname_extension slepc-3.14.2+dfsg1/debian/patches/soname_extension --- slepc-3.14.1+dfsg1/debian/patches/soname_extension 2020-12-25 23:33:07.000000000 +0000 +++ slepc-3.14.2+dfsg1/debian/patches/soname_extension 2021-02-12 11:22:46.000000000 +0000 @@ -1,7 +1,7 @@ Index: slepc/gmakefile =================================================================== ---- slepc.orig/gmakefile 2020-11-07 00:08:28.947767425 +0800 -+++ slepc/gmakefile 2020-11-07 00:08:28.943767404 +0800 +--- slepc.orig/gmakefile 2021-02-12 12:20:32.845175491 +0100 ++++ slepc/gmakefile 2021-02-12 12:20:32.845175491 +0100 @@ -25,14 +25,14 @@ absbasename_all = $(basename $(basename $(basename $(basename $(abspath $(1))))))# arch/lib/libpetsc.so.3.8.0 -> /path/to/arch/lib/libpetsc sl_linker_args = $(call SL_LINKER_FUNCTION,$(call absbasename_all,$@),$(libslepc_abi_version),$(libslepc_lib_version)) @@ -25,8 +25,8 @@ ifeq ($(PETSC_WITH_EXTERNAL_LIB),) libslepcall_shared := $(libslepcpkgs_shared) -@@ -129,7 +129,7 @@ - $(if $(findstring win32fe lib,$(AR)),$(ARCHIVE_RECIPE_WIN32FE_LIB),$(ARCHIVE_RECIPE_DEFAULT)) +@@ -150,7 +150,7 @@ + $(if $(findstring win32fe lib,$(AR)),$(ARCHIVE_RECIPE_WIN32FE_LIB),$(if $(findstring yes,$(AR_ARGFILE)),$(ARCHIVE_RECIPE_ARGFILE),$(ARCHIVE_RECIPE_DEFAULT))) # with-single-library=0 -libpkg = $(foreach pkg, $1, $(LIBDIR)/libslepc$(pkg).$(SL_LINKER_SUFFIX)) @@ -36,8 +36,8 @@ $(call libname_function,$(LIBDIR)/libslepc$(1)) : $(call concatlang,$(1)) Index: slepc/lib/slepc/conf/slepc_variables =================================================================== ---- slepc.orig/lib/slepc/conf/slepc_variables 2020-11-07 00:08:28.947767425 +0800 -+++ slepc/lib/slepc/conf/slepc_variables 2020-11-07 00:08:28.943767404 +0800 +--- slepc.orig/lib/slepc/conf/slepc_variables 2021-02-12 12:20:32.845175491 +0100 ++++ slepc/lib/slepc/conf/slepc_variables 2021-02-12 12:20:32.845175491 +0100 @@ -32,14 +32,14 @@ FCPPFLAGS = ${SLEPC_FCPPFLAGS} @@ -72,8 +72,8 @@ include ${SLEPC_DIR}/${PETSC_ARCH}/lib/slepc/conf/slepcvariables Index: slepc/config/configure.py =================================================================== ---- slepc.orig/config/configure.py 2020-11-07 00:08:28.947767425 +0800 -+++ slepc/config/configure.py 2020-11-07 00:17:13.435159501 +0800 +--- slepc.orig/config/configure.py 2021-02-12 12:20:32.845175491 +0100 ++++ slepc/config/configure.py 2021-02-12 12:20:32.845175491 +0100 @@ -29,22 +29,23 @@ def WritePkgconfigFile(pkgconfig,version,pversion,sdir,isinstall,prefixdir,singlelib): @@ -121,8 +121,8 @@ for pkg in checkpackages: Index: slepc/config/packages/slepc.py =================================================================== ---- slepc.orig/config/packages/slepc.py 2020-11-07 00:08:28.947767425 +0800 -+++ slepc/config/packages/slepc.py 2020-11-07 00:08:34.000000000 +0800 +--- slepc.orig/config/packages/slepc.py 2021-02-12 12:20:32.845175491 +0100 ++++ slepc/config/packages/slepc.py 2021-02-12 12:21:11.240881840 +0100 @@ -18,6 +18,7 @@ self.clean = argdb.PopBool('with-clean')[0] self.prefixdir = argdb.PopPath('prefix')[0] @@ -136,6 +136,6 @@ print('\nSLEPc:') print(' --prefix='.ljust(wd)+': Specify location to install SLEPc (e.g., /usr/local)') + print(' --shared-library-extension= : Extension to name of shared library') - print(' --DATAFILESPATH='.ljust(wd)+': Specify location of datafiles (for SLEPc developers)') + print(' --DATAFILESPATH='.ljust(wd)+': Location of datafiles (available at https://slepc.upv.es/datafiles/)') def InitDir(self): diff -Nru slepc-3.14.1+dfsg1/docs/makefile.html slepc-3.14.2+dfsg1/docs/makefile.html --- slepc-3.14.1+dfsg1/docs/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,7 +3,7 @@ - + diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVApplyMatrixBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVApplyMatrixBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVApplyMatrixBV

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVApplyMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVApplyMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVApplyMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVApplyMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVApplyMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVApplyMatrix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVBiorthogonalizeColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVBiorthogonalizeColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVBiorthogonalizeColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVBiorthogonalizeColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVBiorthogonalizeColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVBiorthogonalizeColumn

Bi-orthogonalize a column of two BV objects.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVBiorthonormalizeColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVBiorthonormalizeColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVBiorthonormalizeColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVBiorthonormalizeColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVBiorthonormalizeColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVBiorthonormalizeColumn

Bi-orthonormalize a column of two BV objects.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCopyColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCopyColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCopyColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCopyColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCopyColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVCopyColumn

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCopy.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCopy.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCopy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCopy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCopy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVCopy

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCopyVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCopyVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCopyVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCopyVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCopyVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVCopyVec

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreateFromMat.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateFromMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreateFromMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateFromMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateFromMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVCreateFromMat

Creates a basis vectors object from a dense Mat object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreate.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVCreate

Creates a basis vectors context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreateMat.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreateMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVCreateMat

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreateTensor.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateTensor.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreateTensor.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateTensor.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateTensor -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVCreateVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVCreateVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVCreateVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVCreateVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDestroy

Destroys BV context that was created with BVCreate().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotColumnBegin.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDotColumnBegin -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDotColumnBegin

Starts a split phase dot product computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotColumnEnd.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDotColumnEnd -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDotColumnEnd

Ends a split phase dot product computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDotColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDotColumn

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDot.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDot.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDot.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDot.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDot -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDot

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotVecBegin.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotVecBegin.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotVecBegin.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotVecBegin.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDotVecBegin -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDotVecBegin

Starts a split phase dot product computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotVecEnd.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotVecEnd.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotVecEnd.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotVecEnd.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDotVecEnd -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDotVecEnd

Ends a split phase dot product computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDotVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDotVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDotVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDotVec

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDuplicate.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDuplicate.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDuplicate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDuplicate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDuplicate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVDuplicate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDuplicateResize.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDuplicateResize.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVDuplicateResize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVDuplicateResize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVDuplicateResize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetActiveColumns.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetActiveColumns -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetActiveColumns

Returns the current active dimensions.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetArray.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetArray.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetArray.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetArray.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetArray -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetArray

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetArrayRead.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetArrayRead.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetArrayRead.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetArrayRead.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetArrayRead -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVGetBufferVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetBufferVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetBufferVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetBufferVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetBufferVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetBufferVec

Obtain the buffer vector associated with the BV object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetCachedBV.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetCachedBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetCachedBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetCachedBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetCachedBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetCachedBV

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetColumn

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetMat.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetMat

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetMatMultMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetMatMultMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetMatMultMethod

Gets the method used for the BVMatMult() operation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetMatrix

Retrieves the matrix representation of the inner product.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetNumConstraints.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetNumConstraints -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetNumConstraints

Returns the number of constraints.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetOrthogonalization.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetOrthogonalization -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetOrthogonalization

Gets the orthogonalization settings from the BV object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetRandomContext.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetRandomContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetRandomContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetRandomContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetRandomContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetRandomContext

Gets the PetscRandom object associated with the BV.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetSignature.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetSignature.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetSignature.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetSignature.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetSignature -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetSignature

Retrieves the signature matrix from last orthogonalization.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetSizes.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetSizes.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetSizes.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetSizes.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetSizes -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetSizes

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetSplit.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetSplit.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetSplit.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetSplit.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetSplit -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVGetType.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BV.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BV.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BV

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVInsertConstraints.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInsertConstraints.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVInsertConstraints.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInsertConstraints.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVInsertConstraints -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVInsertConstraints

Insert a set of vectors as constraints.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVInsertVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInsertVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVInsertVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInsertVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVInsertVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVInsertVec

Insert a vector into the specified column.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVInsertVecs.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInsertVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVInsertVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVInsertVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVInsertVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVInsertVecs

Insert a set of vectors into the specified columns.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatArnoldi.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatArnoldi.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatArnoldi.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatArnoldi.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatArnoldi -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatArnoldi

Computes an Arnoldi factorization associated with a matrix.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatLanczos.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatLanczos.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatLanczos.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatLanczos.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatLanczos -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatLanczos

Computes a Lanczos factorization associated with a matrix.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVMatMultHermitianTransposeColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultHermitianTransposeColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultHermitianTransposeColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultHermitianTransposeColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultHermitianTransposeColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatMultHermitianTransposeColumn

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.14.1+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultHermitianTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultHermitianTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVMatMult.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMult.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMult.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMult.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMult -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatMult

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultTransposeColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultTransposeColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultTransposeColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultTransposeColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultTransposeColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatMultTransposeColumn

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatMultTranspose

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultType.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultType.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatMultType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatMultType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatMultType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatMultType

Different ways of performing the BVMatMult() operation

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatProject.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatProject.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMatProject.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMatProject.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMatProject -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMatProject

Computes the projection of a matrix onto a subspace.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMultColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMultColumn

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMult.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMult.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMult.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMult.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMult -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMult

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultInPlace.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultInPlace.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultInPlace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultInPlace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMultInPlace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMultInPlace

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultInPlaceTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMultInPlaceTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMultInPlaceTranspose

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVMultVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVMultVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVMultVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVMultVec

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormalize.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormalize.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormalize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormalize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNormalize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNormalize

Normalize all columns (starting from the leading ones).

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormColumnBegin.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNormColumnBegin -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNormColumnBegin

Starts a split phase norm computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormColumnEnd.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNormColumnEnd -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNormColumnEnd

Ends a split phase norm computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNormColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNormColumn

Computes the vector norm of a selected column.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNorm.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNorm.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNorm.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNorm.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNorm -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNorm

Computes the matrix norm of the BV.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormVecBegin.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormVecBegin.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormVecBegin.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormVecBegin.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNormVecBegin -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNormVecBegin

Starts a split phase norm computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormVecEnd.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormVecEnd.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormVecEnd.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormVecEnd.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNormVecEnd -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNormVecEnd

Ends a split phase norm computation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVNormVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVNormVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVNormVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVNormVec

Computes the norm of a given vector.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogBlockType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogBlockType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVOrthogBlockType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalizeColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVOrthogonalizeColumn

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalize.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalize.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVOrthogonalize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeSomeColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalizeSomeColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVOrthogonalizeSomeColumn

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogonalizeVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogonalizeVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVOrthogonalizeVec

Orthogonalize a given vector with respect to all active columns.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogRefineType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogRefineType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVOrthogRefineType

Determines what type of refinement to use during orthogonalization of vectors

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogType.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogType.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthogType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthogType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthogType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVOrthogType

Determines the method used in the orthogonalization of vectors

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVOrthonormalizeColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVOrthonormalizeColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVRegisterAll

Registers all of the storage variants in the BV package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRegister.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVRegister

Adds a new storage format to the BV package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVResize.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVResize.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVResize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVResize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVResize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVResize

Change the number of columns.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreArray.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreArray.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreArray.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreArray.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreArray -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVRestoreArray

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreArrayRead.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreArrayRead -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVRestoreArrayRead

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVRestoreColumn

Restore a column obtained with BVGetColumn().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreMat.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVRestoreMat

Restores the Mat obtained with BVGetMat().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreSplit.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreSplit.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVRestoreSplit.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVRestoreSplit.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVRestoreSplit -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVRestoreSplit

Restore the BV objects obtained with BVGetSplit().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVScaleColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVScaleColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVScaleColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVScaleColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVScaleColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVScaleColumn

Scale one column of a BV.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVScale.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVScale

Multiply the BV entries by a scalar value.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetActiveColumns.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetActiveColumns -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetActiveColumns

Specify the columns that will be involved in operations.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetBufferVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetBufferVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetBufferVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetBufferVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetBufferVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetBufferVec

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetFromOptions

Sets BV options from the options database.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetMatMultMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetMatMultMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetMatMultMethod

Specifies the method used for the BVMatMult() operation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetMatrix

Specifies the inner product to be used in orthogonalization.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetNumConstraints.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetNumConstraints -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetNumConstraints

Set the number of constraints.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetOrthogonalization.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetOrthogonalization -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandomColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandomColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetRandomColumn

Set one column of a BV to random numbers.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetRandomCond.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandomCond.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetRandomCond.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandomCond.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandomCond -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVSetRandomContext.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandomContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetRandomContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandomContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandomContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetRandomContext

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetRandom.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandom.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetRandom.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetRandom.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetRandom -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetRandom

Set the columns of a BV to random numbers.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetSignature.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetSignature.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetSignature.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetSignature.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetSignature -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetSignature

Sets the signature matrix to be used in orthogonalization.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetSizesFromVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetSizesFromVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVSetSizes.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetSizes.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetSizes.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetSizes.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetSizes -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetSizes

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetType.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVSetType

Selects the type for the BV object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorBuildFirstColumn.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorBuildFirstColumn -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVTensorCompress.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorCompress.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVTensorCompress.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorCompress.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorCompress -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorGetDegree.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorGetDegree -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVTensorGetDegree

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorGetFactors.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorGetFactors -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVTensorRestoreFactors.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVTensorRestoreFactors -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVTensorRestoreFactors

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVType.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVType.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/BV/BVViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/BVView.html slepc-3.14.2+dfsg1/docs/manualpages/BV/BVView.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/BVView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/BVView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ BVView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

BVView

Prints the BV data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/BV/index.html slepc-3.14.2+dfsg1/docs/manualpages/BV/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/BV/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/BV/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSAllocate.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSAllocate.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSAllocate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSAllocate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSAllocate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSAllocate

Allocates memory for internal storage or matrices in DS.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSCond.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSCond.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSCond.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSCond.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSCond -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSCond

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSCopyMat.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSCopyMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSCopyMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSCopyMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSCopyMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSCopyMat

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSCreate.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSCreate

Creates a DS context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSDestroy

Destroys DS context that was created with DSCreate().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSDuplicate.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSDuplicate.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSDuplicate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSDuplicate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSDuplicate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSDuplicate

Creates a new direct solver object with the same options as an existing one.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetArray.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetArray.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetArray.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetArray.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetArray -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/DS/DSGetArrayReal.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetArrayReal.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetArrayReal.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetArrayReal.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetArrayReal -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/DS/DSGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetBlockSize

Gets the block size.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetCompact.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetCompact.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetCompact.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetCompact.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetCompact -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetCompact

Gets the compact storage flag.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetDimensions

Returns the current dimensions.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetExtraRow.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetExtraRow.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetExtraRow.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetExtraRow.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetExtraRow -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetExtraRow

Gets the extra row flag.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetLeadingDimension.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetLeadingDimension -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetLeadingDimension

Returns the leading dimension of the allocated matrices.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetMat.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetMat

Returns a sequential dense Mat object containing the requested matrix.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetMethod

Gets the method currently used in the DS.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetParallel.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetParallel.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetParallel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetParallel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetParallel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetParallel

Gets the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetRefined.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetRefined.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetRefined.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetRefined.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetRefined -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetRefined

Gets the refined vectors flag.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetSlepcSC.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetSlepcSC -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetSlepcSC

Gets the sorting criterion context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetState.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetState.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetState.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetState.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetState -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetState

Returns the current state.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetType.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DS.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DS.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/DS/DSInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/DS/DSMatGetSize.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSMatGetSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSMatGetSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSMatGetSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSMatGetSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSMatGetSize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSMatIsHermitian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSMatIsHermitian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSMatIsHermitian

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSMatType.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSMatType.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSMatType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSMatType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSMatType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSMatType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPGetFN.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPGetFN.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPGetFN.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPGetFN.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPGetFN -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSNEPGetFN

Gets the functions associated with the nonlinear DS.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPGetNumFN.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPGetNumFN -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSNEPGetNumFN

Returns the number of functions stored internally by the DS.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPSetComputeMatrixFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPSetComputeMatrixFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSNEPSetComputeMatrixFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPSetFN.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPSetFN.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSNEPSetFN.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSNEPSetFN.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSNEPSetFN -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSNEPSetFN

Sets a number of functions that define the nonlinear eigenproblem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSOrthogonalize.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSOrthogonalize.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSOrthogonalize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSOrthogonalize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSOrthogonalize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSOrthogonalize

Orthogonalize the columns of a matrix.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSParallelType.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSParallelType.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSParallelType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSParallelType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSParallelType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSParallelType

Indicates the parallel mode that the direct solver will use

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPGetCoefficients.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPGetCoefficients -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSPEPGetCoefficients

Returns the polynomial basis coefficients for a DSPEP.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPGetDegree.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPGetDegree -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSPEPGetDegree

Returns the polynomial degree for a DSPEP.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPSetCoefficients.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPSetCoefficients -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSPEPSetCoefficients

Sets the polynomial basis coefficients for a DSPEP.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPEPSetDegree.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSPEPSetDegree -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSPEPSetDegree

Sets the polynomial degree for a DSPEP.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSPseudoOrthogonalize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSPseudoOrthogonalize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/DS/DSRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSRegisterAll

Registers all of the direct solvers in the DS package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRegister.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSRegister

Adds a direct solver to the DS package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSReset.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSReset

Resets the DS context to the initial state.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRestoreArray.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRestoreArray.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRestoreArray.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRestoreArray.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSRestoreArray -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSRestoreArray

Restores the matrix after DSGetArray() was called.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRestoreArrayReal.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSRestoreArrayReal -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSRestoreArrayReal

Restores the matrix after DSGetArrayReal() was called.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRestoreMat.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRestoreMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSRestoreMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSRestoreMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSRestoreMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSRestoreMat

Restores the matrix after DSGetMat() was called.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetBlockSize

Sets the block size.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetCompact.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetCompact.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetCompact.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetCompact.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetCompact -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetCompact

Switch to compact storage of matrices.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetDimensions

Resize the matrices in the DS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetExtraRow.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetExtraRow.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetExtraRow.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetExtraRow.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetExtraRow -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetExtraRow

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetFromOptions

Sets DS options from the options database.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetIdentity.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetIdentity.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetIdentity.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetIdentity.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetIdentity -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetIdentity

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetMethod

Selects the method to be used to solve the problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetParallel.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetParallel.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetParallel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetParallel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetParallel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetParallel

Selects the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetRefined.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetRefined.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetRefined.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetRefined.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetRefined -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetRefined

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetSlepcSC.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetSlepcSC -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetSlepcSC

Sets the sorting criterion context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetState.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetState.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetState.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetState.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetState -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetState

Change the state of the DS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetType.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSetType

Selects the type for the DS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSolve.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSolve

Solves the problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSort.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSort.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSort.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSort.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSort -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSort

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSortWithPermutation.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSortWithPermutation.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSortWithPermutation.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSortWithPermutation.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSortWithPermutation -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSortWithPermutation

Reorders the result of DSSolve() according to a given permutation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSStateType.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSStateType.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSStateType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSStateType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSStateType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSStateType

Indicates in which state the direct solver is

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSynchronize.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSynchronize.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSSynchronize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSSynchronize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSSynchronize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSSynchronize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSTranslateHarmonic.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSTranslateHarmonic -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSTranslateHarmonic

Computes a translation of the dense system.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSTranslateRKS.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSTranslateRKS.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSTranslateRKS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSTranslateRKS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSTranslateRKS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/DS/DSTruncate.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSTruncate.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSTruncate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSTruncate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSTruncate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSTruncate

Truncates the system represented in the DS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSType.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSType.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSUpdateExtraRow.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSUpdateExtraRow -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSUpdateExtraRow

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSVectors.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSVectors.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSVectors.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSVectors.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSVectors -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSVectors

Compute vectors associated to the dense system such as eigenvectors.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSView.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSView.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSView

Prints the DS data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/DSViewMat.html slepc-3.14.2+dfsg1/docs/manualpages/DS/DSViewMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/DSViewMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/DSViewMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ DSViewMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

DSViewMat

Prints one of the internal DS matrices.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/DS/index.html slepc-3.14.2+dfsg1/docs/manualpages/DS/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/DS/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/DS/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSAllocateSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSAllocateSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSAllocateSolution

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSArnoldiGetDelayed.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSArnoldiGetDelayed -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSArnoldiGetDelayed

Gets the type of reorthogonalization used during the Arnoldi iteration.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSArnoldiSetDelayed.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSArnoldiSetDelayed -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSArnoldiSetDelayed

Activates or deactivates delayed reorthogonalization in the Arnoldi iteration.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBalance.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBalance.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBalance.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBalance.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSBalance -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSBalance

The type of balancing used for non-Hermitian problems

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSBLOPEXGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSBLOPEXGetBlockSize

Gets the block size used in the BLOPEX solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBLOPEXSetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSBLOPEXSetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSBLOPEXSetBlockSize

Sets the block size of the BLOPEX solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSBlzpackGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSBlzpackGetBlockSize

Gets the block size used in the BLZPACK solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackGetNSteps.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackGetNSteps.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackGetNSteps.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackGetNSteps.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSBlzpackGetNSteps -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSBlzpackGetNSteps

Gets the maximum number of steps per run in the BLZPACK solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSBlzpackSetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSBlzpackSetBlockSize

Sets the block size for the BLZPACK package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSBlzpackSetNSteps.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSBlzpackSetNSteps -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSBlzpackSetNSteps

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSExtraction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSExtraction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSExtraction

determines the extraction technique in the CISS solver

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetExtraction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetExtraction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSGetExtraction

Gets the extraction technique used in the CISS solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetKSPs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetKSPs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSGetKSPs

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetQuadRule.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetQuadRule -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSGetQuadRule

Gets the quadrature rule used in the CISS solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetRefinement.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetRefinement -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSGetRefinement

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetSizes.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetSizes -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSGetSizes

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetThreshold.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetThreshold -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSGetThreshold

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSGetUseST.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSGetUseST -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSGetUseST

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSQuadRule.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSQuadRule -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSQuadRule

determines the quadrature rule in the CISS solver

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetExtraction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetExtraction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSSetExtraction

Sets the extraction technique used in the CISS solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetQuadRule.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetQuadRule -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSSetQuadRule

Sets the quadrature rule used in the CISS solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetRefinement.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetRefinement -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSSetRefinement

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetSizes.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetSizes -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSSetSizes

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetThreshold.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetThreshold -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSSetThreshold

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCISSSetUseST.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCISSSetUseST -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCISSSetUseST

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSComputeError.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSComputeError.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSComputeError.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSComputeError.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSComputeError -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSComputeError

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSConvergedReason

Reason an eigensolver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvergedReasonViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvergedReasonViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvergedReasonViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvergedReasonViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSConvergedReasonViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSConvergedReasonViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvergedReasonView.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvergedReasonView.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvergedReasonView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvergedReasonView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSConvergedReasonView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSConvergedReasonView

Displays the reason an EPS solve converged or diverged.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConv.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConv.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConv.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConv.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSConv -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSConvMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSConvMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSCreate.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSCreate

Creates the default EPS context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSDestroy

Destroys the EPS context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSErrorType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSErrorType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSErrorType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSErrorType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSErrorType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSErrorViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSErrorViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSErrorViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSErrorView.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSErrorView.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSErrorView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSErrorView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSErrorView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSErrorView

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSExtraction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSExtraction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSExtraction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSExtraction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSExtraction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSExtraction

Determines the type of extraction technique employed by the eigensolver

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSFEASTGetNumPoints.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSFEASTGetNumPoints -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSFEASTGetNumPoints

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSFEASTSetNumPoints.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSFEASTSetNumPoints -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSFEASTSetNumPoints

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDGetBlockSize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetBOrth.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetBOrth -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDGetBOrth

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetDoubleExpansion.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetDoubleExpansion -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDGetDoubleExpansion

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetInitialSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetInitialSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDGetInitialSize

Returns the initial size of the searching space.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetKrylovStart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetKrylovStart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDGetKrylovStart

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDSetBlockSize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetBOrth.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetBOrth -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDSetBOrth

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetDoubleExpansion.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetDoubleExpansion -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetInitialSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetInitialSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDSetInitialSize

Sets the initial size of the searching space.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetKrylovStart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetKrylovStart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGDSetKrylovStart

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGDSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGDSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSGetBalance.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetBalance.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetBalance.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetBalance.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetBalance -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetBalance

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetBV.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetBV

Obtain the basis vectors object associated to the eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetConverged.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetConverged

Gets the number of converged eigenpairs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetDS.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetDS

Obtain the direct solver object associated to the eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetEigenpair.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetEigenpair -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvalue.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetEigenvalue -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetEigenvalue

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetEigenvector.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetEigenvector -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetEigenvector

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetErrorEstimate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetErrorEstimate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetErrorEstimate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetExtraction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetExtraction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetExtraction

Gets the extraction type used by the EPS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetInterval.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetInterval.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetInterval.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetInterval.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetInterval -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetInterval

Gets the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetInvariantSubspace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetInvariantSubspace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetInvariantSubspace

Gets an orthonormal basis of the computed invariant subspace.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetIterationNumber.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetIterationNumber -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSGetLeftEigenvector.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetLeftEigenvector.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetLeftEigenvector.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetLeftEigenvector.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetLeftEigenvector -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetLeftEigenvector

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetMonitorContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetMonitorContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetMonitorContext

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetOperators.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetOperators.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetOperators.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetOperators.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetOperators -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetOperators

Gets the matrices associated with the eigensystem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetProblemType

Gets the problem type from the EPS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetPurify.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetPurify.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetPurify.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetPurify.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetPurify -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetPurify

Returns the flag indicating whether purification is activated or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetRG.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetRG.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetRG.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetRG.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetRG -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetRG

Obtain the region object associated to the eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetST.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetST.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetST.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetST.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetST -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetST

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetStoppingTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTarget.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTarget.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTarget.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTarget.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTarget -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetTarget

Gets the value of the target.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTrueResidual.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTrueResidual -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetTrueResidual

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTwoSided.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTwoSided.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetTwoSided.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetTwoSided.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetTwoSided -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetTwoSided

Returns the flag indicating whether a two-sided variant of the algorithm is being used or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSGetWhichEigenpairs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSGetWhichEigenpairs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSGetWhichEigenpairs

Returns which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPS.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPS

Abstract SLEPc object that manages all the eigenvalue problem solvers.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSIsGeneralized.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSIsGeneralized -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSIsGeneralized

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSIsHermitian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSIsHermitian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSIsHermitian

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSIsPositive.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSIsPositive.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSIsPositive.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSIsPositive.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSIsPositive -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDGetBlockSize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetBOrth.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetBOrth -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDGetBOrth

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetConstCorrectionTol.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetConstCorrectionTol -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetFix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetFix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDGetFix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetInitialSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetInitialSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDGetInitialSize

Returns the initial size of the searching space.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetKrylovStart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetKrylovStart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDGetKrylovStart

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDSetBlockSize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetBOrth.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetBOrth -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDSetBOrth

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetConstCorrectionTol.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetConstCorrectionTol -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetFix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetFix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDSetFix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetInitialSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetInitialSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDSetInitialSize

Sets the initial size of the searching space.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetKrylovStart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetKrylovStart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSJDSetKrylovStart

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSJDSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSJDSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDetectZeros.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetDetectZeros -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetDetectZeros

Gets the flag that enforces zero detection in spectrum slicing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetInertias.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetInertias -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetLocking

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetPartitions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetPartitions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetPartitions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetRestart

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommInfo.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubcommInfo -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetSubcommInfo

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommMats.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubcommMats -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetSubcommMats

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubcommPairs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubcommPairs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetSubcommPairs

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurGetSubintervals.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurGetSubintervals -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurGetSubintervals

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDetectZeros.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetDetectZeros -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurSetDetectZeros

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurSetLocking

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetPartitions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetPartitions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurSetSubintervals.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurSetSubintervals -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurSetSubintervals

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSKrylovSchurUpdateSubcommMats.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSKrylovSchurUpdateSubcommMats -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSKrylovSchurUpdateSubcommMats

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLanczosGetReorthog.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLanczosGetReorthog -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLanczosGetReorthog

Gets the type of reorthogonalization used during the Lanczos iteration.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLanczosReorthogType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLanczosReorthogType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLanczosReorthogType

determines the type of reorthogonalization used in the Lanczos method

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLanczosSetReorthog.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLanczosSetReorthog -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLanczosSetReorthog

Sets the type of reorthogonalization used during the Lanczos iteration.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLOBPCGGetBlockSize

Gets the block size used in the LOBPCG method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGGetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLOBPCGGetLocking

Gets the locking flag used in the LOBPCG method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLOBPCGGetRestart

Gets the restart parameter used in the LOBPCG method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGSetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLOBPCGSetBlockSize

Sets the block size of the LOBPCG method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGSetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLOBPCGSetLocking

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLOBPCGSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLOBPCGSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIIGetLME.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIIGetLME.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIIGetLME.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIIGetLME.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLyapIIGetLME -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLyapIIGetLME

Retrieve the linear matrix equation solver object (LME) associated with the eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIIGetRanks.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIIGetRanks.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIIGetRanks.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIIGetRanks.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLyapIIGetRanks -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLyapIIGetRanks

Return the rank values used for the Lyapunov step.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIISetLME.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIISetLME.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIISetLME.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIISetLME.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLyapIISetLME -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLyapIISetLME

Associate a linear matrix equation solver object (LME) to the eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIISetRanks.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIISetRanks.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSLyapIISetRanks.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSLyapIISetRanks.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSLyapIISetRanks -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSLyapIISetRanks

Set the ranks used in the solution of the Lyapunov equation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSMonitorAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorCancel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorCancel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSMonitorCancel

Clears all monitors for an EPS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorFirst.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorFirst -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSMonitorFirst

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorLGCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorLGCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSMonitorLGCreate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSMonitorSetFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSMonitorSet.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSMonitorSet -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetNonlinear.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetNonlinear -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPowerGetNonlinear

Returns a flag indicating if the problem is nonlinear.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetShiftType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetShiftType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPowerGetShiftType

Gets the type of shifts used during the power iteration.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetSNES.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetSNES -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPowerGetSNES

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerGetUpdate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerGetUpdate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPowerGetUpdate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetNonlinear.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetNonlinear -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPowerSetNonlinear

Sets a flag to indicate that the problem is nonlinear.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetShiftType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetShiftType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetSNES.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetSNES -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPowerSetSNES

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerSetUpdate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerSetUpdate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPowerShiftType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPowerShiftType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPowerShiftType

determines the type of shift used in the Power iteration

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMEGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPRIMMEGetBlockSize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEGetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMEGetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPRIMMEGetMethod

Gets the method for the PRIMME library.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMEMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMEMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPRIMMEMethod

determines the method selected in the PRIMME library

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMESetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPRIMMESetBlockSize

The maximum block size that PRIMME will try to use.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSPRIMMESetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSPRIMMESetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSPRIMMESetMethod

Sets the method for the PRIMME library.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSProblemType

Determines the type of eigenvalue problem

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSRegisterAll

Registers all the eigenvalue solvers in the EPS package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRegister.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSRegister

Adds a method to the eigenproblem solver package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSReset.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSReset

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRQCGGetReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSRQCGGetReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSRQCGGetReset

Gets the reset parameter used in the RQCG method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSRQCGSetReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSRQCGSetReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetArbitrarySelection.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetArbitrarySelection -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSSetBalance.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetBalance.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetBalance.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetBalance.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetBalance -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetBalance

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetBV.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetBV

Associates a basis vectors object to the eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetConvergenceTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetConvergenceTestFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetDeflationSpace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetDeflationSpace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetDeflationSpace

Specify a basis of vectors that constitute the deflation space.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetDS.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetDS

Associates a direct solver object to the eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetEigenvalueComparison.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetEigenvalueComparison -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetEigenvalueComparison

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetExtraction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetExtraction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetExtraction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetInitialSpace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetInitialSpace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSSetInterval.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetInterval.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetInterval.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetInterval.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetInterval -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetInterval

Defines the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetLeftInitialSpace.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetLeftInitialSpace.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetLeftInitialSpace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetLeftInitialSpace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetLeftInitialSpace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetLeftInitialSpace

Specify a basis of vectors that constitute the left initial space, used by two-sided solvers to start the left subspace.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetOperators.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetOperators.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetOperators.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetOperators.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetOperators -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetOperators

Sets the matrices associated with the eigenvalue problem.

Synopsis

@@ -29,8 +29,8 @@

Notes

To specify a standard eigenproblem, use NULL for parameter B.

-It must be called before EPSSetUp(). If it is called again after EPSSetUp() then -the EPS object is reset. +It must be called before EPSSetUp(). If it is called again after EPSSetUp() and +the matrix sizes have changed then the EPS object is reset.

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetOptionsPrefix -

slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetProblemType

Specifies the type of the eigenvalue problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetPurify.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetPurify.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetPurify.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetPurify.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetPurify -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetPurify

Deactivate eigenvector purification (which is activated by default).

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetRG.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetRG.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetRG.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetRG.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetRG -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetRG

Associates a region object to the eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetST.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetST.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetST.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetST.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetST -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetST

Associates a spectral transformation object to the eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetStoppingTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetStoppingTestFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetStoppingTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTarget.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTarget.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTarget.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTarget.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTarget -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetTarget

Sets the value of the target.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTrueResidual.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTrueResidual -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetTrueResidual

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTwoSided.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTwoSided.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetTwoSided.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetTwoSided.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetTwoSided -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetTwoSided

Sets the solver to use a two-sided variant so that left eigenvectors are also computed.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetUp.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetWhichEigenpairs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetWhichEigenpairs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetWhichEigenpairs

Specifies which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSetWorkVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSetWorkVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSetWorkVecs

Sets a number of work vectors into an EPS object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSolve.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSSolve

Solves the eigensystem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSStop.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSStop.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSStop.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSStop.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSStop -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSStoppingBasic.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSStoppingBasic -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSStoppingBasic

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSType.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSType.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSType

String with the name of a SLEPc eigensolver

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSValuesViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSValuesViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSValuesViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSValuesView.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSValuesView.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSValuesView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSValuesView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSValuesView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSValuesView

Displays the computed eigenvalues in a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSVectorsViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSVectorsViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSVectorsViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSVectorsView.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSVectorsView.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSVectorsView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSVectorsView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSVectorsView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSVectorsView

Outputs computed eigenvectors to a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSView.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSView.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSView

Prints the EPS data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSWhich.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSWhich.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/EPSWhich.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/EPSWhich.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ EPSWhich -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

EPSWhich

Determines which part of the spectrum is requested

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/EPS/index.html slepc-3.14.2+dfsg1/docs/manualpages/EPS/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/EPS/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/EPS/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCombineGetChildren.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNCombineGetChildren -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNCombineGetChildren

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCombineSetChildren.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNCombineSetChildren -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNCombineSetChildren

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCombineType.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCombineType.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCombineType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCombineType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNCombineType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNCombineType

Determines how two functions are combined

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCreate.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNCreate

Creates an FN context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNDestroy

Destroys FN context that was created with FNCreate().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNDuplicate.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNDuplicate.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNDuplicate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNDuplicate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNDuplicate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNDuplicate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateDerivative.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateDerivative -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNEvaluateDerivative

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNEvaluateFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateFunctionMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNEvaluateFunctionMatVec.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNEvaluateFunctionMatVec -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNEvaluateFunctionMatVec

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNGetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNGetMethod

Gets the method currently used in the FN.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetParallel.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetParallel.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetParallel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetParallel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNGetParallel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNGetParallel

Gets the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetScale.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNGetScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNGetScale

Gets the scaling parameters that define the matematical function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetType.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FN.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FN.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FN.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FN.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FN -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FN

Abstraction of a mathematical function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/FN/FNParallelType.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNParallelType.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNParallelType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNParallelType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNParallelType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNParallelType

Indicates the parallel mode that will be used for matrix evaluation

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNPhiGetIndex.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNPhiGetIndex -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNPhiGetIndex

Gets the index of the phi-function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNPhiSetIndex.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNPhiSetIndex -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNPhiSetIndex

Sets the index of the phi-function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalGetDenominator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalGetDenominator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNRationalGetDenominator

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalGetNumerator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalGetNumerator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNRationalGetNumerator

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalSetDenominator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalSetDenominator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNRationalSetDenominator

Sets the parameters defining the denominator of the rational function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRationalSetNumerator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNRationalSetNumerator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNRationalSetNumerator

Sets the parameters defining the numerator of the rational function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNRegisterAll

Registers all of the math functions in the FN package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRegister.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNRegister

Adds a mathematical function to the FN package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNSetFromOptions

Sets FN options from the options database.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNSetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNSetMethod

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetParallel.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetParallel.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetParallel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetParallel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNSetParallel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNSetParallel

Selects the mode of operation in parallel runs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetScale.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNSetScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNSetScale

Sets the scaling parameters that define the matematical function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetType.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNSetType

Selects the type for the FN object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNType.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNType.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNType

String with the name of the mathematical function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/FNView.html slepc-3.14.2+dfsg1/docs/manualpages/FN/FNView.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/FNView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/FNView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ FNView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

FNView

Prints the FN data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/FN/index.html slepc-3.14.2+dfsg1/docs/manualpages/FN/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/FN/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/FN/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/index.html slepc-3.14.2+dfsg1/docs/manualpages/LME/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEAllocateSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEAllocateSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEAllocateSolution

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEComputeError.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEComputeError.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEComputeError.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEComputeError.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEComputeError -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEComputeError

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEConvergedReasonViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEConvergedReasonViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEConvergedReasonViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEConvergedReasonViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEConvergedReasonViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEConvergedReasonViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEConvergedReasonView.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEConvergedReasonView.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEConvergedReasonView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEConvergedReasonView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEConvergedReasonView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEConvergedReasonView

Displays the reason an LME solve converged or diverged.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMECreate.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMECreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMECreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMECreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMECreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMECreate

Creates the default LME context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEDenseHessLyapunovChol.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEDenseHessLyapunovChol.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEDenseHessLyapunovChol.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEDenseHessLyapunovChol.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEDenseHessLyapunovChol -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEDenseHessLyapunovChol

Computes the Cholesky factor of the solution of a dense Lyapunov equation with an upper Hessenberg coefficient matrix.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEDenseLyapunov.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEDenseLyapunov.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEDenseLyapunov.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEDenseLyapunov.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEDenseLyapunov -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEDenseLyapunov

Computes the solution of a dense continuous-time Lyapunov equation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEDestroy

Destroys the LME context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetBV.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetBV

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetCoefficients.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetCoefficients -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetCoefficients

Gets the coefficient matrices of the matrix equation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetDimensions

Gets the dimension of the subspace used by the solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetErrorEstimate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetErrorEstimate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetErrorEstimate

Returns the error estimate obtained during solve.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetErrorIfNotConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetErrorIfNotConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetErrorIfNotConverged

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetIterationNumber.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetIterationNumber -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetMonitorContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetMonitorContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetMonitorContext

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetProblemType

Gets the matrix equation type from the LME object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetRHS.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetRHS.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetRHS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetRHS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetRHS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetRHS

Gets the right-hand side of the matrix equation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetSolution.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetSolution

Gets the solution of the matrix equation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetType.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LME.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LME.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LME.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LME.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LME -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LME

SLEPc object that encapsulates functionality for linear matrix equations

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorCancel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorCancel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEMonitorCancel

Clears all monitors for an LME object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorDefault.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorDefault -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEMonitorDefault

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorLGCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorLGCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEMonitorLGCreate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEMonitorSetFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorSet.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorSet.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEMonitorSet.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEMonitorSet.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEMonitorSet -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEMonitorSet

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEProblemType

Determines the type of linear matrix equation

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMERegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMERegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMERegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMERegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMERegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMERegisterAll

Registers all the matrix functions in the LME package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMERegister.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMERegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMERegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMERegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMERegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMERegister

Adds a method to the linear matrix equation solver package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEReset.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEReset

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetBV.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetBV

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetCoefficients.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetCoefficients.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetCoefficients.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetCoefficients.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetCoefficients -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetCoefficients

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetErrorIfNotConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetErrorIfNotConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetErrorIfNotConverged

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetProblemType

Specifies the type of matrix equation to be solved.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetRHS.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetRHS.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetRHS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetRHS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetRHS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetRHS

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetSolution.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetSolution

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetType.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetUp.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESetUp

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESolve.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMESolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMESolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMESolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMESolve

Solves the linear matrix equation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEType.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEType.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEView.html slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEView.html --- slepc-3.14.1+dfsg1/docs/manualpages/LME/LMEView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/LME/LMEView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ LMEView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

LMEView

Prints the LME data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/index.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNAllocateSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNAllocateSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNAllocateSolution

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNConvergedReasonViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNConvergedReasonViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNConvergedReasonViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNConvergedReasonViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNConvergedReasonViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNConvergedReasonViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNConvergedReasonView.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNConvergedReasonView.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNConvergedReasonView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNConvergedReasonView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNConvergedReasonView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNConvergedReasonView

Displays the reason an MFN solve converged or diverged.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNCreate.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNCreate

Creates the default MFN context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNDestroy

Destroys the MFN context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetBV.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetBV

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetDimensions

Gets the dimension of the subspace used by the solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetErrorIfNotConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetErrorIfNotConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetErrorIfNotConverged

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetFN.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetFN.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetFN.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetFN.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetFN -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetFN

Obtain the math function object associated to the MFN object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetIterationNumber.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetIterationNumber -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetMonitorContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetMonitorContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetMonitorContext

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetOperator.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetOperator

Gets the matrix associated with the MFN object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetType.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFN.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFN.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFN.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFN.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFN -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFN

SLEPc object that encapsulates functionality for matrix functions.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorCancel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorCancel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNMonitorCancel

Clears all monitors for an MFN object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorDefault.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorDefault -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNMonitorDefault

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorLGCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorLGCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNMonitorLGCreate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNMonitorSetFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNMonitorSet.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNMonitorSet -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNMonitorSet

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNRegisterAll

Registers all the matrix functions in the MFN package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNRegister.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNRegister

Adds a method to the matrix function solver package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNReset.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNReset

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetBV.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetBV

Associates a basis vectors object to the matrix function solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetErrorIfNotConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetErrorIfNotConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetErrorIfNotConverged

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetFN.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetFN.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetFN.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetFN.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetFN -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetFN

Specifies the function to be computed.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/MFN/MFNSetOperator.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetOperator

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetType.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetUp.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSetUp

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSolve.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSolve

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSolveTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSolveTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNSolveTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNSolveTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNSolveTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNSolveTranspose

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNType.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNType.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNView.html slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNView.html --- slepc-3.14.1+dfsg1/docs/manualpages/MFN/MFNView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/MFN/MFNView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MFNView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MFNView

Prints the MFN data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/index.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPAllocateSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPAllocateSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPAllocateSolution

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyAdjoint.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyAdjoint.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyAdjoint.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyAdjoint.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPApplyAdjoint -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPApplyAdjoint

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPApplyFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPApplyFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyJacobian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPApplyJacobian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPApplyJacobian

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyResolvent.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyResolvent.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPApplyResolvent.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPApplyResolvent.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPApplyResolvent -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPApplyResolvent

Applies the resolvent T^{-1}(z) to a given vector.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPComputeError.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPComputeError.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPComputeError.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPComputeError.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPComputeError -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPComputeError

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPComputeFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPComputeFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPComputeFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPComputeJacobian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPComputeJacobian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPComputeJacobian

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPConvergedReason

Reason a nonlinear eigensolver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvergedReasonViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvergedReasonViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvergedReasonViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvergedReasonViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPConvergedReasonViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPConvergedReasonViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvergedReasonView.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvergedReasonView.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvergedReasonView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvergedReasonView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPConvergedReasonView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPConvergedReasonView

Displays the reason a NEP solve converged or diverged.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConv.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConv.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConv.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConv.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPConv -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPConvMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPConvMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPCreate.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPCreate

Creates the default NEP context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPDestroy

Destroys the NEP context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPErrorType.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPErrorType.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPErrorType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPErrorType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPErrorType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPErrorViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPErrorViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPErrorViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPErrorView.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPErrorView.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPErrorView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPErrorView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPErrorView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPErrorView

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetBV.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetBV

Obtain the basis vectors object associated to the nonlinear eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetConverged.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetConverged

Gets the number of converged eigenpairs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetDS.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetDS

Obtain the direct solver object associated to the nonlinear eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetEigenpair.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetEigenpair -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetErrorEstimate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetErrorEstimate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetErrorEstimate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetFunction

Returns the Function matrix and optionally the user provided context for evaluating the Function.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetIterationNumber.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetIterationNumber -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetJacobian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetJacobian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetJacobian

Returns the Jacobian matrix and optionally the user provided routine and context for evaluating the Jacobian.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetLeftEigenvector.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetLeftEigenvector.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetLeftEigenvector.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetLeftEigenvector.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetLeftEigenvector -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetLeftEigenvector

Gets the i-th left eigenvector as computed by NEPSolve().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetMonitorContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetMonitorContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetMonitorContext

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetProblemType

Gets the problem type from the NEP object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetRefine.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetRefine.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetRefine.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetRefine.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetRefine -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetRefine

Gets the refinement strategy used by the NEP object, and the associated parameters.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetRG.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetRG.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetRG.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetRG.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetRG -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetRG

Obtain the region object associated to the nonlinear eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorInfo.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetSplitOperatorInfo -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetSplitOperatorTerm.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetSplitOperatorTerm -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetSplitOperatorTerm

Gets the matrices and functions associated with the nonlinear operator in split form.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetStoppingTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTarget.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTarget.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTarget.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTarget.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetTarget -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetTarget

Gets the value of the target.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTwoSided.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTwoSided.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetTwoSided.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetTwoSided.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetTwoSided -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetTwoSided

Returns the flag indicating whether a two-sided variant of the algorithm is being used or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetType.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPGetWhichEigenpairs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPGetWhichEigenpairs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPGetWhichEigenpairs

Returns which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEP

Abstract SLEPc object that manages all solvers for nonlinear eigenvalue problems.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetInterpolation.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolGetInterpolation -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPInterpolGetInterpolation

Gets the tolerance and maximum degree when building the interpolation polynomial.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolGetPEP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolGetPEP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPInterpolGetPEP

Retrieve the polynomial eigensolver object (PEP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetInterpolation.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolSetInterpolation -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPInterpolSetInterpolation

Sets the tolerance and maximum degree when building the interpolation polynomial.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPInterpolSetPEP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPInterpolSetPEP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPInterpolSetPEP

Associate a polynomial eigensolver object (PEP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPMonitorAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorCancel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorCancel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPMonitorCancel

Clears all monitors for a NEP object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorFirst.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorFirst -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPMonitorFirst

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorLGCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorLGCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPMonitorLGCreate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPMonitorSetFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPMonitorSet.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPMonitorSet -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiGetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNArnoldiGetKSP

Retrieve the linear solver object (KSP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiGetLagPreconditioner.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiGetLagPreconditioner -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNArnoldiGetLagPreconditioner

Indicates how often the preconditioner is rebuilt.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiSetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNArnoldiSetKSP

Associate a linear solver object (KSP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNArnoldiSetLagPreconditioner.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNArnoldiSetLagPreconditioner -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNArnoldiSetLagPreconditioner

Determines when the preconditioner is rebuilt in the nonlinear solve.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetEPS

Retrieve the eigensolver object (EPS) associated to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetFullBasis.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetFullBasis.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetFullBasis.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetFullBasis.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetFullBasis -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetFullBasis

Gets the flag that indicates if NLEIGS is using the full-basis variant.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetInterpolation.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetInterpolation -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetInterpolation

Gets the tolerance and maximum degree when building the interpolation via divided differences.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetKSPs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetKSPs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetKSPs

Retrieve the array of linear solver objects associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetLocking

Gets the locking flag used in the NLEIGS method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetRestart

Gets the restart parameter used in the NLEIGS method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetRKShifts.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetRKShifts -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetRKShifts

Gets the list of shifts used in the Rational Krylov method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSGetSingularitiesFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSGetSingularitiesFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSGetSingularitiesFunction

Returns the Function and optionally the user provided context for computing a discretization of the singularity set.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSSetEPS

Associate an eigensolver object (EPS) to the NLEIGS solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetFullBasis.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetFullBasis.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetFullBasis.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetFullBasis.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetFullBasis -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSSetFullBasis

Choose between TOAR-basis (default) and full-basis variants of the NLEIGS method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetInterpolation.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetInterpolation -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSSetInterpolation

Sets the tolerance and maximum degree when building the interpolation via divided differences.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSSetLocking

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetRKShifts.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetRKShifts -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSSetRKShifts

Sets a list of shifts to be used in the Rational Krylov method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPNLEIGSSetSingularitiesFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPNLEIGSSetSingularitiesFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPNLEIGSSetSingularitiesFunction

Sets a user function to compute a discretization of the singularity set (where T(.) is not analytic).

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPProblemType

Determines the type of the nonlinear eigenproblem

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPProjectOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPProjectOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPProjectOperator

Computes the projection of the nonlinear operator.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRefineGetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRefineGetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRefineGetKSP

Obtain the ksp object used by the eigensolver object in the refinement phase.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRefine.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRefine.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRefine.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRefine.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRefine -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRefine

The refinement type

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRefineScheme.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRefineScheme -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRefineScheme

The scheme used for solving linear systems during iterative refinement

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRegisterAll

Registers all the solvers in the NEP package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRegister.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRegister

Adds a method to the nonlinear eigenproblem solver package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPReset.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPReset

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetConstCorrectionTol.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetConstCorrectionTol -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIIGetConstCorrectionTol

Returns the constant tolerance flag.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetDeflationThreshold.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetDeflationThreshold.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetDeflationThreshold.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetDeflationThreshold.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetDeflationThreshold -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIIGetDeflationThreshold

Returns the threshold value that controls deflation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetHermitian.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetHermitian.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetHermitian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetHermitian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetHermitian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIIGetHermitian

Returns the flag about using the Hermitian version of the scalar nonlinear equation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIIGetKSP

Retrieve the linear solver object (KSP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetLagPreconditioner.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetLagPreconditioner -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIIGetLagPreconditioner

Indicates how often the preconditioner is rebuilt.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIIGetMaximumIterations.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIIGetMaximumIterations -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIIGetMaximumIterations

Gets the maximum number of inner iterations of RII.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetConstCorrectionTol.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetConstCorrectionTol -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIISetConstCorrectionTol

Sets a flag to keep the tolerance used in the linear solver constant.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetDeflationThreshold.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetDeflationThreshold.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetDeflationThreshold.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetDeflationThreshold.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetDeflationThreshold -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIISetDeflationThreshold

Sets the threshold value used to switch between deflated and non-deflated iteration.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetHermitian.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetHermitian.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetHermitian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetHermitian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetHermitian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIISetHermitian

Sets a flag to indicate if the Hermitian version of the scalar nonlinear equation must be used by the solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIISetKSP

Associate a linear solver object (KSP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetLagPreconditioner.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetLagPreconditioner -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPRIISetLagPreconditioner

Determines when the preconditioner is rebuilt in the nonlinear solve.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPRIISetMaximumIterations.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPRIISetMaximumIterations -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPSetBV.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetBV

Associates a basis vectors object to the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetConvergenceTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetConvergenceTestFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetDS.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetDS

Associates a direct solver object to the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetEigenvalueComparison.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetEigenvalueComparison -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetEigenvalueComparison

Specifies the eigenvalue comparison function when NEPSetWhichEigenpairs() is set to NEP_WHICH_USER.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPSetFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetInitialSpace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetInitialSpace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetJacobian.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetJacobian -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetJacobian

Sets the function to compute Jacobian T'(lambda) as well as the location to store the matrix.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetProblemType

Specifies the type of the nonlinear eigenvalue problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetRefine.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetRefine.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetRefine.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetRefine.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetRefine -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetRefine

Specifies the refinement type (and options) to be used after the solve.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetRG.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetRG.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetRG.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetRG.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetRG -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetRG

Associates a region object to the nonlinear eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetSplitOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetSplitOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetSplitOperator

Sets the operator of the nonlinear eigenvalue problem in split form.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetStoppingTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetStoppingTestFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetStoppingTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTarget.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTarget.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTarget.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTarget.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetTarget -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetTarget

Sets the value of the target.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTwoSided.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTwoSided.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetTwoSided.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetTwoSided.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetTwoSided -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetTwoSided

Sets the solver to use a two-sided variant so that left eigenvectors are also computed.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetType.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetUp.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetUp

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetWhichEigenpairs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetWhichEigenpairs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetWhichEigenpairs

Specifies which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSetWorkVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSetWorkVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSetWorkVecs

Sets a number of work vectors into a NEP object

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetDeflationThreshold.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetDeflationThreshold.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetDeflationThreshold.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetDeflationThreshold.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPGetDeflationThreshold -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPGetDeflationThreshold

Returns the threshold value that controls deflation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPGetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPGetEPS

Retrieve the linear eigensolver object (EPS) associated to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetEPSLeft.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetEPSLeft.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetEPSLeft.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetEPSLeft.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPGetEPSLeft -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPGetEPSLeft

Retrieve the linear eigensolver object (EPS) associated to the nonlinear eigenvalue solver, used to compute left eigenvectors in the two-sided variant of SLP.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPGetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPGetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPGetKSP

Retrieve the linear solver object (KSP) associated with the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetDeflationThreshold.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetDeflationThreshold.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetDeflationThreshold.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetDeflationThreshold.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPSetDeflationThreshold -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPSetDeflationThreshold

Sets the threshold value used to switch between deflated and non-deflated iteration.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPSetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPSetEPS

Associate a linear eigensolver object (EPS) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetEPSLeft.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetEPSLeft.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetEPSLeft.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetEPSLeft.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPSetEPSLeft -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPSetEPSLeft

Associate a linear eigensolver object (EPS) to the nonlinear eigenvalue solver, used to compute left eigenvectors in the two-sided variant of SLP.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSLPSetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSLPSetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSLPSetKSP

Associate a linear solver object (KSP) to the nonlinear eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSolve.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPSolve

Solves the nonlinear eigensystem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPStop.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPStop.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPStop.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPStop.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPStop -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPStoppingBasic.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPStoppingBasic -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPStoppingBasic

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPType.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPType.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPType

String with the name of a nonlinear eigensolver

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPValuesViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPValuesViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPValuesViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPValuesView.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPValuesView.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPValuesView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPValuesView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPValuesView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPValuesView

Displays the computed eigenvalues in a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPVectorsViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPVectorsViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPVectorsViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPVectorsView.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPVectorsView.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPVectorsView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPVectorsView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPVectorsView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPVectorsView

Outputs computed eigenvectors to a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPView.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPView.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPView

Prints the NEP data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPWhich.html slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPWhich.html --- slepc-3.14.1+dfsg1/docs/manualpages/NEP/NEPWhich.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/NEP/NEPWhich.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ NEPWhich -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

NEPWhich

Determines which part of the spectrum is requested

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/index.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPAllocateSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPAllocateSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPAllocateSolution

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPBasis.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPBasis.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPBasis.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPBasis.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPBasis -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPBasis

The type of polynomial basis used to represent the polynomial eigenproblem

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPCheckDefiniteQEP.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPCheckDefiniteQEP.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPCheckDefiniteQEP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPCheckDefiniteQEP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPCheckDefiniteQEP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPCheckDefiniteQEP

Determines if a symmetric/Hermitian quadratic eigenvalue problem is definite or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPComputeError.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPComputeError.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPComputeError.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPComputeError.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPComputeError -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPComputeError

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPConvergedReason

Reason an eigensolver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvergedReasonViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvergedReasonViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvergedReasonViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvergedReasonViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPConvergedReasonViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPConvergedReasonViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvergedReasonView.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvergedReasonView.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvergedReasonView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvergedReasonView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPConvergedReasonView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPConvergedReasonView

Displays the reason a PEP solve converged or diverged.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConv.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConv.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConv.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConv.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPConv -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPConvMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPConvMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPCreate.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPCreate

Creates the default PEP context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPDestroy

Destroys the PEP context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPErrorType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPErrorType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPErrorType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPErrorType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPErrorType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPErrorViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPErrorViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPErrorViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPErrorView.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPErrorView.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPErrorView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPErrorView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPErrorView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPErrorView

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPExtract.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPExtract.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPExtract.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPExtract.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPExtract -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPExtract

The extraction type

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetBasis.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetBasis.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetBasis.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetBasis.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetBasis -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetBasis

Gets the type of polynomial basis from the PEP object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetBV.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetBV

Obtain the basis vectors object associated to the polynomial eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetConverged.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetConverged

Gets the number of converged eigenpairs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetDS.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetDS

Obtain the direct solver object associated to the polynomial eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetEigenpair.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetEigenpair -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetErrorEstimate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetErrorEstimate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetErrorEstimate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetExtract.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetExtract.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetExtract.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetExtract.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetExtract -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetExtract

Gets the extraction strategy used by the PEP object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetInterval.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetInterval.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetInterval.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetInterval.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetInterval -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetInterval

Gets the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetIterationNumber.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetIterationNumber -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetMonitorContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetMonitorContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetMonitorContext

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetNumMatrices.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetNumMatrices -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetNumMatrices

Returns the number of matrices stored in the PEP.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetOperators.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetOperators.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetOperators.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetOperators.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetOperators -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetOperators

Gets the matrices associated with the polynomial eigensystem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetProblemType

Gets the problem type from the PEP object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetRefine.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetRefine.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetRefine.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetRefine.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetRefine -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetRefine

Gets the refinement strategy used by the PEP object, and the associated parameters.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetRG.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetRG.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetRG.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetRG.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetRG -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetRG

Obtain the region object associated to the polynomial eigensolver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetScale.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetScale

Gets the scaling strategy used by the PEP object, and the associated parameters.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetST.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetST.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetST.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetST.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetST -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetST

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetStoppingTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetTarget.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetTarget.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetTarget.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetTarget.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetTarget -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetTarget

Gets the value of the target.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPGetWhichEigenpairs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPGetWhichEigenpairs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPGetWhichEigenpairs

Returns which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEP.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEP.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEP

Abstract SLEPc object that manages all the polynomial eigenvalue problem solvers.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetFix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDGetFix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDGetFix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetMinimalityIndex.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetMinimalityIndex.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetMinimalityIndex.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetMinimalityIndex.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDGetMinimalityIndex -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDGetMinimalityIndex

Returns the maximum allowed value of the minimality index.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetProjection.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetProjection.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetProjection.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetProjection.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDGetProjection -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDGetProjection

Returns the type of projection used by the Jacobi-Davidson solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDGetRestart

Gets the restart parameter used in the Jacobi-Davidson method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetReusePreconditioner.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetReusePreconditioner.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDGetReusePreconditioner.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDGetReusePreconditioner.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDGetReusePreconditioner -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDGetReusePreconditioner

Returns the flag for reusing the preconditioner.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDProjection.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDProjection.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDProjection.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDProjection.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDProjection -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDProjection

The scheme used for solving linear systems during iterative refinement

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetFix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDSetFix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDSetFix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetMinimalityIndex.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetMinimalityIndex.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetMinimalityIndex.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetMinimalityIndex.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDSetMinimalityIndex -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDSetMinimalityIndex

Sets the maximum allowed value for the minimality index.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetProjection.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetProjection.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetProjection.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetProjection.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDSetProjection -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDSetProjection

Sets the type of projection to be used in the Jacobi-Davidson solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetReusePreconditioner.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetReusePreconditioner.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPJDSetReusePreconditioner.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPJDSetReusePreconditioner.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPJDSetReusePreconditioner -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPJDSetReusePreconditioner

Sets a flag indicating whether the preconditioner must be reused or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearGetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearGetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPLinearGetEPS

Retrieve the eigensolver object (EPS) associated to the polynomial eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearGetExplicitMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearGetExplicitMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPLinearGetExplicitMatrix

Returns the flag indicating if the matrices A and B for the linearization are built explicitly.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearGetLinearization.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearGetLinearization -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPLinearGetLinearization

Returns the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearSetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearSetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPLinearSetEPS

Associate an eigensolver object (EPS) to the polynomial eigenvalue solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearSetExplicitMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearSetExplicitMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPLinearSetExplicitMatrix

Indicate if the matrices A and B for the linearization of the problem must be built explicitly.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPLinearSetLinearization.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPLinearSetLinearization -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPLinearSetLinearization

Set the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPMonitorAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorCancel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorCancel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPMonitorCancel

Clears all monitors for a PEP object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorFirst.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorFirst -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPMonitorFirst

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorLGCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorLGCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPMonitorLGCreate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPMonitorSetFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPMonitorSet.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPMonitorSet -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPProblemType

Determines the type of the polynomial eigenproblem

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiGetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPQArnoldiGetLocking

Gets the locking flag used in the Q-Arnoldi method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPQArnoldiGetRestart

Gets the restart parameter used in the Q-Arnoldi method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiSetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPQArnoldiSetLocking

Choose between locking and non-locking variants of the Q-Arnoldi method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPQArnoldiSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPQArnoldiSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRefineGetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPRefineGetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPRefineGetKSP

Obtain the ksp object used by the eigensolver object in the refinement phase.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRefine.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRefine.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRefine.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRefine.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPRefine -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPRefine

The refinement type

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRefineScheme.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPRefineScheme -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPRefineScheme

The scheme used for solving linear systems during iterative refinement

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPRegisterAll

Registers all the solvers in the PEP package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRegister.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPRegister

Adds a method to the polynomial eigenproblem solver package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPReset.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPReset

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPScale.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPScale

The scaling strategy

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetBasis.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetBasis.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetBasis.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetBasis.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetBasis -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetBasis

Specifies the type of polynomial basis used to describe the polynomial eigenvalue problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetBV.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetBV

Associates a basis vectors object to the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetConvergenceTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetConvergenceTestFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetDS.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetDS

Associates a direct solver object to the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetEigenvalueComparison.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetEigenvalueComparison -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetEigenvalueComparison

Specifies the eigenvalue comparison function when PEPSetWhichEigenpairs() is set to PEP_WHICH_USER.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetExtract.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetExtract.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetExtract.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetExtract.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetExtract -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetExtract

Specifies the extraction strategy to be used.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetInitialSpace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetInitialSpace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPSetInterval.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetInterval.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetInterval.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetInterval.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetInterval -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetInterval

Defines the computational interval for spectrum slicing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetOperators.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetOperators.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetOperators.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetOperators.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetOperators -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetOperators

Sets the coefficient matrices associated with the polynomial eigenvalue problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetProblemType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetProblemType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetProblemType

Specifies the type of the polynomial eigenvalue problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetRefine.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetRefine.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetRefine.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetRefine.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetRefine -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetRefine

Specifies the refinement type (and options) to be used after the solve.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetRG.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetRG.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetRG.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetRG.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetRG -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetRG

Associates a region object to the polynomial eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetScale.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetScale

Specifies the scaling strategy to be used.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetST.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetST.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetST.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetST.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetST -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetST

Associates a spectral transformation object to the eigensolver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetStoppingTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetStoppingTestFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetStoppingTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetTarget.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetTarget.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetTarget.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetTarget.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetTarget -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetTarget

Sets the value of the target.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetUp.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetUp

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetWhichEigenpairs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetWhichEigenpairs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetWhichEigenpairs

Specifies which portion of the spectrum is to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSetWorkVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSetWorkVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSetWorkVecs

Sets a number of work vectors into a PEP object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSolve.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSolve

Solves the polynomial eigensystem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetCheckEigenvalueType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetCheckEigenvalueType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetCheckEigenvalueType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetCheckEigenvalueType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetCheckEigenvalueType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARGetCheckEigenvalueType

Gets the flag for the eigenvalue type check in spectrum slicing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDetectZeros.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetDetectZeros -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARGetDetectZeros

Gets the flag that enforces zero detection in spectrum slicing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARGetDimensions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetInertias.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetInertias -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLinearization.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetLinearization -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARGetLinearization

Returns the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARGetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARGetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARGetLocking

Gets the locking flag used in the STOAR method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetCheckEigenvalueType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetCheckEigenvalueType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetCheckEigenvalueType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetCheckEigenvalueType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetCheckEigenvalueType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARSetCheckEigenvalueType

Sets a flag to check that all the eigenvalues obtained throughout the spectrum slicing computation have the same definite type.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDetectZeros.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetDetectZeros -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARSetDetectZeros

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLinearization.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetLinearization -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARSetLinearization

Set the coefficients that define the linearization of a quadratic eigenproblem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPSTOARSetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPSTOARSetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPSTOARSetLocking

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPStop.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPStop.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPStop.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPStop.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPStop -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPStoppingBasic.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPStoppingBasic -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPStoppingBasic

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARGetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARGetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPTOARGetLocking

Gets the locking flag used in the TOAR method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARGetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARGetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPTOARGetRestart

Gets the restart parameter used in the TOAR method.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARSetLocking.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARSetLocking -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPTOARSetLocking

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPTOARSetRestart.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPTOARSetRestart -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/PEP/PEPType.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPType.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPType

String with the name of a polynomial eigensolver

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPValuesViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPValuesViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPValuesViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPValuesView.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPValuesView.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPValuesView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPValuesView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPValuesView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPValuesView

Displays the computed eigenvalues in a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPVectorsViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPVectorsViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPVectorsViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPVectorsView.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPVectorsView.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPVectorsView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPVectorsView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPVectorsView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPVectorsView

Outputs computed eigenvectors to a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPView.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPView.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPView

Prints the PEP data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPWhich.html slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPWhich.html --- slepc-3.14.1+dfsg1/docs/manualpages/PEP/PEPWhich.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/PEP/PEPWhich.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ PEPWhich -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

PEPWhich

Determines which part of the spectrum is requested

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/index.html slepc-3.14.2+dfsg1/docs/manualpages/RG/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGCheckInside.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGCheckInside.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGCheckInside.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGCheckInside.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGCheckInside -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGCheckInside

Determines if a set of given points are inside the region or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGComputeBoundingBox.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGComputeBoundingBox -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGComputeBoundingBox

Determines the endpoints of a rectangle in the complex plane that contains the region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGComputeContour.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGComputeContour.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGComputeContour.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGComputeContour.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGComputeContour -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGComputeContour

Computes the coordinates of several points lying on the contour of the region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGCreate.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGCreate

Creates an RG context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGDestroy

Destroys RG context that was created with RGCreate().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGEllipseGetParameters.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGEllipseGetParameters -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGEllipseGetParameters

Gets the parameters that define the ellipse region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGEllipseSetParameters.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGEllipseSetParameters -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGEllipseSetParameters

Sets the parameters defining the ellipse region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetComplement.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetComplement.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetComplement.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetComplement.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGGetComplement -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGGetComplement

Gets a flag that that indicates whether the region is complemented or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetScale.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGGetScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGGetScale

Gets the scaling factor.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetType.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RG.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RG.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RG.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RG.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RG -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RG

Region of the complex plane.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGIntervalGetEndpoints.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGIntervalGetEndpoints -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGIntervalGetEndpoints

Gets the parameters that define the interval region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGIntervalSetEndpoints.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGIntervalSetEndpoints -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGIntervalSetEndpoints

Sets the parameters defining the interval region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGIsTrivial.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGIsTrivial.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGIsTrivial.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGIsTrivial.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGIsTrivial -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGIsTrivial

Whether it is the trivial region (whole complex plane).

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPolygonGetVertices.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGPolygonGetVertices -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGPolygonGetVertices

Gets the vertices that define the polygon region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPolygonSetVertices.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGPolygonSetVertices -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGPolygonSetVertices

Sets the vertices that define the polygon region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPopScale.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPopScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPopScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPopScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGPopScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGPopScale

Pops the scaling factor set with RGPushScale().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPushScale.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPushScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGPushScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGPushScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGPushScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGPushScale

Sets an additional scaling factor, that will multiply the user-defined scaling factor.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGRegisterAll

Registers all of the regions in the RG package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRegister.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGRegister

Adds a region to the RG package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRingGetParameters.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRingGetParameters.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRingGetParameters.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRingGetParameters.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGRingGetParameters -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGRingGetParameters

Gets the parameters that define the ring region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRingSetParameters.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRingSetParameters.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGRingSetParameters.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGRingSetParameters.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGRingSetParameters -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGRingSetParameters

Sets the parameters defining the ring region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetComplement.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetComplement.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetComplement.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetComplement.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGSetComplement -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGSetComplement

Sets a flag to indicate that the region is the complement of the specified one.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGSetFromOptions

Sets RG options from the options database.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetScale.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetScale.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetScale.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetScale.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGSetScale -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/RG/RGSetType.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGSetType

Selects the type for the RG object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGType.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGType.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGType

String with the name of the region.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/RG/RGView.html slepc-3.14.2+dfsg1/docs/manualpages/RG/RGView.html --- slepc-3.14.1+dfsg1/docs/manualpages/RG/RGView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/RG/RGView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ RGView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

RGView

Prints the RG data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/singleindex.html slepc-3.14.2+dfsg1/docs/manualpages/singleindex.html --- slepc-3.14.1+dfsg1/docs/manualpages/singleindex.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/singleindex.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

| B | D | diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/index.html slepc-3.14.2+dfsg1/docs/manualpages/ST/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STApplyHermitianTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STApplyHermitianTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STApplyHermitianTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STApplyHermitianTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STApplyHermitianTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STApplyHermitianTranspose

Applies the hermitian-transpose of the operator to a vector, for instance B^H(A - sB)^-H in the case of the shift-and-invert transformation and generalized eigenproblem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STApply.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STApply.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STApply.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STApply.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STApply -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STApplyMat.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STApplyMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STApplyMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STApplyMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STApplyMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STApplyMat

Applies the spectral transformation operator to a matrix, for instance (A - sB)^-1 B in the case of the shift-and-invert transformation and generalized eigenproblem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STApplyTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STApplyTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STApplyTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STApplyTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STApplyTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STBackTransform.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STBackTransform.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STBackTransform.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STBackTransform.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STBackTransform -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STCayleyGetAntishift.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STCayleyGetAntishift -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STCayleyGetAntishift

Gets the value of the anti-shift used in the Cayley spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STCayleySetAntishift.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STCayleySetAntishift -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STCayleySetAntishift

Sets the value of the anti-shift for the Cayley spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STCheckNullSpace.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STCheckNullSpace.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STCheckNullSpace.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STCheckNullSpace.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STCheckNullSpace -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STCreate.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STCreate

Creates a spectral transformation context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STDestroy

Destroys ST context that was created with STCreate().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetDegree.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetDegree.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetDegree.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetDegree.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetDegree -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STFilterGetDegree

Gets the degree of the filter polynomial.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetInterval.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetInterval.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetInterval.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetInterval.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetInterval -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STFilterGetInterval

Gets the interval containing the desired eigenvalues.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetRange.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetRange.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetRange.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetRange.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetRange -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STFilterGetRange

Gets the interval containing all eigenvalues.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterGetThreshold.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFilterGetThreshold -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STFilterSetDegree.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterSetDegree.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterSetDegree.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterSetDegree.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFilterSetDegree -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STFilterSetDegree

Sets the degree of the filter polynomial.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterSetInterval.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterSetInterval.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterSetInterval.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterSetInterval.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFilterSetInterval -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STFilterSetInterval

Defines the interval containing the desired eigenvalues.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterSetRange.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterSetRange.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFilterSetRange.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFilterSetRange.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFilterSetRange -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STFilterSetRange

Defines the numerical range (or field of values) of the matrix, that is, the interval containing all eigenvalues.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetBalanceMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetBalanceMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetBalanceMatrix

Gets the balance matrix used by the spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetBilinearForm.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetBilinearForm.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetBilinearForm.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetBilinearForm.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetBilinearForm -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetBilinearForm

Returns the matrix used in the bilinear form with a generalized problem with semi-definite B.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetKSP

Gets the KSP object associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatMode.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatMode.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatMode.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatMode.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatMode -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetMatMode

Gets a flag that indicates how the transformed matrices are stored in spectral transformations.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetMatrix

Gets the matrices associated with the original eigensystem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatrixTransformed.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatrixTransformed -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetMatrixTransformed

Gets the matrices associated with the transformed eigensystem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatStructure.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatStructure.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetMatStructure.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetMatStructure.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetMatStructure -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetMatStructure

Gets the internal MatStructure attribute to indicate which is the relation of the sparsity pattern of the matrices.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetNumMatrices.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetNumMatrices.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetNumMatrices.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetNumMatrices.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetNumMatrices -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetNumMatrices

Returns the number of matrices stored in the ST.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetOperator.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetOperator

Returns a shell matrix that represents the operator of the spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetShift.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetShift.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetShift.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetShift.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetShift -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetShift

Gets the shift associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetTransform.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetTransform.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetTransform.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetTransform.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetTransform -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetTransform

Gets a flag that that indicates whether the transformed matrices are computed or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetType.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/ST.html slepc-3.14.2+dfsg1/docs/manualpages/ST/ST.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/ST.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/ST.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ ST -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

ST

Abstract SLEPc object that manages spectral transformations. This object is accessed only in advanced applications.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STIsInjective.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STIsInjective.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STIsInjective.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STIsInjective.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STIsInjective -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatCreateVecsEmpty.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatCreateVecsEmpty -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STMatCreateVecs.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatCreateVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatCreateVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatCreateVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatCreateVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STMatCreateVecs

Get vector(s) compatible with the ST matrices.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatGetLocalSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatGetLocalSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STMatGetLocalSize

Returns the number of local rows and columns of the ST matrices.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatGetSize.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatGetSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatGetSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatGetSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatGetSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STMatGetSize

Returns the number of rows and columns of the ST matrices.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatMatSolve.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMatSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatMatSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMatSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatMatSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STMatMatSolve

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.14.1+dfsg1/docs/manualpages/ST/STMatMode.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMode.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatMode.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMode.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatMode -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STMatMode

Determines how to handle the coefficient matrix associated to the spectral transformation

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatMult.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMult.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatMult.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMult.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatMult -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STMatMultTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMultTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatMultTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatMultTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatMultTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STMatSetUp.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatSetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatSetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatSetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatSetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STMatSetUp

Build the preconditioner matrix used in STMatSolve().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatSolve.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STMatSolveTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STMatSolveTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STPostSolve.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STPostSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STPostSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STPostSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STPostSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondGetKSPHasMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondGetKSPHasMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondGetMatForPC.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondGetMatForPC -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STPrecondGetMatForPC

Returns the matrix previously set by STPrecondSetMatForPC().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondSetKSPHasMat.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondSetKSPHasMat -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STPrecondSetKSPHasMat

Sets a flag indicating that during STSetUp the coefficient matrix of the KSP linear solver (A) must be set to be the same matrix as the preconditioner (P).

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STPrecondSetMatForPC.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STPrecondSetMatForPC -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STPrecondSetMatForPC

Sets the matrix that must be used to build the preconditioner.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STRegisterAll

Registers all of the spectral transformations in the ST package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STRegister.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STRegister

Adds a method to the spectral transformation package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STReset.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STReset

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STResetMatrixState.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STResetMatrixState.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STResetMatrixState.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STResetMatrixState.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STResetMatrixState -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STResetMatrixState

Resets the stored state of the matrices in the ST.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STRestoreOperator.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STRestoreOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STRestoreOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STRestoreOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STRestoreOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STRestoreOperator

Restore the previously seized operator matrix.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STScaleShift.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STScaleShift.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STScaleShift.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STScaleShift.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STScaleShift -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STScaleShift

Multiply the shift with a given factor.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetBalanceMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetBalanceMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetBalanceMatrix

Sets the diagonal matrix to be used for balancing.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetDefaultShift.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetDefaultShift.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetDefaultShift.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetDefaultShift.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetDefaultShift -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetDefaultShift

Sets the value of the shift that should be employed if the user did not specify one.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STSetKSP.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetKSP.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetKSP.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetKSP.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetKSP -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetKSP

Sets the KSP object associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetMatMode.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetMatMode.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetMatMode.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetMatMode.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetMatMode -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetMatMode

Sets a flag to indicate how the transformed matrices are being stored in the spectral transformations.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetMatrices.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetMatrices.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetMatrices.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetMatrices.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetMatrices -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetMatrices

Sets the matrices associated with the eigenvalue problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetMatStructure.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetMatStructure.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetMatStructure.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetMatStructure.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetMatStructure -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetShift.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetShift.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetShift.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetShift.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetShift -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetShift

Sets the shift associated with the spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetTransform.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetTransform.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetTransform.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetTransform.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetTransform -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetTransform

Sets a flag to indicate whether the transformed matrices are computed or not.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetType.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetType

Builds ST for a particular spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetUp.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetUp

Prepares for the use of a spectral transformation.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetWorkVecs.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetWorkVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSetWorkVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSetWorkVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSetWorkVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STSetWorkVecs

Sets a number of work vectors into the ST object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STShellGetContext.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellGetContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STShellGetContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellGetContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STShellGetContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STShellGetContext

Returns the user-provided context associated with a shell ST

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STSHELL.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STSHELL.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STSHELL.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STSHELL.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STSHELL -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STShellSetApply.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetApply.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STShellSetApply.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetApply.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetApply -

slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetApplyTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetApplyTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetBackTransform.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetBackTransform -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/ST/STShellSetContext.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STShellSetContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STShellSetContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STShellSetContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STShellSetContext

Sets the context for a shell ST

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STType.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STType.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STType

String with the name of a SLEPc spectral transformation

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/ST/STView.html slepc-3.14.2+dfsg1/docs/manualpages/ST/STView.html --- slepc-3.14.1+dfsg1/docs/manualpages/ST/STView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/ST/STView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ STView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

STView

Prints the ST data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/index.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDAllocateSolution.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDAllocateSolution -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDAllocateSolution

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDAppendOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDAppendOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDAppendOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDComputeError.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDComputeError.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDComputeError.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDComputeError.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDComputeError -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDComputeError

Computes the error (based on the residual norm) associated with the i-th singular triplet.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDConvergedReason

Reason a singular value solver was said to have converged or diverged

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvergedReasonViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvergedReasonViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvergedReasonViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvergedReasonViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDConvergedReasonViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDConvergedReasonViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvergedReasonView.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvergedReasonView.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvergedReasonView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvergedReasonView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDConvergedReasonView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDConvergedReasonView

Displays the reason an SVD solve converged or diverged.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConv.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConv.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConv.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConv.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDConv -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDConv

Determines the convergence test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDConvMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDConvMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/SVD/SVDCreate.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCreate

Creates the default SVD context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossGetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossGetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCrossGetEPS

Retrieve the eigensolver object (EPS) associated to the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossGetExplicitMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCrossGetExplicitMatrix

Returns the flag indicating if A^T*A is built explicitly.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossSetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossSetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCrossSetEPS

Associate an eigensolver object (EPS) to the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCrossSetExplicitMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCrossSetExplicitMatrix

Indicate if the eigensolver operator A^T*A must be computed explicitly.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicGetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCyclicGetEPS

Retrieve the eigensolver object (EPS) associated to the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicGetExplicitMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCyclicGetExplicitMatrix

Returns the flag indicating if H(A) is built explicitly.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetEPS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicSetEPS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCyclicSetEPS

Associate an eigensolver object (EPS) to the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDCyclicSetExplicitMatrix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDCyclicSetExplicitMatrix

Indicate if the eigensolver operator H(A) = [ 0 A ; A^T 0 ] must be computed explicitly.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDDestroy

Destroys the SVD context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDErrorType.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDErrorType.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDErrorType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDErrorType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDErrorType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDErrorType

The error type used to assess accuracy of computed solutions

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDErrorViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDErrorViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDErrorViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDErrorView.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDErrorView.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDErrorView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDErrorView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDErrorView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDErrorView

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDFinalizePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDFinalizePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDFinalizePackage

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetBV.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetBV

Obtain the basis vectors objects associated to the singular value solver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetConverged.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetConverged

Gets the number of converged singular values.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetConvergedReason.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetConvergedReason -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetConvergedReason

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetDimensions

Gets the number of singular values to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetDS.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetDS

Obtain the direct solver object associated to the singular value solver object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetImplicitTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetImplicitTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetImplicitTranspose

Gets the mode used to handle the transpose of the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetIterationNumber.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetIterationNumber -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetMonitorContext.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetMonitorContext -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetMonitorContext

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetOperator.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetOperator

Get the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetSingularTriplet.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetSingularTriplet -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetStoppingTest

Gets the method used to decide the termination of the outer loop of the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetTolerances

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetType.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDGetWhichSingularTriplets.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDGetWhichSingularTriplets -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDGetWhichSingularTriplets

Returns which singular triplets are to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVD.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVD.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVD.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVD.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVD -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVD

Abstract SLEPc object that manages all the singular value problem solvers.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDInitializePackage.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDInitializePackage -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDLanczosGetOneSide.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDLanczosGetOneSide -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDLanczosGetOneSide

Gets if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDLanczosSetOneSide.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDLanczosSetOneSide -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDLanczosSetOneSide

Indicate if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDMonitorAll

Print the current approximate values and error estimates at each iteration of the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorCancel.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorCancel -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDMonitorCancel

Clears all monitors for an SVD object.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorConverged.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorConverged -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDMonitorConverged

Print the approximate values and error estimates as they converge.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorFirst.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorFirst -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDMonitorFirst

Print the first unconverged approximate values and error estimates at each iteration of the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorLGCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorLGCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDMonitorLGCreate

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDMonitorSetFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDMonitorSet.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDMonitorSet -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMEGetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDPRIMMEGetBlockSize

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEGetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMEGetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDPRIMMEGetMethod

Gets the method for the PRIMME SVD solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMEMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMEMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDPRIMMEMethod

determines the SVD method selected in the PRIMME library

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetBlockSize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMESetBlockSize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDPRIMMESetBlockSize

The maximum block size that PRIMME will try to use.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDPRIMMESetMethod.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDPRIMMESetMethod -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDPRIMMESetMethod

Sets the method for the PRIMME SVD solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDRegisterAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDRegisterAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDRegisterAll

Registers all the singular value solvers in the SVD package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDRegister.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDRegister.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDRegister.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDRegister.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDRegister -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDRegister

Adds a method to the singular value solver package.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDReset.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDReset.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDReset.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDReset.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDReset -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDReset

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetBV.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetBV.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetBV.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetBV.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetBV -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetBV

Associates basis vectors objects to the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetConvergenceTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetConvergenceTestFunction

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetConvergenceTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetConvergenceTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetConvergenceTest

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetDimensions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetDimensions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetDimensions

Sets the number of singular values to compute and the dimension of the subspace.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetDS.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetDS.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetDS.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetDS.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetDS -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetDS

Associates a direct solver object to the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetImplicitTranspose.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetImplicitTranspose -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetImplicitTranspose

Indicates how to handle the transpose of the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetInitialSpaces.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetInitialSpaces -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/SVD/SVDSetOperator.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetOperator.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetOperator.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetOperator.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetOperator -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetOperator

Set the matrix associated with the singular value problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetOptionsPrefix.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetOptionsPrefix -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetOptionsPrefix

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTestFunction.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetStoppingTestFunction -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetStoppingTestFunction

Sets a function to decide when to stop the outer iteration of the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetStoppingTest.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetStoppingTest -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetStoppingTest

Specifies how to decide the termination of the outer loop of the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetTolerances.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetTolerances -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetTolerances

Sets the tolerance and maximum iteration count used by the default SVD convergence testers.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetTrackAll.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetTrackAll -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetTrackAll

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetType.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetType.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetType

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetUp.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetUp.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetUp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetUp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetUp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetUp

Sets up all the internal data structures necessary for the execution of the singular value solver.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSetWhichSingularTriplets.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSetWhichSingularTriplets -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSetWhichSingularTriplets

Specifies which singular triplets are to be sought.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSolve.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSolve.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDSolve.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDSolve.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDSolve -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDSolve

Solves the singular value problem.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDStop.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDStop.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDStop.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDStop.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDStop -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDStop

Determines the stopping test

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDStoppingBasic.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDStoppingBasic -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDStoppingBasic

Default routine to determine whether the outer singular value solver iteration must be stopped.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosGetOneSide.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDTRLanczosGetOneSide -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDTRLanczosGetOneSide

Gets if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDTRLanczosSetOneSide.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDTRLanczosSetOneSide -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDTRLanczosSetOneSide

Indicate if the variant of the Lanczos method to be used is one-sided or two-sided.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDType.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDType.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDType.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDType.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDType -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDType

String with the name of a SLEPc singular value solver

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDValuesViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDValuesViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDValuesViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDValuesView.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDValuesView.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDValuesView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDValuesView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDValuesView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDValuesView

Displays the computed singular values in a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDVectorsViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDVectorsViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDVectorsViewFromOptions

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

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDVectorsView.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDVectorsView.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDVectorsView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDVectorsView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDVectorsView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDVectorsView

Outputs computed singular vectors to a viewer.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDViewFromOptions.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDViewFromOptions.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDViewFromOptions.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDViewFromOptions.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDViewFromOptions -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDViewFromOptions

View from options

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDView.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDView.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDView.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDView.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDView -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDView

Prints the SVD data structure.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDWhich.html slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDWhich.html --- slepc-3.14.1+dfsg1/docs/manualpages/SVD/SVDWhich.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/SVD/SVDWhich.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SVDWhich -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SVDWhich

Determines whether largest or smallest singular triplets are to be computed

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/index.html slepc-3.14.2+dfsg1/docs/manualpages/sys/index.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/MatCreateTile.html slepc-3.14.2+dfsg1/docs/manualpages/sys/MatCreateTile.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/MatCreateTile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/MatCreateTile.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MatCreateTile -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MatCreateTile

Explicitly build a matrix from four blocks, G = [ a*A b*B; c*C d*D ].

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html slepc-3.14.2+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/MatCreateVecsEmpty.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ MatCreateVecsEmpty -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

MatCreateVecsEmpty

Get vector(s) compatible with the matrix, i.e. with the same parallel layout, but without internal array.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcConvMonitorCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcConvMonitorCreate

Creates a SlepcConvMonitor context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcConvMonitorDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcConvMonitorDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcConvMonitorDestroy

Destroys a SlepcConvMonitor context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcFinalize.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcFinalize.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcFinalize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcFinalize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcFinalize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcFinalize

Checks for options to be called at the conclusion of the SLEPc program and calls PetscFinalize().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcGetVersion.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcGetVersion.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcGetVersion.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcGetVersion.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcGetVersion -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcGetVersion

Gets the SLEPc version information in a string.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcGetVersionNumber.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcGetVersionNumber -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcGetVersionNumber

Gets the SLEPc version information from the library.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcInitialized.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitialized.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcInitialized.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitialized.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitialized -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcInitialized

Determine whether SLEPc is initialized.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitializeFortran.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitializeFortran -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/sys/SlepcInitialize.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitialize.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcInitialize.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitialize.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitialize -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

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.14.1+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcInitializeNoArguments.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcInitializeNoArguments -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcInitializeNoArguments

Calls SlepcInitialize() from C/C++ without the command line arguments.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcSCCompare.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcSCCompare.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcSCCompare.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcSCCompare.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcSCCompare -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcSCCompare

Compares two (possibly complex) values according to a certain criterion.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcSNPrintfScalar.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcSNPrintfScalar -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcSNPrintfScalar

Prints a PetscScalar variable to a string of given length.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcSortEigenvalues.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcSortEigenvalues -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcSortEigenvalues

Sorts a list of eigenvalues according to the sorting criterion specified in a SlepcSC context.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolCreate.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolCreate -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcVecPoolCreate

Create a pool of Vec.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolDestroy.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolDestroy -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcVecPoolDestroy

Destroy the pool of Vec.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolGetVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolGetVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcVecPoolGetVecs

Get an array of Vec from the pool.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/SlepcVecPoolRestoreVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ SlepcVecPoolRestoreVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SlepcVecPoolRestoreVecs

Get back an array of Vec previously returned by SlepcVecPoolGetVecs().

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCheckOrthogonality.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecCheckOrthogonality -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecCheckOrthogonality

Checks (or prints) the level of (bi-)orthogonality of a set of vectors.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCheckOrthonormality.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCheckOrthonormality.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCheckOrthonormality.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCheckOrthonormality.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecCheckOrthonormality -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecCheckOrthonormality

Checks (or prints) the level of (bi-)orthonormality of a set of vectors.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCompGetSubVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecCompGetSubVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecCompGetSubVecs

Returns the entire array of vectors defining a compound vector.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCompSetSubVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecCompSetSubVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecCompSetSubVecs

Resets the number of subvectors defining a compound vector, or replaces the subvectors.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCreateComp.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCreateComp.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCreateComp.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCreateComp.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecCreateComp -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecCreateComp

Creates a new vector containing several subvectors, each stored separately.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecCreateCompWithVecs.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecCreateCompWithVecs -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecCreateCompWithVecs

Creates a new vector containing several subvectors, each stored separately, from an array of Vecs.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecDuplicateEmpty.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecDuplicateEmpty -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecDuplicateEmpty

Creates a new vector of the same type as an existing vector, but without internal array.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html slepc-3.14.2+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html --- slepc-3.14.1+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/docs/manualpages/sys/VecNormalizeComplex.html 2021-02-01 14:43:03.000000000 +0000 @@ -6,8 +6,8 @@ VecNormalizeComplex -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

VecNormalizeComplex

Normalizes a possibly complex vector by the 2-norm.

Synopsis

diff -Nru slepc-3.14.1+dfsg1/gmakefile slepc-3.14.2+dfsg1/gmakefile --- slepc-3.14.1+dfsg1/gmakefile 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/gmakefile 2021-02-01 14:43:03.000000000 +0000 @@ -82,13 +82,26 @@ $(OBJDIR)/%.o : CXXCPPFLAGS+=-Dslepc_EXPORTS endif -ifneq ($(CUDAC),) -langs := F F90 cu cxx c -else langs := F F90 cxx c +ifneq ($(CUDAC),) +langs += cu +endif +ifneq ($(HIPCC),) +langs += hip.cpp +endif +ifneq ($(SYCLCPP),) +langs += sycl.cxx endif +ifneq ($(KOKKOS_LIB),) +langs += kokkos.cxx +endif + concatlang = $(foreach lang, $(langs), $(srcs-$(1).$(lang):src/%.$(lang)=$(OBJDIR)/%.o)) srcs.o := $(foreach pkg, $(pkgs), $(call concatlang,$(pkg))) +concatlangsrc = $(foreach lang, $(langs), $(srcs-$(1).$(lang))) +csrc := $(foreach pkg, $(pkgs), $(srcs-$(pkg).c)) +showcsrc: + -@echo $(csrc) define SHARED_RECIPE_DLL @$(RM) $@ dllcmd.${PETSC_ARCH} @@ -112,6 +125,14 @@ $(libslepc_static) : obj := $(srcs.o) +define ARCHIVE_RECIPE_ARGFILE + @$(RM) $@ + $(file > $@.args,$^) + $(call quiet,AR) $(AR_FLAGS) $@ @$@.args + @$(RM) $@.args + $(call quiet,RANLIB) $@ +endef + define ARCHIVE_RECIPE_WIN32FE_LIB @$(RM) $@ $@.args @cygpath -w $^ > $@.args @@ -126,7 +147,7 @@ endef %.$(AR_LIB_SUFFIX) : $$(obj) | $$(@D)/.DIR - $(if $(findstring win32fe lib,$(AR)),$(ARCHIVE_RECIPE_WIN32FE_LIB),$(ARCHIVE_RECIPE_DEFAULT)) + $(if $(findstring win32fe lib,$(AR)),$(ARCHIVE_RECIPE_WIN32FE_LIB),$(if $(findstring yes,$(AR_ARGFILE)),$(ARCHIVE_RECIPE_ARGFILE),$(ARCHIVE_RECIPE_DEFAULT))) # with-single-library=0 libpkg = $(foreach pkg, $1, $(LIBDIR)/libslepc$(pkg).$(SL_LINKER_SUFFIX)) @@ -170,9 +191,18 @@ $(OBJDIR)/%.o : src/%.c | $$(@D)/.DIR $(SLEPC_COMPILE.c) $(abspath $<) -o $@ +$(OBJDIR)/%.o : src/%.kokkos.cxx | $$(@D)/.DIR + $(SLEPC_COMPILE.kokkos.cxx) $(abspath $<) -o $@ + $(OBJDIR)/%.o : src/%.cxx | $$(@D)/.DIR $(SLEPC_COMPILE.cxx) $(abspath $<) -o $@ +$(OBJDIR)/%.o : src/%.hip.cpp | $$(@D)/.DIR + $(SLEPC_COMPILE.hip.cpp) $(abspath $<) -o $@ + +$(OBJDIR)/%.o : src/%.sycl.cxx | $$(@D)/.DIR + $(SLEPC_COMPILE.sycl.cxx) $(abspath $<) -o $@ + $(OBJDIR)/%.o : src/%.cu | $$(@D)/.DIR $(SLEPC_COMPILE.cu) $(abspath $<) -o $@ # Compile first so that if there is an error, it comes from a normal compile @$(SLEPC_GENDEPS.cu) $(abspath $<) -o $(@:%.o=%.d) # Generate the dependencies for later @@ -213,11 +243,13 @@ .PHONY: clean all print clean: - $(RM) -rf $(OBJDIR) $(LIBDIR)/libslepc* $(MODDIR)/slepc*.mod $(MPIUNI_MOD) $(generated) + ${RM} -r $(OBJDIR) $(LIBDIR)/libslepc* $(MODDIR)/slepc*.mod $(MPIUNI_MOD) $(generated) # make print VAR=the-variable print: - @echo $($(VAR)) + $(info $($(VAR))) + @true + allobj.d := $(srcs.o:%.o=%.d) # Tell make that allobj.d are all up to date. Without this, the include diff -Nru slepc-3.14.1+dfsg1/gmakefile.test slepc-3.14.2+dfsg1/gmakefile.test --- slepc-3.14.1+dfsg1/gmakefile.test 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/gmakefile.test 2021-02-01 14:43:03.000000000 +0000 @@ -1,5 +1,7 @@ # -*- mode: makefile-gmake -*- +.SUFFIXES: .F .F90 .f90 ${SUFFIXES} .PETSc .C .cc .cpp .cxx .r .rm .so .html .ad .m .tex .mtex .make .fig .svg .eps .pdf .jpg .png .dvi .ps .F95 .f95 .fiat .cu .kokkos.cxx + # TESTSRCDIR is always relative to gmakefile.test # This must be before includes mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) @@ -49,8 +51,14 @@ ifeq ($(FORCE),1) TESTFLAGS += -f # force test execution endif +ifeq ($(CUDAMEMCHECK),1) + TESTFLAGS += -U # Add cuda-memcheck option to the flags +endif ifeq ($(VALGRIND),1) - TESTFLAGS += -V # Add valgrind to the flags + TESTFLAGS += -V # Add valgrind option to the flags +endif +ifeq ($(DEBUG),1) + TESTFLAGS += -d # Launch test in debugger endif ifeq ($(REPLACE),1) TESTFLAGS += -m # Replace results by passing -m to petscdiff @@ -113,11 +121,21 @@ SLEPC_COMPILE.c = $(call quiet,$(cc_name)) -c $(PCC_FLAGS) $(PFLAGS) $(CCPPFLAGS) $(SLEPC_CC_INCLUDES) $(C_DEPFLAGS) SLEPC_COMPILE.cxx = $(call quiet,CXX) -c $(CXX_FLAGS) $(CXXFLAGS) $(CXXCPPFLAGS) $(SLEPC_CC_INCLUDES) $(CXX_DEPFLAGS) +ifneq ($(KOKKOS_BIN),) +# Kokkos requires nvcc to be in PATH and the C++ compiler to be given in an environmental variable +SLEPC_COMPILE.kokkos.cxx = PATH=$(PATH):`dirname $(CUDAC)` NVCC_WRAPPER_DEFAULT_COMPILER=$(CXX_LINKER) $(KOKKOS_BIN)/nvcc_wrapper --expt-extended-lambda -c $(CXX_FLAGS) $(CXXFLAGS) $(CXXCPPFLAGS) +SLEPC_LINK.kokkos.cxx = PATH=$(PATH):`dirname $(CUDAC)` NVCC_WRAPPER_DEFAULT_COMPILER=$(CXX_LINKER) $(KOKKOS_BIN)/nvcc_wrapper --expt-extended-lambda $(CXX_LINKER_FLAGS) $(PETSC_CCPPFLAGS) $(CPPFLAGS) $(LDFLAGS) +else +SLEPC_COMPILE.kokkos.cxx = $(call quiet,CXX) -c $(CXX_FLAGS) $(CXXFLAGS) $(CXXCPPFLAGS) $(CXX_DEPFLAGS) +SLEPC_LINK.kokkos.cxx = $(CXXLINKER) $(CXX_LINKER_FLAGS) $(CXXFLAGS) $(PETSC_CCPPFLAGS) $(CPPFLAGS) $(LDFLAGS) +endif SLEPC_COMPILE.cu = $(call quiet,CUDAC) -c $(CUDAC_FLAGS) $(CUFLAGS) --compiler-options="$(PCC_FLAGS) $(CXXFLAGS) $(CCPPFLAGS)" +SLEPC_COMPILE.hip.cpp = $(call quiet,HIPCC) -c $(HIPCC_FLAGS) $(HIPCCFLAGS) $(HIPCCPPFLAGS) $(HIPCC_DEPFLAGS) +SLEPC_COMPILE.sycl.cpp = $(call quiet,SYCLCPP) -c $(SYCLCPP_FLAGS) $(SYCLCPPFLAGS) $(SYCLCPPCPPFLAGS) $(SYCLCPP_DEPFLAGS) SLEPC_GENDEPS.cu = $(call quiet,CUDAC,.dep) --generate-dependencies --output-directory=$(@D) $(CUDAC_FLAGS) $(CUFLAGS) --compiler-options="$(PCC_FLAGS) $(CXXFLAGS) $(CCPPFLAGS)" SLEPC_COMPILE.F = $(call quiet,FC) -c $(FC_FLAGS) $(FFLAGS) $(FCPPFLAGS) $(FC_DEPFLAGS) -testlangs := c cu cxx F F90 +testlangs := c cu cxx F F90 kokkos.cxx hip.cpp sycl.cpp $(foreach lang, $(testlangs), $(eval \ testexe.$(lang) = $(foreach pkg, $(pkgs), $(testsrcs-$(pkg).$(lang):%.$(lang)=$(TESTDIR)/%)))) concattestlang = $(foreach lang, $(2), $(testsrcs-$(1).$(lang):%.$(lang)=$(TESTDIR)/%.o)) @@ -132,6 +150,9 @@ $(TESTDIR)/%.o : $(EXAMPLESDIR)/%.c | $$(@D)/.DIR $(SLEPC_COMPILE.c) $(abspath $<) -o $@ +$(TESTDIR)/%.o : $(EXAMPLESDIR)/%.kokkos.cxx | $$(@D)/.DIR + $(SLEPC_COMPILE.kokkos.cxx) $(abspath $<) -o $@ + $(TESTDIR)/%.o : $(EXAMPLESDIR)/%.cxx | $$(@D)/.DIR $(SLEPC_COMPILE.cxx) $(abspath $<) -o $@ @@ -174,16 +195,42 @@ #SLEPC_TEST_LIB = $(SLEPC_LIB) #SLEPC_TEST_LIB = $(C_SH_LIB_PATH) $(SLEPC_EXTERNAL_LIB_BASIC) #endif +# if configured --with-macos-firewall-rules, ensure mpiexec.hydra and test executable is on firewall list +ifdef MACOS_FIREWALL_MPIEXEC +define macos-firewall-register + @APP=$(call abspath, $(1)); \ + FW=/usr/libexec/ApplicationFirewall/socketfilterfw; \ + ANS=`$$FW --getappblocked $$APP`; \ + if ! echo $$ANS | grep "$$APP" &> /dev/null; then \ + if ! sudo -n true 2>/dev/null; then echo "Asking for sudo password to add new firewall rule for\n $$APP:"; fi; \ + sudo $$FW --add $$APP && \ + sudo $$FW --blockapp $$APP; \ + else \ + echo $$ANS; \ + fi +endef +define macos-firewall-fix + $(call macos-firewall-register, $(MACOS_FIREWALL_MPIEXEC)) + $(call macos-firewall-register, $(1)) +endef +endif # Test executables $(testexe.F) $(testexe.F90) : $(TESTDIR)/% : $(TESTDIR)/%.o $$^ $(libslepcall) $(call quiet,FLINKER) -o $@ $^ $(SLEPC_TEST_LIB) + -$(call macos-firewall-fix,$@) $(testexe.c) $(testexe.cu) : $(TESTDIR)/% : $(TESTDIR)/%.o $$^ $(libslepcall) $(call quiet,CLINKER) -o $@ $^ $(SLEPC_TEST_LIB) + -$(call macos-firewall-fix,$@) + +$(testexe.kokkos.cxx) : $(TESTDIR)/% : $(TESTDIR)/%.o $$^ $(libslepcall) + $(call quiet,SLEPC_LINK.kokkos.cxx) -o $@ $^ $(SLEPC_TEST_LIB) + -$(call macos-firewall-fix,$@) $(testexe.cxx) : $(TESTDIR)/% : $(TESTDIR)/%.o $$^ $(libslepcall) $(call quiet,CXXLINKER) -o $@ $^ $(SLEPC_TEST_LIB) + -$(call macos-firewall-fix,$@) # Fortran source files need slepc*.mod, which isn't explicitly managed in the makefile. $(foreach pkg, $(pkgs), $(call concattestlang,$(pkg),F F90)) : $(libslepcall) @@ -191,7 +238,7 @@ # Testing convenience targets .PHONY: test pre-clean -test: report_tests check-test-errors +test: report_tests pre-clean: @$(RM) -rf $(TESTDIR)/counts $(TESTLOGTAPFILE) $(TESTLOGERRFILE) @@ -258,42 +305,46 @@ -include $(alltest.d) -# Tests can be generated by searching -# Percent is a wildcard (only one allowed): -# make -f gmakefile test search=sys%ex2 -# To match internal substrings (matches *ex2*): -# make -f gmakefile test searchin=ex2 -# Search and searchin can be combined: -# make -f gmakefile test search='sys%' searchin=ex2 -# For args: -# make -f gmakefile test argsearch=cuda -# For general glob-style searching using python: -# NOTE: uses shell which is possibly slower and is possibly more brittle -# make -f gmakefile test globsearch='sys*ex2*' -ifdef search - TESTTARGETS := $(filter $(search),$(alltesttargets)) - ifdef searchin - TESTTARGETS2 := $(foreach v,$(TESTTARGETS),$(if $(findstring $(searchin),$(v)),$(v))) +# Tests can be generated by searching -- see documentation below +showreport= +ifndef searchin + searchin = " " +endif +ifdef i + searchin = $(i) +endif +ifdef gmakesearch + TESTTARGETS := $(filter $(gmakesearch),$(alltesttargets)) + ifdef gmakesearchin + TESTTARGETS2 := $(foreach v,$(TESTTARGETS),$(if $(findstring $(gmakesearchin),$(v)),$(v))) TESTTARGETS := $(TESTTARGETS2) endif -else ifdef searchin - TESTTARGETS := $(foreach v,$(alltesttargets),$(if $(findstring $(searchin),$(v)),$(v))) +else ifdef gmakesearchin + TESTTARGETS := $(foreach v,$(alltesttargets),$(if $(findstring $(gmakesearchin),$(v)),$(v))) else ifdef argsearch TESTTARGETS := $(foreach v,$(alltesttargets),$(if $(findstring $(argsearch),$($(v)_ARGS)),$(v))) -else ifdef globsearch - TESTTARGETS := $(shell $(PYTHON) -c"import sys,fnmatch,itertools; m=[fnmatch.filter(sys.argv[2].split(),p) for p in sys.argv[1].split()]; print(' '.join(list(itertools.chain.from_iterable(m))))" '$(globsearch)' '$(alltesttargets)') +else ifdef search + TESTTARGETS := $(shell $(PYTHON) $(PETSCCONFIGDIR)/query_tests.py --srcdir=$(SLEPC_DIR)/src --testdir=$(SLEPC_DIR)/$(PETSC_ARCH)/tests --petsc-dir=$(PETSC_DIR) --petsc-arch=$(PETSC_ARCH) --searchin=$(searchin) 'name' '$(search)') +else ifdef s + TESTTARGETS := $(shell $(PYTHON) $(PETSCCONFIGDIR)/query_tests.py --srcdir=$(SLEPC_DIR)/src --testdir=$(SLEPC_DIR)/$(PETSC_ARCH)/tests --petsc-dir=$(PETSC_DIR) --petsc-arch=$(PETSC_ARCH) --searchin=$(searchin) 'name' '$(s)') else ifdef test-fail TESTTARGETS := $(shell $(PETSC_ARCH)/tests/echofailures.sh) else ifdef query - TESTTARGETS := $(shell $(PYTHON) $(PETSCCONFIGDIR)/query_tests.py --srcdir=$(SLEPC_DIR)/src --testdir=$(SLEPC_DIR)/$(PETSC_ARCH)/tests '$(query)' '$(queryval)') + TESTTARGETS := $(shell $(PYTHON) $(PETSCCONFIGDIR)/query_tests.py --srcdir=$(SLEPC_DIR)/src --testdir=$(SLEPC_DIR)/$(PETSC_ARCH)/tests --petsc-dir=$(PETSC_DIR) --petsc-arch=$(PETSC_ARCH) --searchin=$(searchin) '$(query)' '$(queryval)') +else ifdef q + TESTTARGETS := $(shell $(PYTHON) $(PETSCCONFIGDIR)/query_tests.py --srcdir=$(SLEPC_DIR)/src --testdir=$(SLEPC_DIR)/$(PETSC_ARCH)/tests --petsc-dir=$(PETSC_DIR) --petsc-arch=$(PETSC_ARCH) --searchin=$(searchin) '$(q)' '$(qv)') else # No filter - run them all, but delete the executables as we go TESTTARGETS := $(testpkgs) + ifneq ($(PRINTONLY),1) + showreport = "-s" # Only show full report when all tests are run + endif endif .PHONY: report_tests print-test print-test: - -@echo $(TESTTARGETS) + $(info $(TESTTARGETS)) + @true show-fail: -@$(PYTHON) $(PETSCCONFIGDIR)/report_tests.py -d $(TESTDIR)/counts -f @@ -309,9 +360,8 @@ report_tests: starttime $(TESTTARGETS) @$(eval ENDTIME := $(shell date +%s)) - -@if test ${PRINTONLY} -ne 1; then elapsed_time=$$(($(ENDTIME)- $(STARTTIME))) && \ - $(PYTHON) $(PETSCCONFIGDIR)/report_tests.py -m $(MAKE) -d $(TESTDIR)/counts -t 5 -e $${elapsed_time}; \ - fi + -@ elapsed_time=$$(($(ENDTIME)- $(STARTTIME))) && \ + $(PYTHON) $(PETSCCONFIGDIR)/report_tests.py -m $(MAKE) -d $(TESTDIR)/counts -t 5 -e $${elapsed_time} $(showreport) check_output: $(PYTHON) $(PETSCCONFIGDIR)/gmakegentest.py --petsc-dir=$(PETSC_DIR) --petsc-arch=$(PETSC_ARCH) --testdir=$(TESTDIR) --check-output @@ -353,12 +403,15 @@ -@echo " make -f ${makefile} test " -@echo -@echo "Options:" + -@echo " V=1 Verbose output (-v to scripts)" -@echo " NO_RM=1 Do not remove the executables after running" -@echo " REPLACE=1 Replace the output in SLEPC_DIR source tree (-m to test scripts)" -@echo " OUTPUT=1 Show only the errors on stdout" -@echo " ALT=1 Replace 'alt' output in SLEPC_DIR source tree (-M to test scripts)" -@echo " DIFF_NUMBERS=0 Do not diff numbers in the output (default is to diff numbers, as opposed to PETSc)" + -@echo " CUDAMEMCHECK=1 Execute the tests using cuda-memcheck (-U to test scripts)" -@echo " VALGRIND=1 Execute the tests using valgrind (-V to test scripts)" + -@echo " DEBUG=1 Launch tests in the debugger (-d to the scripts)" -@echo " NP= Set a number of processors to pass to scripts." -@echo " FORCE=1 Force SKIP or TODO tests to run" -@echo " PRINTONLY=1 Print the command, but do not run. For loops print first command" @@ -370,33 +423,26 @@ -@echo " OPTIONS='' Override options to scripts (-a to test scripts)" -@echo " EXTRA_OPTIONS='' Add options to scripts (-e to test scripts)" -@echo - -@echo "Tests can be generated by searching:" - -@echo " Percent is a wildcard (only one allowed):" - -@echo " make -f ${makefile} test search=sys%ex2" - -@echo - -@echo " To match internal substrings (matches *ex2*):" - -@echo " make -f ${makefile} test searchin=ex2" - -@echo - -@echo " Search and searchin can be combined:" - -@echo " make -f ${makefile} test search='sys%' searchin=ex2" - -@echo - -@echo " To match patterns in the arguments:" - -@echo " make -f ${makefile} test argsearch=cuda" - -@echo - -@echo " For general glob-style searching using python:" - -@echo " NOTE: uses shell which is possibly slower and more brittle" - -@echo " make -f ${makefile} test globsearch='sys*ex2*'" - -@echo - -@echo " To re-run the last tests which failed:" - -@echo " make -f ${makefile} test test-fail='1'" + -@echo "Tests can be generated by searching with multiple methods" + -@echo " For general searching (using config/query_test.py):" + -@echo " make -f ${makefile} test search='sys*ex2*'" + -@echo " or the shortcut using s" + -@echo " make -f ${makefile} test s='sys*ex2*'" + -@echo " You can also use the full path to a file directory" + -@echo " make -f ${makefile} test s='src/sys/tests/'" -@echo -@echo " To search for fields from the original test definitions:" -@echo " make -f ${makefile} test query='requires' queryval='*MPI_PROCESS_SHARED_MEMORY*'" + -@echo " or the shortcut using q and qv" + -@echo " make -f ${makefile} test q='requires' qv='*MPI_PROCESS_SHARED_MEMORY*'" + -@echo " To filter results from other searches, use searchin" + -@echo " make -f ${makefile} test s='src/sys/tests/' searchin='*options*'" + -@echo + -@echo " To re-run the last tests which failed:" + -@echo " make -f ${makefile} test test-fail='1'" -@echo -@echo " To see which targets match a given pattern (useful for doing a specific target):" - -@echo " make -f ${makefile} print-test search=sys%" - -@echo " which is equivalent to:" - -@echo " make -f ${makefile} print VAR=TESTTARGETS search='sys%'" + -@echo " make -f ${makefile} print-test search=sys*" -@echo -@echo " To build an executable, give full path to location:" -@echo ' make -f ${makefile} $${PETSC_ARCH}/tests/sys/tests/ex1' diff -Nru slepc-3.14.1+dfsg1/include/index.html slepc-3.14.2+dfsg1/include/index.html --- slepc-3.14.1+dfsg1/include/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/include/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,8 +4,8 @@ Generic SLEPc Manual Pages -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

slepc/finclude/
slepc/private/
diff -Nru slepc-3.14.1+dfsg1/include/makefile.html slepc-3.14.2+dfsg1/include/makefile.html --- slepc-3.14.1+dfsg1/include/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/include/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/index.html slepc-3.14.2+dfsg1/include/slepc/finclude/index.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

slepc.h
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/makefile.html slepc-3.14.2+dfsg1/include/slepc/finclude/makefile.html --- slepc-3.14.1+dfsg1/include/slepc/finclude/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/include/slepc/finclude/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -

slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcbv.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcbv.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcbv.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcbv.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcds.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcds.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcds.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcds.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepceps.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepceps.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepceps.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepceps.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcfn.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcfn.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcfn.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcfn.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepc.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepc.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepc.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepc.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepclme.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepclme.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepclme.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepclme.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcmfn.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcmfn.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcmfn.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcmfn.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcnep.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcnep.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcnep.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcnep.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcpep.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcpep.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcpep.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcpep.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcrg.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcrg.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcrg.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcrg.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcst.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcst.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcst.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcst.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcsvd.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcsvd.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcsvd.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcsvd.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/finclude/slepcsys.h.html slepc-3.14.2+dfsg1/include/slepc/finclude/slepcsys.h.html
--- slepc-3.14.1+dfsg1/include/slepc/finclude/slepcsys.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/finclude/slepcsys.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/bvimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/bvimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/bvimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/bvimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/dsimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/dsimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/dsimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/dsimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/epsimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/epsimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/epsimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/epsimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/fnimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/fnimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/fnimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/fnimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/index.html slepc-3.14.2+dfsg1/include/slepc/private/index.html
--- slepc-3.14.1+dfsg1/include/slepc/private/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

epsimpl.h
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/lmeimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/lmeimpl.h.html --- slepc-3.14.1+dfsg1/include/slepc/private/lmeimpl.h.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/include/slepc/private/lmeimpl.h.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -

slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/makefile.html slepc-3.14.2+dfsg1/include/slepc/private/makefile.html
--- slepc-3.14.1+dfsg1/include/slepc/private/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/mfnimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/mfnimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/mfnimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/mfnimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/nepimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/nepimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/nepimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/nepimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/pepimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/pepimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/pepimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/pepimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/rgimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/rgimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/rgimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/rgimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/slepcimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/slepcimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/slepcimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/slepcimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/stimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/stimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/stimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/stimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/svdimpl.h.html slepc-3.14.2+dfsg1/include/slepc/private/svdimpl.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/svdimpl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/svdimpl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc/private/vecimplslepc.h.html slepc-3.14.2+dfsg1/include/slepc/private/vecimplslepc.h.html
--- slepc-3.14.1+dfsg1/include/slepc/private/vecimplslepc.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc/private/vecimplslepc.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcblaslapack.h.html slepc-3.14.2+dfsg1/include/slepcblaslapack.h.html
--- slepc-3.14.1+dfsg1/include/slepcblaslapack.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcblaslapack.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcblaslapack_mangle.h.html slepc-3.14.2+dfsg1/include/slepcblaslapack_mangle.h.html
--- slepc-3.14.1+dfsg1/include/slepcblaslapack_mangle.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcblaslapack_mangle.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcbv.h.html slepc-3.14.2+dfsg1/include/slepcbv.h.html
--- slepc-3.14.1+dfsg1/include/slepcbv.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcbv.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcds.h.html slepc-3.14.2+dfsg1/include/slepcds.h.html
--- slepc-3.14.1+dfsg1/include/slepcds.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcds.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepceps.h.html slepc-3.14.2+dfsg1/include/slepceps.h.html
--- slepc-3.14.1+dfsg1/include/slepceps.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepceps.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcfn.h.html slepc-3.14.2+dfsg1/include/slepcfn.h.html
--- slepc-3.14.1+dfsg1/include/slepcfn.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcfn.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepc.h.html slepc-3.14.2+dfsg1/include/slepc.h.html
--- slepc-3.14.1+dfsg1/include/slepc.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepc.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepclme.h.html slepc-3.14.2+dfsg1/include/slepclme.h.html
--- slepc-3.14.1+dfsg1/include/slepclme.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepclme.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcmath.h.html slepc-3.14.2+dfsg1/include/slepcmath.h.html
--- slepc-3.14.1+dfsg1/include/slepcmath.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcmath.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcmat.h.html slepc-3.14.2+dfsg1/include/slepcmat.h.html
--- slepc-3.14.1+dfsg1/include/slepcmat.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcmat.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcmfn.h.html slepc-3.14.2+dfsg1/include/slepcmfn.h.html
--- slepc-3.14.1+dfsg1/include/slepcmfn.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcmfn.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcnep.h.html slepc-3.14.2+dfsg1/include/slepcnep.h.html
--- slepc-3.14.1+dfsg1/include/slepcnep.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcnep.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcpep.h.html slepc-3.14.2+dfsg1/include/slepcpep.h.html
--- slepc-3.14.1+dfsg1/include/slepcpep.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcpep.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcrg.h.html slepc-3.14.2+dfsg1/include/slepcrg.h.html
--- slepc-3.14.1+dfsg1/include/slepcrg.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcrg.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcrgtypes.h.html slepc-3.14.2+dfsg1/include/slepcrgtypes.h.html
--- slepc-3.14.1+dfsg1/include/slepcrgtypes.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcrgtypes.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcsc.h.html slepc-3.14.2+dfsg1/include/slepcsc.h.html
--- slepc-3.14.1+dfsg1/include/slepcsc.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcsc.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcst.h.html slepc-3.14.2+dfsg1/include/slepcst.h.html
--- slepc-3.14.1+dfsg1/include/slepcst.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcst.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcsvd.h.html slepc-3.14.2+dfsg1/include/slepcsvd.h.html
--- slepc-3.14.1+dfsg1/include/slepcsvd.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcsvd.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcsys.h.html slepc-3.14.2+dfsg1/include/slepcsys.h.html
--- slepc-3.14.1+dfsg1/include/slepcsys.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcsys.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcvec.h.html slepc-3.14.2+dfsg1/include/slepcvec.h.html
--- slepc-3.14.1+dfsg1/include/slepcvec.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcvec.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/include/slepcversion.h slepc-3.14.2+dfsg1/include/slepcversion.h
--- slepc-3.14.1+dfsg1/include/slepcversion.h	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcversion.h	2021-02-01 14:43:03.000000000 +0000
@@ -4,17 +4,17 @@
 #define SLEPC_VERSION_RELEASE    1
 #define SLEPC_VERSION_MAJOR      3
 #define SLEPC_VERSION_MINOR      14
-#define SLEPC_VERSION_SUBMINOR   1
+#define SLEPC_VERSION_SUBMINOR   2
 #define SLEPC_VERSION_PATCH      0
 #define SLEPC_RELEASE_DATE       "September 30, 2020"
-#define SLEPC_VERSION_DATE       "Dec 08, 2020"
+#define SLEPC_VERSION_DATE       "Feb 01, 2021"
 
 #if !defined (SLEPC_VERSION_GIT)
-#define SLEPC_VERSION_GIT        "v3.14.1"
+#define SLEPC_VERSION_GIT        "v3.14.2"
 #endif
 
 #if !defined(SLEPC_VERSION_DATE_GIT)
-#define SLEPC_VERSION_DATE_GIT   "2020-12-08 19:11:10 +0100"
+#define SLEPC_VERSION_DATE_GIT   "2021-02-01 15:37:46 +0100"
 #endif
 
 #define SLEPC_VERSION_EQ(MAJOR,MINOR,SUBMINOR) \
diff -Nru slepc-3.14.1+dfsg1/include/slepcversion.h.html slepc-3.14.2+dfsg1/include/slepcversion.h.html
--- slepc-3.14.1+dfsg1/include/slepcversion.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/include/slepcversion.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: #if !defined(SLEPCVERSION_H)
   2: #define SLEPCVERSION_H
@@ -17,7 +17,7 @@
   4: #define SLEPC_VERSION_RELEASE    1
   5: #define SLEPC_VERSION_MAJOR      3
   6: #define SLEPC_VERSION_MINOR      14
-  7: #define SLEPC_VERSION_SUBMINOR   1
+  7: #define SLEPC_VERSION_SUBMINOR   2
   8: #define SLEPC_VERSION_PATCH      0
   9: #define SLEPC_RELEASE_DATE       "September 30, 2020"
  10: #define SLEPC_VERSION_DATE       "unknown"
diff -Nru slepc-3.14.1+dfsg1/makefile slepc-3.14.2+dfsg1/makefile
--- slepc-3.14.1+dfsg1/makefile	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/makefile	2021-02-01 14:43:03.000000000 +0000
@@ -98,21 +98,20 @@
 # Simple test examples for checking a correct installation
 check_install: check
 check:
-	-+@${OMAKE_SELF} PATH="${PETSC_DIR}/${PETSC_ARCH}/lib:${SLEPC_DIR}/${PETSC_ARCH}/lib:${PATH}" PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} check_build 2>&1 | tee ./${PETSC_ARCH}/lib/slepc/conf/check.log
+	+@(${OMAKE_SELF} PATH="${PETSC_DIR}/${PETSC_ARCH}/lib:${SLEPC_DIR}/${PETSC_ARCH}/lib:${PATH}" PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} check_build 2>&1; echo $$? > ./${PETSC_ARCH}/lib/slepc/conf/checkstatus.log) | tee ./${PETSC_ARCH}/lib/slepc/conf/check.log; ecode=`cat ./${PETSC_ARCH}/lib/slepc/conf/checkstatus.log`; rm ./${PETSC_ARCH}/lib/slepc/conf/checkstatus.log; exit $${ecode}
 check_build:
 	-@echo "Running test examples to verify correct installation"
 	-@echo "Using SLEPC_DIR=${SLEPC_DIR}, PETSC_DIR=${PETSC_DIR} and PETSC_ARCH=${PETSC_ARCH}"
-	+@cd src/eps/tests && \
-         ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest10 && \
-	 egrep "^#define PETSC_HAVE_FORTRAN 1" ${PETSCCONF_H} | tee .ftn.log > /dev/null; \
+	+@cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest10
+	+@egrep "^#define PETSC_HAVE_FORTRAN 1" ${PETSCCONF_H} | tee .ftn.log > /dev/null; \
          if test -s .ftn.log; then \
-           ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest7f; \
-         fi ; ${RM} .ftn.log && \
-	 if [ "${CUDA_LIB}" != "" ]; then \
-           ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest10_cuda; \
-         fi; \
-	 if [ "${BLOPEX_LIB}" != "" ]; then \
-           ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest5_blopex; \
+           cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest7f; \
+         fi ; ${RM} .ftn.log
+	+@if [ "${CUDA_LIB}" != "" ]; then \
+           cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest10_cuda; \
+         fi
+	+@if [ "${BLOPEX_LIB}" != "" ]; then \
+           cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} SLEPC_DIR=${SLEPC_DIR} testtest5_blopex; \
          fi
 	-@echo "Completed test examples"
 
diff -Nru slepc-3.14.1+dfsg1/PKG-INFO slepc-3.14.2+dfsg1/PKG-INFO
--- slepc-3.14.1+dfsg1/PKG-INFO	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/PKG-INFO	2021-02-01 14:43:03.000000000 +0000
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: slepc
-Version: 3.14.1
+Version: 3.14.2
 Summary: SLEPc: Scalable Library for Eigenvalue Problem Computations
 Home-page: https://slepc.upv.es/
 Author: SLEPc Team
@@ -8,7 +8,7 @@
 Maintainer: Lisandro Dalcin
 Maintainer-email: dalcinl@gmail.com
 License: BSD
-Download-URL: https://slepc.upv.es/download/distrib/slepc-3.14.1.tar.gz#egg=slepc-3.14.1
+Download-URL: https://slepc.upv.es/download/distrib/slepc-3.14.2.tar.gz#egg=slepc-3.14.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.14.1+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90 slepc-3.14.2+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90
--- slepc-3.14.1+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/f90-mod/ftn-auto-interfaces/slepceps.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,296 +1,125 @@
-      subroutine EPSRQCGSetReset(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine EPSRQCGSetReset
-      subroutine EPSRQCGGetReset(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine EPSRQCGGetReset
-      subroutine EPSPowerSetShiftType(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSPowerShiftType b ! EPSPowerShiftType
-        PetscErrorCode z
-       end subroutine EPSPowerSetShiftType
-      subroutine EPSPowerGetShiftType(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSPowerShiftType b ! EPSPowerShiftType
-        PetscErrorCode z
-       end subroutine EPSPowerGetShiftType
-      subroutine EPSPowerSetNonlinear(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine EPSPowerSetNonlinear
-      subroutine EPSPowerGetNonlinear(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine EPSPowerGetNonlinear
-      subroutine EPSPowerSetUpdate(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine EPSPowerSetUpdate
-      subroutine EPSPowerGetUpdate(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine EPSPowerGetUpdate
-      subroutine EPSPowerSetSNES(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       SNES b ! SNES
-        PetscErrorCode z
-       end subroutine EPSPowerSetSNES
-      subroutine EPSPowerGetSNES(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       SNES b ! SNES
-        PetscErrorCode z
-       end subroutine EPSPowerGetSNES
-      subroutine EPSCISSSetSizes(a,b,c,d,e,f,g,z)
+      subroutine EPSLOBPCGSetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-       PetscInt e ! PetscInt
-       PetscInt f ! PetscInt
-       PetscBool g ! PetscBool
         PetscErrorCode z
-       end subroutine EPSCISSSetSizes
-      subroutine EPSCISSGetSizes(a,b,c,d,e,f,g,z)
+       end subroutine EPSLOBPCGSetBlockSize
+      subroutine EPSLOBPCGGetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-       PetscInt e ! PetscInt
-       PetscInt f ! PetscInt
-       PetscBool g ! PetscBool
         PetscErrorCode z
-       end subroutine EPSCISSGetSizes
-      subroutine EPSCISSSetThreshold(a,b,c,z)
+       end subroutine EPSLOBPCGGetBlockSize
+      subroutine EPSLOBPCGSetRestart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
         PetscErrorCode z
-       end subroutine EPSCISSSetThreshold
-      subroutine EPSCISSGetThreshold(a,b,c,z)
+       end subroutine EPSLOBPCGSetRestart
+      subroutine EPSLOBPCGGetRestart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-        PetscErrorCode z
-       end subroutine EPSCISSGetThreshold
-      subroutine EPSCISSSetRefinement(a,b,c,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-        PetscErrorCode z
-       end subroutine EPSCISSSetRefinement
-      subroutine EPSCISSGetRefinement(a,b,c,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
         PetscErrorCode z
-       end subroutine EPSCISSGetRefinement
-      subroutine EPSCISSSetUseST(a,b,z)
+       end subroutine EPSLOBPCGGetRestart
+      subroutine EPSLOBPCGSetLocking(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSCISSSetUseST
-      subroutine EPSCISSGetUseST(a,b,z)
+       end subroutine EPSLOBPCGSetLocking
+      subroutine EPSLOBPCGGetLocking(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSCISSGetUseST
-      subroutine EPSCISSSetQuadRule(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSCISSQuadRule b ! EPSCISSQuadRule
-        PetscErrorCode z
-       end subroutine EPSCISSSetQuadRule
-      subroutine EPSCISSGetQuadRule(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSCISSQuadRule b ! EPSCISSQuadRule
-        PetscErrorCode z
-       end subroutine EPSCISSGetQuadRule
-      subroutine EPSCISSSetExtraction(a,b,z)
+       end subroutine EPSLOBPCGGetLocking
+      subroutine EPSJDSetKrylovStart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSCISSExtraction b ! EPSCISSExtraction
+       PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSCISSSetExtraction
-      subroutine EPSCISSGetExtraction(a,b,z)
+       end subroutine EPSJDSetKrylovStart
+      subroutine EPSJDGetKrylovStart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSCISSExtraction b ! EPSCISSExtraction
+       PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSCISSGetExtraction
-      subroutine EPSPRIMMESetBlockSize(a,b,z)
+       end subroutine EPSJDGetKrylovStart
+      subroutine EPSJDSetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSPRIMMESetBlockSize
-      subroutine EPSPRIMMEGetBlockSize(a,b,z)
+       end subroutine EPSJDSetBlockSize
+      subroutine EPSJDGetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSPRIMMEGetBlockSize
-      subroutine EPSPRIMMESetMethod(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSPRIMMEMethod b ! EPSPRIMMEMethod
-        PetscErrorCode z
-       end subroutine EPSPRIMMESetMethod
-      subroutine EPSPRIMMEGetMethod(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       EPSPRIMMEMethod b ! EPSPRIMMEMethod
-        PetscErrorCode z
-       end subroutine EPSPRIMMEGetMethod
-      subroutine EPSLyapIISetRanks(a,b,c,z)
+       end subroutine EPSJDGetBlockSize
+      subroutine EPSJDSetRestart(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
         PetscErrorCode z
-       end subroutine EPSLyapIISetRanks
-      subroutine EPSLyapIIGetRanks(a,b,c,z)
+       end subroutine EPSJDSetRestart
+      subroutine EPSJDGetRestart(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
         PetscErrorCode z
-       end subroutine EPSLyapIIGetRanks
-      subroutine EPSLyapIISetLME(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       LME b ! LME
-        PetscErrorCode z
-       end subroutine EPSLyapIISetLME
-      subroutine EPSLyapIIGetLME(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       LME b ! LME
-        PetscErrorCode z
-       end subroutine EPSLyapIIGetLME
-      subroutine EPSBLOPEXSetBlockSize(a,b,z)
+       end subroutine EPSJDGetRestart
+      subroutine EPSJDSetInitialSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSBLOPEXSetBlockSize
-      subroutine EPSBLOPEXGetBlockSize(a,b,z)
+       end subroutine EPSJDSetInitialSize
+      subroutine EPSJDGetInitialSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSBLOPEXGetBlockSize
-      subroutine EPSKrylovSchurSetRestart(a,b,z)
+       end subroutine EPSJDGetInitialSize
+      subroutine EPSJDSetFix(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscReal b ! PetscReal
         PetscErrorCode z
-       end subroutine EPSKrylovSchurSetRestart
-      subroutine EPSKrylovSchurGetRestart(a,b,z)
+       end subroutine EPSJDSetFix
+      subroutine EPSJDGetFix(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscReal b ! PetscReal
         PetscErrorCode z
-       end subroutine EPSKrylovSchurGetRestart
-      subroutine EPSKrylovSchurSetLocking(a,b,z)
+       end subroutine EPSJDGetFix
+      subroutine EPSJDSetConstCorrectionTol(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSKrylovSchurSetLocking
-      subroutine EPSKrylovSchurGetLocking(a,b,z)
+       end subroutine EPSJDSetConstCorrectionTol
+      subroutine EPSJDGetConstCorrectionTol(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSKrylovSchurGetLocking
-      subroutine EPSKrylovSchurSetPartitions(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine EPSKrylovSchurSetPartitions
-      subroutine EPSKrylovSchurGetPartitions(a,b,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine EPSKrylovSchurGetPartitions
-      subroutine EPSKrylovSchurSetDetectZeros(a,b,z)
+       end subroutine EPSJDGetConstCorrectionTol
+      subroutine EPSJDSetBOrth(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSKrylovSchurSetDetectZeros
-      subroutine EPSKrylovSchurGetDetectZeros(a,b,z)
+       end subroutine EPSJDSetBOrth
+      subroutine EPSJDGetBOrth(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSKrylovSchurGetDetectZeros
-      subroutine EPSKrylovSchurSetDimensions(a,b,c,d,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-        PetscErrorCode z
-       end subroutine EPSKrylovSchurSetDimensions
-      subroutine EPSKrylovSchurGetDimensions(a,b,c,d,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-        PetscErrorCode z
-       end subroutine EPSKrylovSchurGetDimensions
-      subroutine EPSKrylovSchurGetSubcommPairs(a,b,c,d,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscInt b ! PetscInt
-       PetscScalar c ! PetscScalar
-       Vec d ! Vec
-        PetscErrorCode z
-       end subroutine EPSKrylovSchurGetSubcommPairs
-      subroutine EPSKrylovSchurUpdateSubcommMats(a,b,c,d,e,f,g,h,i,z)
-      use slepcepsdef
-       EPS a ! EPS
-       PetscScalar b ! PetscScalar
-       PetscScalar c ! PetscScalar
-       Mat d ! Mat
-       PetscScalar e ! PetscScalar
-       PetscScalar f ! PetscScalar
-       Mat g ! Mat
-       MatStructure h ! MatStructure
-       PetscBool i ! PetscBool
-        PetscErrorCode z
-       end subroutine EPSKrylovSchurUpdateSubcommMats
+       end subroutine EPSJDGetBOrth
       subroutine EPSSetWorkVecs(a,b,z)
       use slepcepsdef
        EPS a ! EPS
@@ -651,30 +480,30 @@
        PetscBool b ! PetscBool
         PetscErrorCode z
        end subroutine EPSIsPositive
-      subroutine EPSLanczosSetReorthog(a,b,z)
+      subroutine EPSBlzpackSetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSLanczosReorthogType b ! EPSLanczosReorthogType
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSLanczosSetReorthog
-      subroutine EPSLanczosGetReorthog(a,b,z)
+       end subroutine EPSBlzpackSetBlockSize
+      subroutine EPSBlzpackGetBlockSize(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       EPSLanczosReorthogType b ! EPSLanczosReorthogType
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSLanczosGetReorthog
-      subroutine EPSArnoldiSetDelayed(a,b,z)
+       end subroutine EPSBlzpackGetBlockSize
+      subroutine EPSBlzpackSetNSteps(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSArnoldiSetDelayed
-      subroutine EPSArnoldiGetDelayed(a,b,z)
+       end subroutine EPSBlzpackSetNSteps
+      subroutine EPSBlzpackGetNSteps(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscBool b ! PetscBool
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSArnoldiGetDelayed
+       end subroutine EPSBlzpackGetNSteps
       subroutine EPSGDSetKrylovStart(a,b,z)
       use slepcepsdef
        EPS a ! EPS
@@ -749,161 +578,332 @@
        PetscBool b ! PetscBool
         PetscErrorCode z
        end subroutine EPSGDGetDoubleExpansion
-      subroutine EPSFEASTSetNumPoints(a,b,z)
+      subroutine EPSLyapIISetRanks(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
         PetscErrorCode z
-       end subroutine EPSFEASTSetNumPoints
-      subroutine EPSFEASTGetNumPoints(a,b,z)
+       end subroutine EPSLyapIISetRanks
+      subroutine EPSLyapIIGetRanks(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
         PetscErrorCode z
-       end subroutine EPSFEASTGetNumPoints
-      subroutine EPSLOBPCGSetBlockSize(a,b,z)
+       end subroutine EPSLyapIIGetRanks
+      subroutine EPSLyapIISetLME(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       LME b ! LME
         PetscErrorCode z
-       end subroutine EPSLOBPCGSetBlockSize
-      subroutine EPSLOBPCGGetBlockSize(a,b,z)
+       end subroutine EPSLyapIISetLME
+      subroutine EPSLyapIIGetLME(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       LME b ! LME
         PetscErrorCode z
-       end subroutine EPSLOBPCGGetBlockSize
-      subroutine EPSLOBPCGSetRestart(a,b,z)
+       end subroutine EPSLyapIIGetLME
+      subroutine EPSPowerSetShiftType(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscReal b ! PetscReal
+       EPSPowerShiftType b ! EPSPowerShiftType
         PetscErrorCode z
-       end subroutine EPSLOBPCGSetRestart
-      subroutine EPSLOBPCGGetRestart(a,b,z)
+       end subroutine EPSPowerSetShiftType
+      subroutine EPSPowerGetShiftType(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscReal b ! PetscReal
+       EPSPowerShiftType b ! EPSPowerShiftType
         PetscErrorCode z
-       end subroutine EPSLOBPCGGetRestart
-      subroutine EPSLOBPCGSetLocking(a,b,z)
+       end subroutine EPSPowerGetShiftType
+      subroutine EPSPowerSetNonlinear(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSLOBPCGSetLocking
-      subroutine EPSLOBPCGGetLocking(a,b,z)
+       end subroutine EPSPowerSetNonlinear
+      subroutine EPSPowerGetNonlinear(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSLOBPCGGetLocking
-      subroutine EPSBlzpackSetBlockSize(a,b,z)
+       end subroutine EPSPowerGetNonlinear
+      subroutine EPSPowerSetUpdate(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSBlzpackSetBlockSize
-      subroutine EPSBlzpackGetBlockSize(a,b,z)
+       end subroutine EPSPowerSetUpdate
+      subroutine EPSPowerGetUpdate(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSBlzpackGetBlockSize
-      subroutine EPSBlzpackSetNSteps(a,b,z)
+       end subroutine EPSPowerGetUpdate
+      subroutine EPSPowerSetSNES(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       SNES b ! SNES
         PetscErrorCode z
-       end subroutine EPSBlzpackSetNSteps
-      subroutine EPSBlzpackGetNSteps(a,b,z)
+       end subroutine EPSPowerSetSNES
+      subroutine EPSPowerGetSNES(a,b,z)
       use slepcepsdef
        EPS a ! EPS
-       PetscInt b ! PetscInt
+       SNES b ! SNES
         PetscErrorCode z
-       end subroutine EPSBlzpackGetNSteps
-      subroutine EPSJDSetKrylovStart(a,b,z)
+       end subroutine EPSPowerGetSNES
+      subroutine EPSKrylovSchurSetRestart(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine EPSKrylovSchurSetRestart
+      subroutine EPSKrylovSchurGetRestart(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine EPSKrylovSchurGetRestart
+      subroutine EPSKrylovSchurSetLocking(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSJDSetKrylovStart
-      subroutine EPSJDGetKrylovStart(a,b,z)
+       end subroutine EPSKrylovSchurSetLocking
+      subroutine EPSKrylovSchurGetLocking(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSJDGetKrylovStart
-      subroutine EPSJDSetBlockSize(a,b,z)
+       end subroutine EPSKrylovSchurGetLocking
+      subroutine EPSKrylovSchurSetPartitions(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSJDSetBlockSize
-      subroutine EPSJDGetBlockSize(a,b,z)
+       end subroutine EPSKrylovSchurSetPartitions
+      subroutine EPSKrylovSchurGetPartitions(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine EPSJDGetBlockSize
-      subroutine EPSJDSetRestart(a,b,c,z)
+       end subroutine EPSKrylovSchurGetPartitions
+      subroutine EPSKrylovSchurSetDetectZeros(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine EPSKrylovSchurSetDetectZeros
+      subroutine EPSKrylovSchurGetDetectZeros(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine EPSKrylovSchurGetDetectZeros
+      subroutine EPSKrylovSchurSetDimensions(a,b,c,d,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
         PetscErrorCode z
-       end subroutine EPSJDSetRestart
-      subroutine EPSJDGetRestart(a,b,c,z)
+       end subroutine EPSKrylovSchurSetDimensions
+      subroutine EPSKrylovSchurGetDimensions(a,b,c,d,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
        PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
         PetscErrorCode z
-       end subroutine EPSJDGetRestart
-      subroutine EPSJDSetInitialSize(a,b,z)
+       end subroutine EPSKrylovSchurGetDimensions
+      subroutine EPSKrylovSchurGetSubcommPairs(a,b,c,d,z)
       use slepcepsdef
        EPS a ! EPS
        PetscInt b ! PetscInt
+       PetscScalar c ! PetscScalar
+       Vec d ! Vec
         PetscErrorCode z
-       end subroutine EPSJDSetInitialSize
-      subroutine EPSJDGetInitialSize(a,b,z)
+       end subroutine EPSKrylovSchurGetSubcommPairs
+      subroutine EPSKrylovSchurUpdateSubcommMats(a,b,c,d,e,f,g,h,i,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscScalar b ! PetscScalar
+       PetscScalar c ! PetscScalar
+       Mat d ! Mat
+       PetscScalar e ! PetscScalar
+       PetscScalar f ! PetscScalar
+       Mat g ! Mat
+       MatStructure h ! MatStructure
+       PetscBool i ! PetscBool
+        PetscErrorCode z
+       end subroutine EPSKrylovSchurUpdateSubcommMats
+      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
         PetscErrorCode z
-       end subroutine EPSJDGetInitialSize
-      subroutine EPSJDSetFix(a,b,z)
+       end subroutine EPSCISSSetSizes
+      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
+        PetscErrorCode z
+       end subroutine EPSCISSGetSizes
+      subroutine EPSCISSSetThreshold(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
         PetscErrorCode z
-       end subroutine EPSJDSetFix
-      subroutine EPSJDGetFix(a,b,z)
+       end subroutine EPSCISSSetThreshold
+      subroutine EPSCISSGetThreshold(a,b,c,z)
       use slepcepsdef
        EPS a ! EPS
        PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
         PetscErrorCode z
-       end subroutine EPSJDGetFix
-      subroutine EPSJDSetConstCorrectionTol(a,b,z)
+       end subroutine EPSCISSGetThreshold
+      subroutine EPSCISSSetRefinement(a,b,c,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSCISSSetRefinement
+      subroutine EPSCISSGetRefinement(a,b,c,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSCISSGetRefinement
+      subroutine EPSCISSSetUseST(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSJDSetConstCorrectionTol
-      subroutine EPSJDGetConstCorrectionTol(a,b,z)
+       end subroutine EPSCISSSetUseST
+      subroutine EPSCISSGetUseST(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSJDGetConstCorrectionTol
-      subroutine EPSJDSetBOrth(a,b,z)
+       end subroutine EPSCISSGetUseST
+      subroutine EPSCISSSetQuadRule(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSCISSQuadRule b ! EPSCISSQuadRule
+        PetscErrorCode z
+       end subroutine EPSCISSSetQuadRule
+      subroutine EPSCISSGetQuadRule(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSCISSQuadRule b ! EPSCISSQuadRule
+        PetscErrorCode z
+       end subroutine EPSCISSGetQuadRule
+      subroutine EPSCISSSetExtraction(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSCISSExtraction b ! EPSCISSExtraction
+        PetscErrorCode z
+       end subroutine EPSCISSSetExtraction
+      subroutine EPSCISSGetExtraction(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSCISSExtraction b ! EPSCISSExtraction
+        PetscErrorCode z
+       end subroutine EPSCISSGetExtraction
+      subroutine EPSArnoldiSetDelayed(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSJDSetBOrth
-      subroutine EPSJDGetBOrth(a,b,z)
+       end subroutine EPSArnoldiSetDelayed
+      subroutine EPSArnoldiGetDelayed(a,b,z)
       use slepcepsdef
        EPS a ! EPS
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine EPSJDGetBOrth
+       end subroutine EPSArnoldiGetDelayed
+      subroutine EPSFEASTSetNumPoints(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSFEASTSetNumPoints
+      subroutine EPSFEASTGetNumPoints(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSFEASTGetNumPoints
+      subroutine EPSRQCGSetReset(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSRQCGSetReset
+      subroutine EPSRQCGGetReset(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSRQCGGetReset
+      subroutine EPSLanczosSetReorthog(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSLanczosReorthogType b ! EPSLanczosReorthogType
+        PetscErrorCode z
+       end subroutine EPSLanczosSetReorthog
+      subroutine EPSLanczosGetReorthog(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSLanczosReorthogType b ! EPSLanczosReorthogType
+        PetscErrorCode z
+       end subroutine EPSLanczosGetReorthog
+      subroutine EPSBLOPEXSetBlockSize(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSBLOPEXSetBlockSize
+      subroutine EPSBLOPEXGetBlockSize(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSBLOPEXGetBlockSize
+      subroutine EPSPRIMMESetBlockSize(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSPRIMMESetBlockSize
+      subroutine EPSPRIMMEGetBlockSize(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine EPSPRIMMEGetBlockSize
+      subroutine EPSPRIMMESetMethod(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSPRIMMEMethod b ! EPSPRIMMEMethod
+        PetscErrorCode z
+       end subroutine EPSPRIMMESetMethod
+      subroutine EPSPRIMMEGetMethod(a,b,z)
+      use slepcepsdef
+       EPS a ! EPS
+       EPSPRIMMEMethod b ! EPSPRIMMEMethod
+        PetscErrorCode z
+       end subroutine EPSPRIMMEGetMethod
diff -Nru slepc-3.14.1+dfsg1/src/eps/f90-mod/index.html slepc-3.14.2+dfsg1/src/eps/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/eps/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/eps/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/eps/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/f90-mod/slepceps.h90.html slepc-3.14.2+dfsg1/src/eps/f90-mod/slepceps.h90.html
--- slepc-3.14.1+dfsg1/src/eps/f90-mod/slepceps.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/f90-mod/slepceps.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/f90-mod/slepceps.h.html slepc-3.14.2+dfsg1/src/eps/f90-mod/slepceps.h.html
--- slepc-3.14.1+dfsg1/src/eps/f90-mod/slepceps.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/f90-mod/slepceps.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/index.html slepc-3.14.2+dfsg1/src/eps/impls/cg/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/cg/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/cg/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/lobpcg/index.html slepc-3.14.2+dfsg1/src/eps/impls/cg/lobpcg/index.html --- slepc-3.14.1+dfsg1/src/eps/impls/cg/lobpcg/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/cg/lobpcg/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html slepc-3.14.2+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html --- slepc-3.14.1+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/cg/lobpcg/lobpcg.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/lobpcg/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/cg/lobpcg/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/cg/lobpcg/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/cg/lobpcg/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/cg/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/cg/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/cg/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/rqcg/index.html slepc-3.14.2+dfsg1/src/eps/impls/cg/rqcg/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/cg/rqcg/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/cg/rqcg/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/rqcg/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/cg/rqcg/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/cg/rqcg/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/cg/rqcg/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html slepc-3.14.2+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/cg/rqcg/rqcg.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/ciss/ciss.c.html slepc-3.14.2+dfsg1/src/eps/impls/ciss/ciss.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/ciss/ciss.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/ciss/ciss.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/ciss/index.html slepc-3.14.2+dfsg1/src/eps/impls/ciss/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/ciss/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/ciss/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/ciss/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/ciss/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/ciss/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/ciss/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/davidson.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/davidson.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/davidson.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/davidson.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/davidson.h.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/davidson.h.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/davidson.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/davidson.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdcalcpairs.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdgd2.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdgd2.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdgd2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdgd2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdimprovex.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdinitv.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdinitv.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdinitv.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdinitv.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdschm.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdschm.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdschm.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdschm.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdtestconv.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdupdatev.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdutils.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdutils.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/dvdutils.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/dvdutils.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/gd/gd.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/gd/gd.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/gd/gd.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/gd/gd.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/gd/index.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/gd/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/gd/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/gd/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/gd/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/gd/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/davidson/gd/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/gd/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/index.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/jd/index.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/jd/index.html --- slepc-3.14.1+dfsg1/src/eps/impls/davidson/jd/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/jd/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/jd/jd.c.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/jd/jd.c.html --- slepc-3.14.1+dfsg1/src/eps/impls/davidson/jd/jd.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/jd/jd.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/jd/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/jd/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/jd/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/jd/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/davidson/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/davidson/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/davidson/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/davidson/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/arpack.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/arpack.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/arpack.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/arpack.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/arpack.h.html slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/arpack.h.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/arpack.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/arpack.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/arpack/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/arpack/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/blopex.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/blopex.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/blopex.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/blopex.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/blopex.h.html slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/blopex.h.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/blopex.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/blopex.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
   2: /* @@@ BLOPEX (version 1.1) LGPL Version 2.1 or above.See www.gnu.org. */
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/petsc-interface.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
   2: /* @@@ BLOPEX (version 1.1) LGPL Version 2.1 or above.See www.gnu.org. */
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blopex/slepc-interface.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/blzpack.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/blzpack.h.html slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/blzpack.h.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/blzpack.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/blzpack.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/blzpack/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/blzpack/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/elemental/elemental.cxx.html slepc-3.14.2+dfsg1/src/eps/impls/external/elemental/elemental.cxx.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/elemental/elemental.cxx.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/elemental/elemental.cxx.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/elemental/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/elemental/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/elemental/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/elemental/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/elemental/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/elemental/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/elemental/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/elemental/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/elpa/elpa.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/elpa/elpa.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/elpa/elpa.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/elpa/elpa.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/elpa/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/elpa/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/elpa/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/elpa/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/elpa/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/elpa/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/elpa/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/elpa/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/feast/feast.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/feast/feast.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/feast/feast.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/feast/feast.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/feast/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/feast/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/feast/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/feast/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/feast/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/feast/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/feast/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/feast/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/primme/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/primme/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/primme/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/primme/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/primme/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/primme/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/primme/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/primme/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/primme/primme.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/primme/primme.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/primme/primme.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/primme/primme.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/scalapack.c slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/scalapack.c
--- slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/scalapack.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/scalapack.c	2021-02-01 14:43:03.000000000 +0000
@@ -87,7 +87,7 @@
     /* allocate workspace */
     PetscStackCallBLAS("SCALAPACKsygvx",SCALAPACKsygvx_(&one,"V","A","L",&a->N,a->loc,&one,&one,a->desc,b->loc,&one,&one,b->desc,&rdummy,&rdummy,&idummy,&idummy,&abstol,&m,&idummy,w,&orfac,q->loc,&one,&one,q->desc,minlwork,&lwork,&minliwork,&liwork,ifail,iclustr,gap,&info));
     PetscCheckScaLapackInfo("sygvx",info);
-    ierr = PetscBLASIntCast(minlwork[0],&lwork);CHKERRQ(ierr);
+    ierr = PetscBLASIntCast((PetscInt)minlwork[0],&lwork);CHKERRQ(ierr);
     liwork = minliwork;
     /* call computational routine */
     ierr = PetscMalloc2(lwork,&work,liwork,&iwork);CHKERRQ(ierr);
@@ -98,8 +98,8 @@
     /* allocate workspace */
     PetscStackCallBLAS("SCALAPACKsygvx",SCALAPACKsygvx_(&one,"V","A","L",&a->N,a->loc,&one,&one,a->desc,b->loc,&one,&one,b->desc,&rdummy,&rdummy,&idummy,&idummy,&abstol,&m,&idummy,w,&orfac,q->loc,&one,&one,q->desc,minlwork,&lwork,minlrwork,&lrwork,&minliwork,&liwork,ifail,iclustr,gap,&info));
     PetscCheckScaLapackInfo("sygvx",info);
-    ierr = PetscBLASIntCast(minlwork[0],&lwork);CHKERRQ(ierr);
-    ierr = PetscBLASIntCast(minlrwork[0],&lrwork);CHKERRQ(ierr);
+    ierr = PetscBLASIntCast((PetscInt)PetscRealPart(minlwork[0]),&lwork);CHKERRQ(ierr);
+    ierr = PetscBLASIntCast((PetscInt)minlrwork[0],&lrwork);CHKERRQ(ierr);
     lrwork += a->N*a->N;
     liwork = minliwork;
     /* call computational routine */
@@ -116,7 +116,7 @@
     /* allocate workspace */
     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,minlwork,&lwork,&info));
     PetscCheckScaLapackInfo("syev",info);
-    ierr = PetscBLASIntCast(minlwork[0],&lwork);CHKERRQ(ierr);
+    ierr = PetscBLASIntCast((PetscInt)minlwork[0],&lwork);CHKERRQ(ierr);
     ierr = PetscMalloc1(lwork,&work);CHKERRQ(ierr);
     /* call computational routine */
     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,work,&lwork,&info));
@@ -126,8 +126,8 @@
     /* allocate workspace */
     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,minlwork,&lwork,minlrwork,&lrwork,&info));
     PetscCheckScaLapackInfo("syev",info);
-    ierr = PetscBLASIntCast(minlwork[0],&lwork);CHKERRQ(ierr);
-    lrwork = 4*a->N;  /* ierr = PetscBLASIntCast(minlrwork[0],&lrwork);CHKERRQ(ierr); */
+    ierr = PetscBLASIntCast((PetscInt)PetscRealPart(minlwork[0]),&lwork);CHKERRQ(ierr);
+    lrwork = 4*a->N;  /* ierr = PetscBLASIntCast((PetscInt)minlrwork[0],&lrwork);CHKERRQ(ierr); */
     ierr = PetscMalloc2(lwork,&work,lrwork,&rwork);CHKERRQ(ierr);
     /* call computational routine */
     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,work,&lwork,rwork,&lrwork,&info));
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/scalapack.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/scalapack.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/scalapack/scalapack.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/scalapack/scalapack.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -95,7 +95,7 @@
  86: #if !defined(PETSC_USE_COMPLEX)
  87:     /* allocate workspace */
  88:     PetscStackCallBLAS("SCALAPACKsygvx",SCALAPACKsygvx_(&one,"V","A","L",&a->N,a->loc,&one,&one,a->desc,b->loc,&one,&one,b->desc,&rdummy,&rdummy,&idummy,&idummy,&abstol,&m,&idummy,w,&orfac,q->loc,&one,&one,q->desc,minlwork,&lwork,&minliwork,&liwork,ifail,iclustr,gap,&info));
- 90:     PetscBLASIntCast(minlwork[0],&lwork);
+ 90:     PetscBLASIntCast((PetscInt)minlwork[0],&lwork);
  91:     liwork = minliwork;
  92:     /* call computational routine */
  93:     PetscMalloc2(lwork,&work,liwork,&iwork);
@@ -104,8 +104,8 @@
  97: #else
  98:     /* allocate workspace */
  99:     PetscStackCallBLAS("SCALAPACKsygvx",SCALAPACKsygvx_(&one,"V","A","L",&a->N,a->loc,&one,&one,a->desc,b->loc,&one,&one,b->desc,&rdummy,&rdummy,&idummy,&idummy,&abstol,&m,&idummy,w,&orfac,q->loc,&one,&one,q->desc,minlwork,&lwork,minlrwork,&lrwork,&minliwork,&liwork,ifail,iclustr,gap,&info));
-101:     PetscBLASIntCast(minlwork[0],&lwork);
-102:     PetscBLASIntCast(minlrwork[0],&lrwork);
+101:     PetscBLASIntCast((PetscInt)PetscRealPart(minlwork[0]),&lwork);
+102:     PetscBLASIntCast((PetscInt)minlrwork[0],&lrwork);
 103:     lrwork += a->N*a->N;
 104:     liwork = minliwork;
 105:     /* call computational routine */
@@ -120,7 +120,7 @@
 115: #if !defined(PETSC_USE_COMPLEX)
 116:     /* allocate workspace */
 117:     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,minlwork,&lwork,&info));
-119:     PetscBLASIntCast(minlwork[0],&lwork);
+119:     PetscBLASIntCast((PetscInt)minlwork[0],&lwork);
 120:     PetscMalloc1(lwork,&work);
 121:     /* call computational routine */
 122:     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,work,&lwork,&info));
@@ -128,8 +128,8 @@
 125: #else
 126:     /* allocate workspace */
 127:     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,minlwork,&lwork,minlrwork,&lrwork,&info));
-129:     PetscBLASIntCast(minlwork[0],&lwork);
-130:     lrwork = 4*a->N;  /* PetscBLASIntCast(minlrwork[0],&lrwork); */
+129:     PetscBLASIntCast((PetscInt)PetscRealPart(minlwork[0]),&lwork);
+130:     lrwork = 4*a->N;  /* PetscBLASIntCast((PetscInt)minlrwork[0],&lrwork); */
 131:     PetscMalloc2(lwork,&work,lrwork,&rwork);
 132:     /* call computational routine */
 133:     PetscStackCallBLAS("SCALAPACKsyev",SCALAPACKsyev_("V","L",&a->N,a->loc,&one,&one,a->desc,w,q->loc,&one,&one,q->desc,work,&lwork,rwork,&lrwork,&info));
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/index.html slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/trlan.c.html slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/trlan.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/trlan.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/trlan.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/trlan.h.html slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/trlan.h.html
--- slepc-3.14.1+dfsg1/src/eps/impls/external/trlan/trlan.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/external/trlan/trlan.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/index.html slepc-3.14.2+dfsg1/src/eps/impls/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html --- slepc-3.14.1+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/arnoldi/arnoldi.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/arnoldi/index.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/arnoldi/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/arnoldi/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/arnoldi/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/arnoldi/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/epskrylov.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/epskrylov.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/epskrylov.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/epskrylov.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/index.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/index.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/index.html --- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html --- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/krylovschur.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-indef.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-slice.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-symm.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-twosided.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-twosided.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/ks-twosided.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/ks-twosided.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/krylovschur/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/lanczos/index.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/lanczos/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/lanczos/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/lanczos/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html --- slepc-3.14.1+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/lanczos/lanczos.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/lanczos/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/lanczos/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/lanczos/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/lanczos/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/krylov/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/krylov/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/krylov/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/krylov/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/lapack/index.html slepc-3.14.2+dfsg1/src/eps/impls/lapack/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/lapack/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/lapack/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/lapack/lapack.c.html slepc-3.14.2+dfsg1/src/eps/impls/lapack/lapack.c.html --- slepc-3.14.1+dfsg1/src/eps/impls/lapack/lapack.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/lapack/lapack.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/lapack/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/lapack/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/lapack/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/lapack/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/lyapii/index.html slepc-3.14.2+dfsg1/src/eps/impls/lyapii/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/lyapii/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/lyapii/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/lyapii/lyapii.c.html slepc-3.14.2+dfsg1/src/eps/impls/lyapii/lyapii.c.html --- slepc-3.14.1+dfsg1/src/eps/impls/lyapii/lyapii.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/lyapii/lyapii.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/lyapii/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/lyapii/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/lyapii/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/lyapii/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/power/index.html slepc-3.14.2+dfsg1/src/eps/impls/power/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/power/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/power/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/power/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/power/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/power/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/power/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/power/power.c.html slepc-3.14.2+dfsg1/src/eps/impls/power/power.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/power/power.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/power/power.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/subspace/index.html slepc-3.14.2+dfsg1/src/eps/impls/subspace/index.html
--- slepc-3.14.1+dfsg1/src/eps/impls/subspace/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/subspace/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/subspace/makefile.html slepc-3.14.2+dfsg1/src/eps/impls/subspace/makefile.html --- slepc-3.14.1+dfsg1/src/eps/impls/subspace/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/impls/subspace/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/impls/subspace/subspace.c.html slepc-3.14.2+dfsg1/src/eps/impls/subspace/subspace.c.html
--- slepc-3.14.1+dfsg1/src/eps/impls/subspace/subspace.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/impls/subspace/subspace.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/index.html slepc-3.14.2+dfsg1/src/eps/index.html
--- slepc-3.14.1+dfsg1/src/eps/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/dlregiseps.c.html slepc-3.14.2+dfsg1/src/eps/interface/dlregiseps.c.html --- slepc-3.14.1+dfsg1/src/eps/interface/dlregiseps.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/interface/dlregiseps.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epsbasic.c.html slepc-3.14.2+dfsg1/src/eps/interface/epsbasic.c.html
--- slepc-3.14.1+dfsg1/src/eps/interface/epsbasic.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epsbasic.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epsdefault.c.html slepc-3.14.2+dfsg1/src/eps/interface/epsdefault.c.html
--- slepc-3.14.1+dfsg1/src/eps/interface/epsdefault.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epsdefault.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epsmon.c.html slepc-3.14.2+dfsg1/src/eps/interface/epsmon.c.html
--- slepc-3.14.1+dfsg1/src/eps/interface/epsmon.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epsmon.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epsopts.c.html slepc-3.14.2+dfsg1/src/eps/interface/epsopts.c.html
--- slepc-3.14.1+dfsg1/src/eps/interface/epsopts.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epsopts.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epsregis.c.html slepc-3.14.2+dfsg1/src/eps/interface/epsregis.c.html
--- slepc-3.14.1+dfsg1/src/eps/interface/epsregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epsregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epssetup.c slepc-3.14.2+dfsg1/src/eps/interface/epssetup.c
--- slepc-3.14.1+dfsg1/src/eps/interface/epssetup.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epssetup.c	2021-02-01 14:43:03.000000000 +0000
@@ -393,8 +393,8 @@
    Notes:
    To specify a standard eigenproblem, use NULL for parameter B.
 
-   It must be called before EPSSetUp(). If it is called again after EPSSetUp() then
-   the EPS object is reset.
+   It must be called before EPSSetUp(). If it is called again after EPSSetUp() and
+   the matrix sizes have changed then the EPS object is reset.
 
    Level: beginner
 
@@ -403,7 +403,7 @@
 PetscErrorCode EPSSetOperators(EPS eps,Mat A,Mat B)
 {
   PetscErrorCode ierr;
-  PetscInt       m,n,m0,nmat;
+  PetscInt       m,n,m0,mloc,nloc,mloc0,nmat;
   Mat            mat[2];
 
   PetscFunctionBegin;
@@ -413,15 +413,20 @@
   PetscCheckSameComm(eps,1,A,2);
   if (B) PetscCheckSameComm(eps,1,B,3);
 
-  /* Check for square matrices */
+  /* Check matrix sizes */
   ierr = MatGetSize(A,&m,&n);CHKERRQ(ierr);
-  if (m!=n) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"A is a non-square matrix");
+  ierr = MatGetLocalSize(A,&mloc,&nloc);CHKERRQ(ierr);
+  if (m!=n) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"A is a non-square matrix (%D rows, %D cols)",m,n);
+  if (mloc!=nloc) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"A does not have equal row and column sizes (%D, %D)",mloc,nloc);
   if (B) {
     ierr = MatGetSize(B,&m0,&n);CHKERRQ(ierr);
-    if (m0!=n) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"B is a non-square matrix");
-    if (m!=m0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_INCOMP,"Dimensions of A and B do not match");
+    ierr = MatGetLocalSize(B,&mloc0,&nloc);CHKERRQ(ierr);
+    if (m0!=n) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"B is a non-square matrix (%D rows, %D cols)",m0,n);
+    if (mloc0!=nloc) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"B does not have equal row and column local sizes (%D, %D)",mloc0,nloc);
+    if (m!=m0) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_INCOMP,"Dimensions of A and B do not match (%D, %D)",m,m0);
+    if (mloc!=mloc0) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_INCOMP,"Local dimensions of A and B do not match (%D, %D)",mloc,mloc0);
   }
-  if (eps->state && n!=eps->n) { ierr = EPSReset(eps);CHKERRQ(ierr); }
+  if (eps->state && (n!=eps->n || nloc!=eps->nloc)) { ierr = EPSReset(eps);CHKERRQ(ierr); }
   eps->nrma = 0.0;
   eps->nrmb = 0.0;
   if (!eps->st) { ierr = EPSGetST(eps,&eps->st);CHKERRQ(ierr); }
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epssetup.c.html slepc-3.14.2+dfsg1/src/eps/interface/epssetup.c.html
--- slepc-3.14.1+dfsg1/src/eps/interface/epssetup.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epssetup.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -390,8 +390,8 @@
 393:    Notes:
 394:    To specify a standard eigenproblem, use NULL for parameter B.
 
-396:    It must be called before EPSSetUp(). If it is called again after EPSSetUp() then
-397:    the EPS object is reset.
+396:    It must be called before EPSSetUp(). If it is called again after EPSSetUp() and
+397:    the matrix sizes have changed then the EPS object is reset.
 
 399:    Level: beginner
 
@@ -399,269 +399,274 @@
 402: @*/
 403: PetscErrorCode EPSSetOperators(EPS eps,Mat A,Mat B)
 404: {
-406:   PetscInt       m,n,m0,nmat;
+406:   PetscInt       m,n,m0,mloc,nloc,mloc0,nmat;
 407:   Mat            mat[2];
 
 
-416:   /* Check for square matrices */
+416:   /* Check matrix sizes */
 417:   MatGetSize(A,&m,&n);
-418:   if (m!=n) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"A is a non-square matrix");
-419:   if (B) {
-420:     MatGetSize(B,&m0,&n);
-421:     if (m0!=n) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"B is a non-square matrix");
-422:     if (m!=m0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_INCOMP,"Dimensions of A and B do not match");
-423:   }
-424:   if (eps->state && n!=eps->n) { EPSReset(eps); }
-425:   eps->nrma = 0.0;
-426:   eps->nrmb = 0.0;
-427:   if (!eps->st) { EPSGetST(eps,&eps->st); }
-428:   mat[0] = A;
-429:   if (B) {
-430:     mat[1] = B;
-431:     nmat = 2;
-432:   } else nmat = 1;
-433:   STSetMatrices(eps->st,nmat,mat);
-434:   eps->state = EPS_STATE_INITIAL;
-435:   return(0);
-436: }
-
-438: /*@
-439:    EPSGetOperators - Gets the matrices associated with the eigensystem.
-
-441:    Collective on eps
-
-443:    Input Parameter:
-444: .  eps - the EPS context
-
-446:    Output Parameters:
-447: +  A  - the matrix associated with the eigensystem
-448: -  B  - the second matrix in the case of generalized eigenproblems
-
-450:    Level: intermediate
-
-452: .seealso: EPSSolve(), EPSGetST(), STGetMatrix(), STSetMatrices()
-453: @*/
-454: PetscErrorCode EPSGetOperators(EPS eps,Mat *A,Mat *B)
-455: {
-457:   ST             st;
-458:   PetscInt       k;
-
-462:   EPSGetST(eps,&st);
-463:   if (A) { STGetMatrix(st,0,A); }
-464:   if (B) {
-465:     STGetNumMatrices(st,&k);
-466:     if (k==1) B = NULL;
-467:     else {
-468:       STGetMatrix(st,1,B);
-469:     }
-470:   }
-471:   return(0);
-472: }
-
-474: /*@C
-475:    EPSSetDeflationSpace - Specify a basis of vectors that constitute the deflation
-476:    space.
-
-478:    Collective on eps
-
-480:    Input Parameter:
-481: +  eps - the eigenproblem solver context
-482: .  n   - number of vectors
-483: -  v   - set of basis vectors of the deflation space
-
-485:    Notes:
-486:    When a deflation space is given, the eigensolver seeks the eigensolution
-487:    in the restriction of the problem to the orthogonal complement of this
-488:    space. This can be used for instance in the case that an invariant
-489:    subspace is known beforehand (such as the nullspace of the matrix).
-
-491:    These vectors do not persist from one EPSSolve() call to the other, so the
-492:    deflation space should be set every time.
-
-494:    The vectors do not need to be mutually orthonormal, since they are explicitly
-495:    orthonormalized internally.
-
-497:    Level: intermediate
-
-499: .seealso: EPSSetInitialSpace()
-500: @*/
-501: PetscErrorCode EPSSetDeflationSpace(EPS eps,PetscInt n,Vec v[])
-502: {
-
-508:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_OUTOFRANGE,"Argument n out of range");
-509:   if (n>0) {
-512:   }
-513:   SlepcBasisReference_Private(n,v,&eps->nds,&eps->defl);
-514:   if (n>0) eps->state = EPS_STATE_INITIAL;
-515:   return(0);
-516: }
-
-518: /*@C
-519:    EPSSetInitialSpace - Specify a basis of vectors that constitute the initial
-520:    space, that is, the subspace from which the solver starts to iterate.
-
-522:    Collective on eps
-
-524:    Input Parameter:
-525: +  eps - the eigenproblem solver context
-526: .  n   - number of vectors
-527: -  is  - set of basis vectors of the initial space
-
-529:    Notes:
-530:    Some solvers start to iterate on a single vector (initial vector). In that case,
-531:    the other vectors are ignored.
-
-533:    These vectors do not persist from one EPSSolve() call to the other, so the
-534:    initial space should be set every time.
-
-536:    The vectors do not need to be mutually orthonormal, since they are explicitly
-537:    orthonormalized internally.
-
-539:    Common usage of this function is when the user can provide a rough approximation
-540:    of the wanted eigenspace. Then, convergence may be faster.
-
-542:    Level: intermediate
-
-544: .seealso: EPSSetLeftInitialSpace(), EPSSetDeflationSpace()
-545: @*/
-546: PetscErrorCode EPSSetInitialSpace(EPS eps,PetscInt n,Vec is[])
-547: {
-
-553:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_OUTOFRANGE,"Argument n cannot be negative");
-554:   if (n>0) {
-557:   }
-558:   SlepcBasisReference_Private(n,is,&eps->nini,&eps->IS);
-559:   if (n>0) eps->state = EPS_STATE_INITIAL;
-560:   return(0);
-561: }
-
-563: /*@C
-564:    EPSSetLeftInitialSpace - Specify a basis of vectors that constitute the left
-565:    initial space, used by two-sided solvers to start the left subspace.
-
-567:    Collective on eps
-
-569:    Input Parameter:
-570: +  eps - the eigenproblem solver context
-571: .  n   - number of vectors
-572: -  isl - set of basis vectors of the left initial space
-
-574:    Notes:
-575:    Left initial vectors are used to initiate the left search space in two-sided
-576:    eigensolvers. Users should pass here an approximation of the left eigenspace,
-577:    if available.
-
-579:    The same comments in EPSSetInitialSpace() are applicable here.
-
-581:    Level: intermediate
-
-583: .seealso: EPSSetInitialSpace(), EPSSetTwoSided()
-584: @*/
-585: PetscErrorCode EPSSetLeftInitialSpace(EPS eps,PetscInt n,Vec isl[])
-586: {
-
-592:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_OUTOFRANGE,"Argument n cannot be negative");
-593:   if (n>0) {
-596:   }
-597:   SlepcBasisReference_Private(n,isl,&eps->ninil,&eps->ISL);
-598:   if (n>0) eps->state = EPS_STATE_INITIAL;
-599:   return(0);
-600: }
-
-602: /*
-603:   EPSSetDimensions_Default - Set reasonable values for ncv, mpd if not set
-604:   by the user. This is called at setup.
-605:  */
-606: PetscErrorCode EPSSetDimensions_Default(EPS eps,PetscInt nev,PetscInt *ncv,PetscInt *mpd)
-607: {
-609:   PetscBool      krylov;
-
-612:   if (*ncv!=PETSC_DEFAULT) { /* ncv set */
-613:     PetscObjectTypeCompareAny((PetscObject)eps,&krylov,EPSKRYLOVSCHUR,EPSARNOLDI,EPSLANCZOS,"");
-614:     if (krylov) {
-615:       if (*ncv<nev+1 && !(*ncv==nev && *ncv==eps->n)) SETERRQ(PetscObjectComm((PetscObject)eps),1,"The value of ncv must be at least nev+1");
-616:     } else {
-617:       if (*ncv<nev) SETERRQ(PetscObjectComm((PetscObject)eps),1,"The value of ncv must be at least nev");
-618:     }
-619:   } else if (*mpd!=PETSC_DEFAULT) { /* mpd set */
-620:     *ncv = PetscMin(eps->n,nev+(*mpd));
-621:   } else { /* neither set: defaults depend on nev being small or large */
-622:     if (nev<500) *ncv = PetscMin(eps->n,PetscMax(2*nev,nev+15));
-623:     else {
-624:       *mpd = 500;
-625:       *ncv = PetscMin(eps->n,nev+(*mpd));
-626:     }
-627:   }
-628:   if (*mpd==PETSC_DEFAULT) *mpd = *ncv;
-629:   return(0);
-630: }
-
-632: /*@
-633:    EPSAllocateSolution - Allocate memory storage for common variables such
-634:    as eigenvalues and eigenvectors.
-
-636:    Collective on eps
-
-638:    Input Parameters:
-639: +  eps   - eigensolver context
-640: -  extra - number of additional positions, used for methods that require a
-641:            working basis slightly larger than ncv
-
-643:    Developers Note:
-644:    This is SLEPC_EXTERN because it may be required by user plugin EPS
-645:    implementations.
-
-647:    Level: developer
-648: @*/
-649: PetscErrorCode EPSAllocateSolution(EPS eps,PetscInt extra)
-650: {
-652:   PetscInt       oldsize,newc,requested;
-653:   PetscLogDouble cnt;
-654:   Vec            t;
-
-657:   requested = eps->ncv + extra;
-
-659:   /* oldsize is zero if this is the first time setup is called */
-660:   BVGetSizes(eps->V,NULL,NULL,&oldsize);
-661:   newc = PetscMax(0,requested-oldsize);
-
-663:   /* allocate space for eigenvalues and friends */
-664:   if (requested != oldsize || !eps->eigr) {
-665:     PetscFree4(eps->eigr,eps->eigi,eps->errest,eps->perm);
-666:     PetscMalloc4(requested,&eps->eigr,requested,&eps->eigi,requested,&eps->errest,requested,&eps->perm);
-667:     cnt = 2*newc*sizeof(PetscScalar) + 2*newc*sizeof(PetscReal) + newc*sizeof(PetscInt);
-668:     PetscLogObjectMemory((PetscObject)eps,cnt);
-669:   }
-
-671:   /* workspace for the case of arbitrary selection */
-672:   if (eps->arbitrary) {
-673:     if (eps->rr) {
-674:       PetscFree2(eps->rr,eps->ri);
-675:     }
-676:     PetscMalloc2(requested,&eps->rr,requested,&eps->ri);
-677:     PetscLogObjectMemory((PetscObject)eps,2*newc*sizeof(PetscScalar));
-678:   }
-
-680:   /* allocate V */
-681:   if (!eps->V) { EPSGetBV(eps,&eps->V); }
-682:   if (!oldsize) {
-683:     if (!((PetscObject)(eps->V))->type_name) {
-684:       BVSetType(eps->V,BVSVEC);
-685:     }
-686:     STMatCreateVecsEmpty(eps->st,&t,NULL);
-687:     BVSetSizesFromVec(eps->V,t,requested);
-688:     VecDestroy(&t);
-689:   } else {
-690:     BVResize(eps->V,requested,PETSC_FALSE);
-691:   }
-
-693:   /* allocate W */
-694:   if (eps->twosided) {
-695:     BVDestroy(&eps->W);
-696:     BVDuplicate(eps->V,&eps->W);
-697:   }
-698:   return(0);
-699: }
+418:   MatGetLocalSize(A,&mloc,&nloc);
+419:   if (m!=n) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"A is a non-square matrix (%D rows, %D cols)",m,n);
+420:   if (mloc!=nloc) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"A does not have equal row and column sizes (%D, %D)",mloc,nloc);
+421:   if (B) {
+422:     MatGetSize(B,&m0,&n);
+423:     MatGetLocalSize(B,&mloc0,&nloc);
+424:     if (m0!=n) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"B is a non-square matrix (%D rows, %D cols)",m0,n);
+425:     if (mloc0!=nloc) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_WRONG,"B does not have equal row and column local sizes (%D, %D)",mloc0,nloc);
+426:     if (m!=m0) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_INCOMP,"Dimensions of A and B do not match (%D, %D)",m,m0);
+427:     if (mloc!=mloc0) SETERRQ2(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_INCOMP,"Local dimensions of A and B do not match (%D, %D)",mloc,mloc0);
+428:   }
+429:   if (eps->state && (n!=eps->n || nloc!=eps->nloc)) { EPSReset(eps); }
+430:   eps->nrma = 0.0;
+431:   eps->nrmb = 0.0;
+432:   if (!eps->st) { EPSGetST(eps,&eps->st); }
+433:   mat[0] = A;
+434:   if (B) {
+435:     mat[1] = B;
+436:     nmat = 2;
+437:   } else nmat = 1;
+438:   STSetMatrices(eps->st,nmat,mat);
+439:   eps->state = EPS_STATE_INITIAL;
+440:   return(0);
+441: }
+
+443: /*@
+444:    EPSGetOperators - Gets the matrices associated with the eigensystem.
+
+446:    Collective on eps
+
+448:    Input Parameter:
+449: .  eps - the EPS context
+
+451:    Output Parameters:
+452: +  A  - the matrix associated with the eigensystem
+453: -  B  - the second matrix in the case of generalized eigenproblems
+
+455:    Level: intermediate
+
+457: .seealso: EPSSolve(), EPSGetST(), STGetMatrix(), STSetMatrices()
+458: @*/
+459: PetscErrorCode EPSGetOperators(EPS eps,Mat *A,Mat *B)
+460: {
+462:   ST             st;
+463:   PetscInt       k;
+
+467:   EPSGetST(eps,&st);
+468:   if (A) { STGetMatrix(st,0,A); }
+469:   if (B) {
+470:     STGetNumMatrices(st,&k);
+471:     if (k==1) B = NULL;
+472:     else {
+473:       STGetMatrix(st,1,B);
+474:     }
+475:   }
+476:   return(0);
+477: }
+
+479: /*@C
+480:    EPSSetDeflationSpace - Specify a basis of vectors that constitute the deflation
+481:    space.
+
+483:    Collective on eps
+
+485:    Input Parameter:
+486: +  eps - the eigenproblem solver context
+487: .  n   - number of vectors
+488: -  v   - set of basis vectors of the deflation space
+
+490:    Notes:
+491:    When a deflation space is given, the eigensolver seeks the eigensolution
+492:    in the restriction of the problem to the orthogonal complement of this
+493:    space. This can be used for instance in the case that an invariant
+494:    subspace is known beforehand (such as the nullspace of the matrix).
+
+496:    These vectors do not persist from one EPSSolve() call to the other, so the
+497:    deflation space should be set every time.
+
+499:    The vectors do not need to be mutually orthonormal, since they are explicitly
+500:    orthonormalized internally.
+
+502:    Level: intermediate
+
+504: .seealso: EPSSetInitialSpace()
+505: @*/
+506: PetscErrorCode EPSSetDeflationSpace(EPS eps,PetscInt n,Vec v[])
+507: {
+
+513:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_OUTOFRANGE,"Argument n out of range");
+514:   if (n>0) {
+517:   }
+518:   SlepcBasisReference_Private(n,v,&eps->nds,&eps->defl);
+519:   if (n>0) eps->state = EPS_STATE_INITIAL;
+520:   return(0);
+521: }
+
+523: /*@C
+524:    EPSSetInitialSpace - Specify a basis of vectors that constitute the initial
+525:    space, that is, the subspace from which the solver starts to iterate.
+
+527:    Collective on eps
+
+529:    Input Parameter:
+530: +  eps - the eigenproblem solver context
+531: .  n   - number of vectors
+532: -  is  - set of basis vectors of the initial space
+
+534:    Notes:
+535:    Some solvers start to iterate on a single vector (initial vector). In that case,
+536:    the other vectors are ignored.
+
+538:    These vectors do not persist from one EPSSolve() call to the other, so the
+539:    initial space should be set every time.
+
+541:    The vectors do not need to be mutually orthonormal, since they are explicitly
+542:    orthonormalized internally.
+
+544:    Common usage of this function is when the user can provide a rough approximation
+545:    of the wanted eigenspace. Then, convergence may be faster.
+
+547:    Level: intermediate
+
+549: .seealso: EPSSetLeftInitialSpace(), EPSSetDeflationSpace()
+550: @*/
+551: PetscErrorCode EPSSetInitialSpace(EPS eps,PetscInt n,Vec is[])
+552: {
+
+558:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_OUTOFRANGE,"Argument n cannot be negative");
+559:   if (n>0) {
+562:   }
+563:   SlepcBasisReference_Private(n,is,&eps->nini,&eps->IS);
+564:   if (n>0) eps->state = EPS_STATE_INITIAL;
+565:   return(0);
+566: }
+
+568: /*@C
+569:    EPSSetLeftInitialSpace - Specify a basis of vectors that constitute the left
+570:    initial space, used by two-sided solvers to start the left subspace.
+
+572:    Collective on eps
+
+574:    Input Parameter:
+575: +  eps - the eigenproblem solver context
+576: .  n   - number of vectors
+577: -  isl - set of basis vectors of the left initial space
+
+579:    Notes:
+580:    Left initial vectors are used to initiate the left search space in two-sided
+581:    eigensolvers. Users should pass here an approximation of the left eigenspace,
+582:    if available.
+
+584:    The same comments in EPSSetInitialSpace() are applicable here.
+
+586:    Level: intermediate
+
+588: .seealso: EPSSetInitialSpace(), EPSSetTwoSided()
+589: @*/
+590: PetscErrorCode EPSSetLeftInitialSpace(EPS eps,PetscInt n,Vec isl[])
+591: {
+
+597:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_ARG_OUTOFRANGE,"Argument n cannot be negative");
+598:   if (n>0) {
+601:   }
+602:   SlepcBasisReference_Private(n,isl,&eps->ninil,&eps->ISL);
+603:   if (n>0) eps->state = EPS_STATE_INITIAL;
+604:   return(0);
+605: }
+
+607: /*
+608:   EPSSetDimensions_Default - Set reasonable values for ncv, mpd if not set
+609:   by the user. This is called at setup.
+610:  */
+611: PetscErrorCode EPSSetDimensions_Default(EPS eps,PetscInt nev,PetscInt *ncv,PetscInt *mpd)
+612: {
+614:   PetscBool      krylov;
+
+617:   if (*ncv!=PETSC_DEFAULT) { /* ncv set */
+618:     PetscObjectTypeCompareAny((PetscObject)eps,&krylov,EPSKRYLOVSCHUR,EPSARNOLDI,EPSLANCZOS,"");
+619:     if (krylov) {
+620:       if (*ncv<nev+1 && !(*ncv==nev && *ncv==eps->n)) SETERRQ(PetscObjectComm((PetscObject)eps),1,"The value of ncv must be at least nev+1");
+621:     } else {
+622:       if (*ncv<nev) SETERRQ(PetscObjectComm((PetscObject)eps),1,"The value of ncv must be at least nev");
+623:     }
+624:   } else if (*mpd!=PETSC_DEFAULT) { /* mpd set */
+625:     *ncv = PetscMin(eps->n,nev+(*mpd));
+626:   } else { /* neither set: defaults depend on nev being small or large */
+627:     if (nev<500) *ncv = PetscMin(eps->n,PetscMax(2*nev,nev+15));
+628:     else {
+629:       *mpd = 500;
+630:       *ncv = PetscMin(eps->n,nev+(*mpd));
+631:     }
+632:   }
+633:   if (*mpd==PETSC_DEFAULT) *mpd = *ncv;
+634:   return(0);
+635: }
+
+637: /*@
+638:    EPSAllocateSolution - Allocate memory storage for common variables such
+639:    as eigenvalues and eigenvectors.
+
+641:    Collective on eps
+
+643:    Input Parameters:
+644: +  eps   - eigensolver context
+645: -  extra - number of additional positions, used for methods that require a
+646:            working basis slightly larger than ncv
+
+648:    Developers Note:
+649:    This is SLEPC_EXTERN because it may be required by user plugin EPS
+650:    implementations.
+
+652:    Level: developer
+653: @*/
+654: PetscErrorCode EPSAllocateSolution(EPS eps,PetscInt extra)
+655: {
+657:   PetscInt       oldsize,newc,requested;
+658:   PetscLogDouble cnt;
+659:   Vec            t;
+
+662:   requested = eps->ncv + extra;
+
+664:   /* oldsize is zero if this is the first time setup is called */
+665:   BVGetSizes(eps->V,NULL,NULL,&oldsize);
+666:   newc = PetscMax(0,requested-oldsize);
+
+668:   /* allocate space for eigenvalues and friends */
+669:   if (requested != oldsize || !eps->eigr) {
+670:     PetscFree4(eps->eigr,eps->eigi,eps->errest,eps->perm);
+671:     PetscMalloc4(requested,&eps->eigr,requested,&eps->eigi,requested,&eps->errest,requested,&eps->perm);
+672:     cnt = 2*newc*sizeof(PetscScalar) + 2*newc*sizeof(PetscReal) + newc*sizeof(PetscInt);
+673:     PetscLogObjectMemory((PetscObject)eps,cnt);
+674:   }
+
+676:   /* workspace for the case of arbitrary selection */
+677:   if (eps->arbitrary) {
+678:     if (eps->rr) {
+679:       PetscFree2(eps->rr,eps->ri);
+680:     }
+681:     PetscMalloc2(requested,&eps->rr,requested,&eps->ri);
+682:     PetscLogObjectMemory((PetscObject)eps,2*newc*sizeof(PetscScalar));
+683:   }
+
+685:   /* allocate V */
+686:   if (!eps->V) { EPSGetBV(eps,&eps->V); }
+687:   if (!oldsize) {
+688:     if (!((PetscObject)(eps->V))->type_name) {
+689:       BVSetType(eps->V,BVSVEC);
+690:     }
+691:     STMatCreateVecsEmpty(eps->st,&t,NULL);
+692:     BVSetSizesFromVec(eps->V,t,requested);
+693:     VecDestroy(&t);
+694:   } else {
+695:     BVResize(eps->V,requested,PETSC_FALSE);
+696:   }
+
+698:   /* allocate W */
+699:   if (eps->twosided) {
+700:     BVDestroy(&eps->W);
+701:     BVDuplicate(eps->V,&eps->W);
+702:   }
+703:   return(0);
+704: }
 
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epssolve.c.html slepc-3.14.2+dfsg1/src/eps/interface/epssolve.c.html --- slepc-3.14.1+dfsg1/src/eps/interface/epssolve.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/interface/epssolve.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/epsview.c.html slepc-3.14.2+dfsg1/src/eps/interface/epsview.c.html
--- slepc-3.14.1+dfsg1/src/eps/interface/epsview.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/epsview.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/index.html slepc-3.14.2+dfsg1/src/eps/interface/index.html
--- slepc-3.14.1+dfsg1/src/eps/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/interface/makefile.html slepc-3.14.2+dfsg1/src/eps/interface/makefile.html --- slepc-3.14.1+dfsg1/src/eps/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/makefile.html slepc-3.14.2+dfsg1/src/eps/makefile.html
--- slepc-3.14.1+dfsg1/src/eps/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/index.html slepc-3.14.2+dfsg1/src/eps/tests/index.html
--- slepc-3.14.1+dfsg1/src/eps/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

@@ -55,3 +55,4 @@ test36.c: Tests a HEP problem with Hermitian matrix
test37.c: Tests solving an eigenproblem defined with MatNest
test38.c: Test EPSLYAPII interface functions
+test39.c: Tests multiple calls to EPSSolve with matrices of different local size
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/makefile slepc-3.14.2+dfsg1/src/eps/tests/makefile --- slepc-3.14.1+dfsg1/src/eps/tests/makefile 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/makefile 2021-02-01 14:43:03.000000000 +0000 @@ -18,14 +18,14 @@ test14.c test16.c test17.c test18.c test19.c test20.c \ test21.c test22.c test23.c test24.c test25.c test26.c test27.c \ test28.c test29.c test30.c test31.c test32.c test33.c test34.c \ - test35.c test36.c test37.c test38.c + test35.c test36.c test37.c test38.c test39.c EXAMPLESF = test7f.F test14f.F test15f.F test17f.F90 MANSEC = EPS TESTS = test1 test2 test3 test4 test5 test6 test7f test8 test9 test10 \ test11 test12 test13 test14 test14f test15f test16 test17 test17f \ test18 test19 test20 test21 test22 test23 test24 test25 test26 test27 \ test28 test29 test30 test31 test32 test33 test34 test35 test36 test37 \ - test38 + test38 test39 include ${SLEPC_DIR}/lib/slepc/conf/slepc_common @@ -47,7 +47,7 @@ ${RM} $${test}.tmp; \ ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test5.rm ; \ else fail=1; fi; \ - exit $$fail + exit $${fail} testtest7f: test7f.PETSc @fail=0; if [ "${PETSC_WITH_BATCH}" != "" ]; then \ @@ -67,7 +67,7 @@ ${RM} $${test}.tmp; \ ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test7f.rm ; \ else fail=1; fi; \ - exit $$fail + exit $${fail} testtest10: test10.PETSc @fail=0; if [ "${PETSC_WITH_BATCH}" != "" ]; then \ @@ -78,15 +78,15 @@ elif [ -f test10 ]; then \ test=test10_1; check=test10_1_ks; \ options="-eps_nev 4 -eps_ncv 14 -m 11 -eps_largest_magnitude"; \ - ${MPIEXEC} -n 1 ./test10 $$options > $${test}.tmp 2>&1; \ + ${MPIEXEC} -n 1 ./test10 $${options} > $${test}.tmp 2>&1; \ if (${DIFF} output/$${check}.out $${test}.tmp > /dev/null 2>&1) then \ echo "C/C++ example src/eps/tests/test10 run successfully with 1 MPI process"; \ else \ echo "Possible error running C/C++ src/eps/tests/test10 with 1 MPI process"; \ cat $${test}.tmp; fail=1; \ fi; \ - if [ "${MPIEXEC}" != "${PETSC_DIR}/lib/petsc/bin/petsc-mpiexec.uni" ]; then \ - ${MPIEXEC} -n 2 ./test10 $$options > $${test}.tmp 2>&1; \ + if [ $${fail} -eq 0 -a "${MPIEXEC}" != "${PETSC_DIR}/lib/petsc/bin/petsc-mpiexec.uni" ]; then \ + ${MPIEXEC} -n 2 ./test10 $${options} > $${test}.tmp 2>&1; \ if (${DIFF} output/$${check}.out $${test}.tmp > /dev/null 2>&1) then \ echo "C/C++ example src/eps/tests/test10 run successfully with 2 MPI process"; \ else \ @@ -97,7 +97,7 @@ ${RM} $${test}.tmp; \ ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test10.rm; \ else fail=1; fi; \ - exit $$fail + exit $${fail} testtest10_cuda: test10.PETSc @fail=0; if [ "${PETSC_WITH_BATCH}" != "" ]; then \ @@ -108,7 +108,7 @@ elif [ -f test10 ]; then \ test=test10_1; check=test10_1_ks; \ options="-eps_nev 4 -eps_ncv 14 -m 11 -eps_largest_magnitude -mat_type aijcusparse"; \ - ${MPIEXEC} -n 1 ./test10 $$options > $${test}.tmp 2>&1; \ + ${MPIEXEC} -n 1 ./test10 $${options} > $${test}.tmp 2>&1; \ if (${DIFF} output/$${check}.out $${test}.tmp > /dev/null 2>&1) then \ echo "C/C++ example src/eps/tests/test10 run successfully with CUDA"; \ else \ @@ -118,5 +118,5 @@ ${RM} $${test}.tmp; \ ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test10.rm; \ else fail=1; fi; \ - exit $$fail + exit $${fail} diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/makefile.html slepc-3.14.2+dfsg1/src/eps/tests/makefile.html --- slepc-3.14.1+dfsg1/src/eps/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
@@ -29,14 +29,14 @@
              test14.c test16.c test17.c test18.c test19.c test20.c \
              test21.c test22.c test23.c test24.c test25.c test26.c test27.c \
              test28.c test29.c test30.c test31.c test32.c test33.c test34.c \
-             test35.c test36.c test37.c test38.c
+             test35.c test36.c test37.c test38.c test39.c
 EXAMPLESF  = test7f.F test14f.F test15f.F test17f.F90
 MANSEC     = EPS
 TESTS      = test1 test2 test3 test4 test5 test6 test7f test8 test9 test10 \
              test11 test12 test13 test14 test14f test15f test16 test17 test17f \
              test18 test19 test20 test21 test22 test23 test24 test25 test26 test27 \
              test28 test29 test30 test31 test32 test33 test34 test35 test36 test37 \
-             test38
+             test38 test39
 
 include ${SLEPC_DIR}/lib/slepc/conf/slepc_common
 
@@ -58,7 +58,7 @@
 	  ${RM} $${test}.tmp; \
 	  ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test5.rm ; \
 	else fail=1; fi; \
-	exit $$fail
+	exit $${fail}
 
 testtest7f: test7f.PETSc
 	@fail=0; if [ "${PETSC_WITH_BATCH}" != "" ]; then \
@@ -78,7 +78,7 @@
 	  ${RM} $${test}.tmp; \
 	  ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test7f.rm ; \
 	else fail=1; fi; \
-	exit $$fail
+	exit $${fail}
 
 testtest10: test10.PETSc
 	@fail=0; if [ "${PETSC_WITH_BATCH}" != "" ]; then \
@@ -89,15 +89,15 @@
 	elif [ -f test10 ]; then \
 	  test=test10_1; check=test10_1_ks; \
 	  options="-eps_nev 4 -eps_ncv 14 -m 11 -eps_largest_magnitude"; \
-	  ${MPIEXEC} -n 1 ./test10 $$options > $${test}.tmp 2>&1; \
+	  ${MPIEXEC} -n 1 ./test10 $${options} > $${test}.tmp 2>&1; \
 	  if (${DIFF} output/$${check}.out $${test}.tmp > /dev/null 2>&1) then \
 	    echo "C/C++ example src/eps/tests/test10 run successfully with 1 MPI process"; \
 	  else \
 	    echo "Possible error running C/C++ src/eps/tests/test10 with 1 MPI process"; \
 	    cat $${test}.tmp; fail=1; \
 	  fi; \
-	  if [ "${MPIEXEC}" != "${PETSC_DIR}/lib/petsc/bin/petsc-mpiexec.uni" ]; then \
-	    ${MPIEXEC} -n 2 ./test10 $$options > $${test}.tmp 2>&1; \
+	  if [ $${fail} -eq 0 -a "${MPIEXEC}" != "${PETSC_DIR}/lib/petsc/bin/petsc-mpiexec.uni" ]; then \
+	    ${MPIEXEC} -n 2 ./test10 $${options} > $${test}.tmp 2>&1; \
 	    if (${DIFF} output/$${check}.out $${test}.tmp > /dev/null 2>&1) then \
 	      echo "C/C++ example src/eps/tests/test10 run successfully with 2 MPI process"; \
 	    else \
@@ -108,7 +108,7 @@
 	  ${RM} $${test}.tmp; \
 	  ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test10.rm; \
 	else fail=1; fi; \
-	exit $$fail
+	exit $${fail}
 
 testtest10_cuda: test10.PETSc
 	@fail=0; if [ "${PETSC_WITH_BATCH}" != "" ]; then \
@@ -119,7 +119,7 @@
 	elif [ -f test10 ]; then \
 	  test=test10_1; check=test10_1_ks; \
 	  options="-eps_nev 4 -eps_ncv 14 -m 11 -eps_largest_magnitude -mat_type aijcusparse"; \
-	  ${MPIEXEC} -n 1 ./test10 $$options > $${test}.tmp 2>&1; \
+	  ${MPIEXEC} -n 1 ./test10 $${options} > $${test}.tmp 2>&1; \
 	  if (${DIFF} output/$${check}.out $${test}.tmp > /dev/null 2>&1) then \
 	    echo "C/C++ example src/eps/tests/test10 run successfully with CUDA"; \
 	  else \
@@ -129,7 +129,7 @@
 	  ${RM} $${test}.tmp; \
 	  ${MAKE} SLEPC_DIR=${SLEPC_DIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test10.rm; \
 	else fail=1; fi; \
-	exit $$fail
+	exit $${fail}
 
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/output/test14f_1.out slepc-3.14.2+dfsg1/src/eps/tests/output/test14f_1.out --- slepc-3.14.1+dfsg1/src/eps/tests/output/test14f_1.out 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/output/test14f_1.out 2021-02-01 14:43:03.000000000 +0000 @@ -28,7 +28,7 @@ hermitian Extraction before changing = 0 ... changed to 1 - Balance: 1, its= 8, cutoff=0.000001 + Balance: 1, its= 8, cutoff=0.000002 Which = 7, target = 4.8 Dimensions: nev= 4, ncv= -2, mpd= -2 Tolerance =0.00022, max_its = 200 diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/output/test39_1.out slepc-3.14.2+dfsg1/src/eps/tests/output/test39_1.out --- slepc-3.14.1+dfsg1/src/eps/tests/output/test39_1.out 1970-01-01 00:00:00.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/output/test39_1.out 2021-02-01 14:43:03.000000000 +0000 @@ -0,0 +1,14 @@ + +2-D Laplacian Eigenproblem, N=110 (10x11 grid) + +First solve: + + All requested eigenvalues computed up to the required tolerance: + 0.14916, 0.34896, 0.38564 + + +Second solve: + + All requested eigenvalues computed up to the required tolerance: + 0.14916, 0.34896, 0.38564 + diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test10.c.html slepc-3.14.2+dfsg1/src/eps/tests/test10.c.html --- slepc-3.14.1+dfsg1/src/eps/tests/test10.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test10.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test11.c.html slepc-3.14.2+dfsg1/src/eps/tests/test11.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test11.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test11.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test12.c.html slepc-3.14.2+dfsg1/src/eps/tests/test12.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test12.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test12.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test13.c.html slepc-3.14.2+dfsg1/src/eps/tests/test13.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test13.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test13.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test14.c slepc-3.14.2+dfsg1/src/eps/tests/test14.c
--- slepc-3.14.1+dfsg1/src/eps/tests/test14.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test14.c	2021-02-01 14:43:03.000000000 +0000
@@ -139,5 +139,6 @@
    test:
       suffix: 1
       args: -eps_ncv 14
+      filter: sed -e "s/00001/00000/"
 
 TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test14.c.html slepc-3.14.2+dfsg1/src/eps/tests/test14.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test14.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test14.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -152,8 +152,9 @@
 139:    test:
 140:       suffix: 1
 141:       args: -eps_ncv 14
+142:       filter: sed -e "s/00001/00000/"
 
-143: TEST*/
+144: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test14f.F slepc-3.14.2+dfsg1/src/eps/tests/test14f.F --- slepc-3.14.1+dfsg1/src/eps/tests/test14f.F 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test14f.F 2021-02-01 14:43:03.000000000 +0000 @@ -119,7 +119,7 @@ 150 format (' ... changed to ',I2) its = 8 - cut = 1.0e-6 + cut = 2.0e-6 bal = EPS_BALANCE_ONESIDE call EPSSetBalance(eps,bal,its,cut,ierr) call EPSGetBalance(eps,bal,its,cut,ierr) @@ -209,5 +209,6 @@ ! test: ! suffix: 1 ! args: -eps_ncv 14 +! filter: sed -e "s/00001/00000/" ! !TEST*/ diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test14f.F.html slepc-3.14.2+dfsg1/src/eps/tests/test14f.F.html --- slepc-3.14.1+dfsg1/src/eps/tests/test14f.F.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test14f.F.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -132,7 +132,7 @@
 119:  150  format (' ... changed to ',I2)
 
 121:       its = 8
-122:       cut = 1.0e-6
+122:       cut = 2.0e-6
 123:       bal = EPS_BALANCE_ONESIDE
 124:       call EPSSetBalance(eps,bal,its,cut,ierr)
 125:       call EPSGetBalance(eps,bal,its,cut,ierr)
@@ -222,8 +222,9 @@
 209: !   test:
 210: !      suffix: 1
 211: !      args: -eps_ncv 14
-212: !
-213: !TEST*/
+212: !      filter: sed -e "s/00001/00000/"
+213: !
+214: !TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test15f.F.html slepc-3.14.2+dfsg1/src/eps/tests/test15f.F.html --- slepc-3.14.1+dfsg1/src/eps/tests/test15f.F.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test15f.F.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test16.c.html slepc-3.14.2+dfsg1/src/eps/tests/test16.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test16.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test16.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test17.c.html slepc-3.14.2+dfsg1/src/eps/tests/test17.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test17.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test17.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test17f.F90.html slepc-3.14.2+dfsg1/src/eps/tests/test17f.F90.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test17f.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test17f.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test18.c.html slepc-3.14.2+dfsg1/src/eps/tests/test18.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test18.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test18.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test19.c.html slepc-3.14.2+dfsg1/src/eps/tests/test19.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test19.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test19.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test1.c.html slepc-3.14.2+dfsg1/src/eps/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test20.c.html slepc-3.14.2+dfsg1/src/eps/tests/test20.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test20.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test20.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test21.c.html slepc-3.14.2+dfsg1/src/eps/tests/test21.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test21.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test21.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test22.c.html slepc-3.14.2+dfsg1/src/eps/tests/test22.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test22.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test22.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test23.c.html slepc-3.14.2+dfsg1/src/eps/tests/test23.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test23.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test23.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test24.c.html slepc-3.14.2+dfsg1/src/eps/tests/test24.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test24.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test24.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test25.c.html slepc-3.14.2+dfsg1/src/eps/tests/test25.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test25.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test25.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test26.c slepc-3.14.2+dfsg1/src/eps/tests/test26.c
--- slepc-3.14.1+dfsg1/src/eps/tests/test26.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test26.c	2021-02-01 14:43:03.000000000 +0000
@@ -113,5 +113,6 @@
          args:  -eps_type arpack
          suffix: 2_arpack
          requires: arpack
+         TODO: fails in new runners
 
 TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test26.c.html slepc-3.14.2+dfsg1/src/eps/tests/test26.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test26.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test26.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -126,8 +126,9 @@
 113:          args:  -eps_type arpack
 114:          suffix: 2_arpack
 115:          requires: arpack
+116:          TODO: fails in new runners
 
-117: TEST*/
+118: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test27.c.html slepc-3.14.2+dfsg1/src/eps/tests/test27.c.html --- slepc-3.14.1+dfsg1/src/eps/tests/test27.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test27.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test28.c slepc-3.14.2+dfsg1/src/eps/tests/test28.c
--- slepc-3.14.1+dfsg1/src/eps/tests/test28.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test28.c	2021-02-01 14:43:03.000000000 +0000
@@ -105,7 +105,7 @@
        Solve again, calling EPSReset() since matrix size has changed
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
-  ierr = EPSReset(eps);CHKERRQ(ierr);  /* if this is omitted, it will be called in EPSSetOperators() */
+  /*ierr = EPSReset(eps);CHKERRQ(ierr);*/  /* not required, will be called in EPSSetOperators() */
   ierr = EPSSetOperators(eps,B,NULL);CHKERRQ(ierr);
   ierr = EPSSolve(eps);CHKERRQ(ierr);
 
@@ -139,5 +139,6 @@
    test:
       suffix: 3
       args: -eps_interval 0.5,0.67 -st_type sinvert -st_pc_type cholesky -terse
+      filter: sed -e "s/55253/55252/"
 
 TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test28.c.html slepc-3.14.2+dfsg1/src/eps/tests/test28.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test28.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test28.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -117,7 +117,7 @@
 105:        Solve again, calling EPSReset() since matrix size has changed
 106:      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 
-108:   EPSReset(eps);  /* if this is omitted, it will be called in EPSSetOperators() */
+108:   /*EPSReset(eps);*/  /* not required, will be called in EPSSetOperators() */
 109:   EPSSetOperators(eps,B,NULL);
 110:   EPSSolve(eps);
 
@@ -151,8 +151,9 @@
 139:    test:
 140:       suffix: 3
 141:       args: -eps_interval 0.5,0.67 -st_type sinvert -st_pc_type cholesky -terse
+142:       filter: sed -e "s/55253/55252/"
 
-143: TEST*/
+144: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test29.c.html slepc-3.14.2+dfsg1/src/eps/tests/test29.c.html --- slepc-3.14.1+dfsg1/src/eps/tests/test29.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test29.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test2.c.html slepc-3.14.2+dfsg1/src/eps/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test30.c.html slepc-3.14.2+dfsg1/src/eps/tests/test30.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test30.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test30.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test31.c.html slepc-3.14.2+dfsg1/src/eps/tests/test31.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test31.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test31.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test32.c.html slepc-3.14.2+dfsg1/src/eps/tests/test32.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test32.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test32.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test33.c.html slepc-3.14.2+dfsg1/src/eps/tests/test33.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test33.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test33.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test34.c.html slepc-3.14.2+dfsg1/src/eps/tests/test34.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test34.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test34.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test35.c.html slepc-3.14.2+dfsg1/src/eps/tests/test35.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test35.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test35.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test36.c.html slepc-3.14.2+dfsg1/src/eps/tests/test36.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test36.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test36.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test37.c.html slepc-3.14.2+dfsg1/src/eps/tests/test37.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test37.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test37.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test38.c.html slepc-3.14.2+dfsg1/src/eps/tests/test38.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test38.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test38.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test39.c slepc-3.14.2+dfsg1/src/eps/tests/test39.c
--- slepc-3.14.1+dfsg1/src/eps/tests/test39.c	1970-01-01 00:00:00.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test39.c	2021-02-01 14:43:03.000000000 +0000
@@ -0,0 +1,137 @@
+/*
+   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+   SLEPc - Scalable Library for Eigenvalue Problem Computations
+   Copyright (c) 2002-2020, Universitat Politecnica de Valencia, Spain
+
+   This file is part of SLEPc.
+   SLEPc is distributed under a 2-clause BSD license (see LICENSE).
+   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+*/
+
+static char help[] = "Tests multiple calls to EPSSolve with matrices of different local size.\n\n"
+  "The command line options are:\n"
+  "  -n , where  = number of grid subdivisions in x dimension.\n"
+  "  -m , where  = number of grid subdivisions in y dimension.\n\n";
+
+#include 
+
+/*
+   Create 2-D Laplacian matrix
+*/
+PetscErrorCode Laplacian(MPI_Comm comm,PetscInt n,PetscInt m,PetscInt shift,Mat *A)
+{
+  PetscErrorCode ierr;
+  PetscInt       N = n*m,i,j,II,Istart,Iend,nloc;
+  PetscMPIInt    rank;
+
+  PetscFunctionBeginUser;
+  ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
+  nloc = PETSC_DECIDE;
+  ierr = PetscSplitOwnership(comm,&nloc,&N);CHKERRQ(ierr);
+  if (rank==0) nloc += shift;
+  else if (rank==1) nloc -= shift;
+
+  ierr = MatCreate(comm,A);CHKERRQ(ierr);
+  ierr = MatSetSizes(*A,nloc,nloc,N,N);CHKERRQ(ierr);
+  ierr = MatSetFromOptions(*A);CHKERRQ(ierr);
+  ierr = MatSetUp(*A);CHKERRQ(ierr);
+  ierr = MatGetOwnershipRange(*A,&Istart,&Iend);CHKERRQ(ierr);
+  for (II=Istart;II0) { ierr = MatSetValue(*A,II,II-n,-1.0,INSERT_VALUES);CHKERRQ(ierr); }
+    if (i0) { ierr = MatSetValue(*A,II,II-1,-1.0,INSERT_VALUES);CHKERRQ(ierr); }
+    if (jActual source code: test39.c

+ + + + + + + + + +
slepc-3.14.2 2021-02-01
+ +
+  1: /*
+  2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+  3:    SLEPc - Scalable Library for Eigenvalue Problem Computations
+  4:    Copyright (c) 2002-2020, Universitat Politecnica de Valencia, Spain
+
+  6:    This file is part of SLEPc.
+  7:    SLEPc is distributed under a 2-clause BSD license (see LICENSE).
+  8:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+  9: */
+
+ 11: static char help[] = "Tests multiple calls to EPSSolve with matrices of different local size.\n\n"
+ 12:   "The command line options are:\n"
+ 13:   "  -n <n>, where <n> = number of grid subdivisions in x dimension.\n"
+ 14:   "  -m <m>, where <m> = number of grid subdivisions in y dimension.\n\n";
+
+ 16: #include <slepceps.h>
+
+ 18: /*
+ 19:    Create 2-D Laplacian matrix
+ 20: */
+ 21: PetscErrorCode Laplacian(MPI_Comm comm,PetscInt n,PetscInt m,PetscInt shift,Mat *A)
+ 22: {
+ 24:   PetscInt       N = n*m,i,j,II,Istart,Iend,nloc;
+ 25:   PetscMPIInt    rank;
+
+ 28:   MPI_Comm_rank(PETSC_COMM_WORLD,&rank);
+ 29:   nloc = PETSC_DECIDE;
+ 30:   PetscSplitOwnership(comm,&nloc,&N);
+ 31:   if (rank==0) nloc += shift;
+ 32:   else if (rank==1) nloc -= shift;
+
+ 34:   MatCreate(comm,A);
+ 35:   MatSetSizes(*A,nloc,nloc,N,N);
+ 36:   MatSetFromOptions(*A);
+ 37:   MatSetUp(*A);
+ 38:   MatGetOwnershipRange(*A,&Istart,&Iend);
+ 39:   for (II=Istart;II<Iend;II++) {
+ 40:     i = II/n; j = II-i*n;
+ 41:     if (i>0) { MatSetValue(*A,II,II-n,-1.0,INSERT_VALUES); }
+ 42:     if (i<m-1) { MatSetValue(*A,II,II+n,-1.0,INSERT_VALUES); }
+ 43:     if (j>0) { MatSetValue(*A,II,II-1,-1.0,INSERT_VALUES); }
+ 44:     if (j<n-1) { MatSetValue(*A,II,II+1,-1.0,INSERT_VALUES); }
+ 45:     MatSetValue(*A,II,II,4.0,INSERT_VALUES);
+ 46:   }
+ 47:   MatAssemblyBegin(*A,MAT_FINAL_ASSEMBLY);
+ 48:   MatAssemblyEnd(*A,MAT_FINAL_ASSEMBLY);
+ 49:   return(0);
+ 50: }
+
+ 52: int main(int argc,char **argv)
+ 53: {
+ 54:   Mat            A,B;
+ 55:   EPS            eps;
+ 56:   PetscInt       N,n=10,m=11,nev=3;
+ 57:   PetscMPIInt    size;
+ 58:   PetscBool      flag,terse;
+
+ 61:   SlepcInitialize(&argc,&argv,(char*)0,help);if (ierr) return ierr;
+ 62:   MPI_Comm_size(PETSC_COMM_WORLD,&size);
+ 63:   if (size==1) SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_WRONG_MPI_SIZE,"This example requires at least two processes");
+ 64:   PetscOptionsGetInt(NULL,NULL,"-n",&n,NULL);
+ 65:   PetscOptionsGetInt(NULL,NULL,"-m",&m,&flag);
+ 66:   N = n*m;
+ 67:   PetscPrintf(PETSC_COMM_WORLD,"\n2-D Laplacian Eigenproblem, N=%D (%Dx%D grid)\n\n",N,n,m);
+
+ 69:   /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ 70:                 Create 2-D Laplacian matrices
+ 71:      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
+
+ 73:   Laplacian(PETSC_COMM_WORLD,n,m,1,&A);
+ 74:   Laplacian(PETSC_COMM_WORLD,n,m,-1,&B);
+
+ 76:   /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ 77:         Create the eigensolver, set options and solve the eigensystem
+ 78:      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
+
+ 80:   PetscPrintf(PETSC_COMM_WORLD,"First solve:\n\n");
+ 81:   EPSCreate(PETSC_COMM_WORLD,&eps);
+ 82:   EPSSetOperators(eps,A,NULL);
+ 83:   EPSSetProblemType(eps,EPS_HEP);
+ 84:   EPSSetWhichEigenpairs(eps,EPS_SMALLEST_REAL);
+ 85:   EPSSetDimensions(eps,nev,PETSC_DEFAULT,PETSC_DEFAULT);
+ 86:   EPSSetFromOptions(eps);
+
+ 88:   EPSSolve(eps);
+
+ 90:   /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ 91:                     Display solution of first solve
+ 92:      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
+
+ 94:   PetscOptionsHasName(NULL,NULL,"-terse",&terse);
+ 95:   if (terse) {
+ 96:     EPSErrorView(eps,EPS_ERROR_RELATIVE,NULL);
+ 97:   } else {
+ 98:     PetscViewerPushFormat(PETSC_VIEWER_STDOUT_WORLD,PETSC_VIEWER_ASCII_INFO_DETAIL);
+ 99:     EPSConvergedReasonView(eps,PETSC_VIEWER_STDOUT_WORLD);
+100:     EPSErrorView(eps,EPS_ERROR_RELATIVE,PETSC_VIEWER_STDOUT_WORLD);
+101:     PetscViewerPopFormat(PETSC_VIEWER_STDOUT_WORLD);
+102:   }
+
+104:   /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+105:                        Solve with second matrix
+106:      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
+
+108:   PetscPrintf(PETSC_COMM_WORLD,"\nSecond solve:\n\n");
+109:   /*EPSReset(eps);*/  /* not required, will be called in EPSSetOperators() */
+110:   EPSSetOperators(eps,B,NULL);
+111:   EPSSolve(eps);
+
+113:   if (terse) {
+114:     EPSErrorView(eps,EPS_ERROR_RELATIVE,NULL);
+115:   } else {
+116:     PetscViewerPushFormat(PETSC_VIEWER_STDOUT_WORLD,PETSC_VIEWER_ASCII_INFO_DETAIL);
+117:     EPSConvergedReasonView(eps,PETSC_VIEWER_STDOUT_WORLD);
+118:     EPSErrorView(eps,EPS_ERROR_RELATIVE,PETSC_VIEWER_STDOUT_WORLD);
+119:     PetscViewerPopFormat(PETSC_VIEWER_STDOUT_WORLD);
+120:   }
+
+122:   EPSDestroy(&eps);
+123:   MatDestroy(&A);
+124:   MatDestroy(&B);
+125:   SlepcFinalize();
+126:   return ierr;
+127: }
+
+129: /*TEST
+
+131:    test:
+132:       suffix: 1
+133:       nsize: 2
+134:       args: -eps_type {{krylovschur arnoldi lanczos lobpcg lapack}} -terse
+135:       requires: !single
+
+137: TEST*/
+
+ + + diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test3.c.html slepc-3.14.2+dfsg1/src/eps/tests/test3.c.html --- slepc-3.14.1+dfsg1/src/eps/tests/test3.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test3.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test4.c.html slepc-3.14.2+dfsg1/src/eps/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test5.c.html slepc-3.14.2+dfsg1/src/eps/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test6.c.html slepc-3.14.2+dfsg1/src/eps/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test7f.F slepc-3.14.2+dfsg1/src/eps/tests/test7f.F
--- slepc-3.14.1+dfsg1/src/eps/tests/test7f.F	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test7f.F	2021-02-01 14:43:03.000000000 +0000
@@ -159,6 +159,7 @@
 !
 !   test:
 !      suffix: 1
-!      args: -eps_nev 4 -eps_ncv 18
+!      args: -eps_nev 4 -eps_ncv 19
+!      filter: sed -e "s/83791/83792/"
 !
 !TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test7f.F.html slepc-3.14.2+dfsg1/src/eps/tests/test7f.F.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test7f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test7f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -172,9 +172,10 @@
 159: !
 160: !   test:
 161: !      suffix: 1
-162: !      args: -eps_nev 4 -eps_ncv 18
-163: !
-164: !TEST*/
+162: !      args: -eps_nev 4 -eps_ncv 19
+163: !      filter: sed -e "s/83791/83792/"
+164: !
+165: !TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test8.c slepc-3.14.2+dfsg1/src/eps/tests/test8.c --- slepc-3.14.1+dfsg1/src/eps/tests/test8.c 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test8.c 2021-02-01 14:43:03.000000000 +0000 @@ -173,7 +173,7 @@ output_file: output/test8_1.out test: suffix: 1 - args: -eps_type {{krylovschur power subspace arnoldi lanczos}} + args: -eps_type {{power subspace arnoldi lanczos}} test: suffix: 1_lapack args: -eps_type lapack @@ -184,7 +184,7 @@ requires: elemental test: suffix: 1_krylovschur_vecs - args: -bv_type vecs -bv_orthog_refine always -eps_ncv 12 + args: -bv_type vecs -bv_orthog_refine always -eps_ncv 10 test: suffix: 1_jd args: -eps_type jd -eps_jd_blocksize 3 diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test8.c.html slepc-3.14.2+dfsg1/src/eps/tests/test8.c.html --- slepc-3.14.1+dfsg1/src/eps/tests/test8.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tests/test8.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -182,7 +182,7 @@
 173:       output_file: output/test8_1.out
 174:       test:
 175:          suffix: 1
-176:          args: -eps_type {{krylovschur power subspace arnoldi lanczos}}
+176:          args: -eps_type {{power subspace arnoldi lanczos}}
 177:       test:
 178:          suffix: 1_lapack
 179:          args: -eps_type lapack
@@ -193,7 +193,7 @@
 184:          requires: elemental
 185:       test:
 186:          suffix: 1_krylovschur_vecs
-187:          args: -bv_type vecs -bv_orthog_refine always -eps_ncv 12
+187:          args: -bv_type vecs -bv_orthog_refine always -eps_ncv 10
 188:       test:
 189:          suffix: 1_jd
 190:          args: -eps_type jd -eps_jd_blocksize 3
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test9.c slepc-3.14.2+dfsg1/src/eps/tests/test9.c
--- slepc-3.14.1+dfsg1/src/eps/tests/test9.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test9.c	2021-02-01 14:43:03.000000000 +0000
@@ -239,7 +239,7 @@
 
    test:
       suffix: 2
-      args: -eps_balance {{none oneside twoside}} -eps_krylovschur_locking {{0 1}} -eps_nev 4 -eps_ncv 7 -eps_max_it 500
+      args: -eps_balance {{none oneside twoside}} -eps_krylovschur_locking {{0 1}} -eps_nev 4 -eps_ncv 7 -eps_max_it 1500
       requires: double
       output_file: output/test9_1.out
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tests/test9.c.html slepc-3.14.2+dfsg1/src/eps/tests/test9.c.html
--- slepc-3.14.1+dfsg1/src/eps/tests/test9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tests/test9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -247,7 +247,7 @@
 
 240:    test:
 241:       suffix: 2
-242:       args: -eps_balance {{none oneside twoside}} -eps_krylovschur_locking {{0 1}} -eps_nev 4 -eps_ncv 7 -eps_max_it 500
+242:       args: -eps_balance {{none oneside twoside}} -eps_krylovschur_locking {{0 1}} -eps_nev 4 -eps_ncv 7 -eps_max_it 1500
 243:       requires: double
 244:       output_file: output/test9_1.out
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex10.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex10.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex10.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex10.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex11.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex11.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex11.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex11.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex12.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex12.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex12.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex12.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex13.c slepc-3.14.2+dfsg1/src/eps/tutorials/ex13.c
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex13.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex13.c	2021-02-01 14:43:03.000000000 +0000
@@ -140,7 +140,7 @@
 
    test:
       suffix: 4
-      args: -eps_nev 4 -eps_tol 1e-5 -eps_smallest_real -eps_type {{gd lobpcg rqcg}} -terse
+      args: -eps_nev 4 -eps_tol 1e-4 -eps_smallest_real -eps_type {{gd lobpcg rqcg}} -terse
       output_file: output/ex13_1.out
       filter: grep -v Solution
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex13.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex13.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex13.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex13.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -152,7 +152,7 @@
 
 141:    test:
 142:       suffix: 4
-143:       args: -eps_nev 4 -eps_tol 1e-5 -eps_smallest_real -eps_type {{gd lobpcg rqcg}} -terse
+143:       args: -eps_nev 4 -eps_tol 1e-4 -eps_smallest_real -eps_type {{gd lobpcg rqcg}} -terse
 144:       output_file: output/ex13_1.out
 145:       filter: grep -v Solution
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex18.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex18.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex18.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex18.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex19.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex19.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex19.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex19.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex1.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex1.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex1f90.F90.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex1f90.F90.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex1f90.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex1f90.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex1f.F.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex1f.F.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex1f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex1f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex24.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex24.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex24.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex24.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex25.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex25.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex25.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex25.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex29.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex29.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex29.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex29.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex2.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex2.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex30.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex30.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex30.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex30.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex31.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex31.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex31.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex31.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex34.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex34.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex34.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex34.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex35.c slepc-3.14.2+dfsg1/src/eps/tutorials/ex35.c
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex35.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex35.c	2021-02-01 14:43:03.000000000 +0000
@@ -207,5 +207,6 @@
    test:
       args: -m 11 -eps_nev 4 -terse
       suffix: 1
+      requires: !single
 
 TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex35.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex35.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex35.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex35.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -213,8 +213,9 @@
 207:    test:
 208:       args: -m 11 -eps_nev 4 -terse
 209:       suffix: 1
+210:       requires: !single
 
-211: TEST*/
+212: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex36.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex36.c.html --- slepc-3.14.1+dfsg1/src/eps/tutorials/ex36.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex36.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex3.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex3.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex41.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex41.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex41.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex41.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex43.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex43.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex43.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex43.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex44.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex44.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex44.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex44.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex4.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex4.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex5.c slepc-3.14.2+dfsg1/src/eps/tutorials/ex5.c
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex5.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex5.c	2021-02-01 14:43:03.000000000 +0000
@@ -187,5 +187,6 @@
    test:
       suffix: 1
       args: -eps_largest_real -eps_nev 4 -eps_two_sided {{0 1}} -eps_krylovschur_locking {{0 1}} -terse
+      filter: sed -e "s/90424/90423/"
 
 TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex5.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex5.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -198,8 +198,9 @@
 187:    test:
 188:       suffix: 1
 189:       args: -eps_largest_real -eps_nev 4 -eps_two_sided {{0 1}} -eps_krylovschur_locking {{0 1}} -terse
+190:       filter: sed -e "s/90424/90423/"
 
-191: TEST*/
+192: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex6f90.F90.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex6f90.F90.html --- slepc-3.14.1+dfsg1/src/eps/tutorials/ex6f90.F90.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex6f90.F90.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex7.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex7.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex7.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex7.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex9.c slepc-3.14.2+dfsg1/src/eps/tutorials/ex9.c
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex9.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex9.c	2021-02-01 14:43:03.000000000 +0000
@@ -333,7 +333,7 @@
 
    test:
       suffix: 7
-      args: -n 40 -eps_nev 1 -eps_type arnoldi -eps_smallest_real -eps_refined -eps_ncv 40 -eps_max_it 200 -terse
+      args: -n 40 -eps_nev 1 -eps_type arnoldi -eps_smallest_real -eps_refined -eps_ncv 40 -eps_max_it 300 -terse
       requires: double
 
    test:
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/ex9.c.html slepc-3.14.2+dfsg1/src/eps/tutorials/ex9.c.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/ex9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/ex9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -341,7 +341,7 @@
 
 334:    test:
 335:       suffix: 7
-336:       args: -n 40 -eps_nev 1 -eps_type arnoldi -eps_smallest_real -eps_refined -eps_ncv 40 -eps_max_it 200 -terse
+336:       args: -n 40 -eps_nev 1 -eps_type arnoldi -eps_smallest_real -eps_refined -eps_ncv 40 -eps_max_it 300 -terse
 337:       requires: double
 
 339:    test:
diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/index.html slepc-3.14.2+dfsg1/src/eps/tutorials/index.html
--- slepc-3.14.1+dfsg1/src/eps/tutorials/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/eps/tutorials/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Eigenvalue Problem Solver - EPS: Examples

diff -Nru slepc-3.14.1+dfsg1/src/eps/tutorials/makefile.html slepc-3.14.2+dfsg1/src/eps/tutorials/makefile.html --- slepc-3.14.1+dfsg1/src/eps/tutorials/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/eps/tutorials/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/index.html slepc-3.14.2+dfsg1/src/index.html
--- slepc-3.14.1+dfsg1/src/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,8 +4,8 @@
 Generic SLEPc Manual Pages
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

sys/
eps/
diff -Nru slepc-3.14.1+dfsg1/src/lme/f90-mod/index.html slepc-3.14.2+dfsg1/src/lme/f90-mod/index.html --- slepc-3.14.1+dfsg1/src/lme/f90-mod/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/f90-mod/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -

slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/src/lme/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/lme/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/lme/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/lme/f90-mod/slepclme.h90.html slepc-3.14.2+dfsg1/src/lme/f90-mod/slepclme.h90.html
--- slepc-3.14.1+dfsg1/src/lme/f90-mod/slepclme.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/f90-mod/slepclme.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/f90-mod/slepclme.h.html slepc-3.14.2+dfsg1/src/lme/f90-mod/slepclme.h.html
--- slepc-3.14.1+dfsg1/src/lme/f90-mod/slepclme.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/f90-mod/slepclme.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/impls/index.html slepc-3.14.2+dfsg1/src/lme/impls/index.html
--- slepc-3.14.1+dfsg1/src/lme/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/src/lme/impls/krylov/index.html slepc-3.14.2+dfsg1/src/lme/impls/krylov/index.html --- slepc-3.14.1+dfsg1/src/lme/impls/krylov/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/impls/krylov/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/src/lme/impls/krylov/lmekrylov.c.html slepc-3.14.2+dfsg1/src/lme/impls/krylov/lmekrylov.c.html --- slepc-3.14.1+dfsg1/src/lme/impls/krylov/lmekrylov.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/impls/krylov/lmekrylov.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/impls/krylov/makefile.html slepc-3.14.2+dfsg1/src/lme/impls/krylov/makefile.html
--- slepc-3.14.1+dfsg1/src/lme/impls/krylov/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/impls/krylov/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/lme/impls/makefile.html slepc-3.14.2+dfsg1/src/lme/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/lme/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/lme/index.html slepc-3.14.2+dfsg1/src/lme/index.html
--- slepc-3.14.1+dfsg1/src/lme/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/dlregislme.c.html slepc-3.14.2+dfsg1/src/lme/interface/dlregislme.c.html --- slepc-3.14.1+dfsg1/src/lme/interface/dlregislme.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/interface/dlregislme.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/index.html slepc-3.14.2+dfsg1/src/lme/interface/index.html
--- slepc-3.14.1+dfsg1/src/lme/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/lmebasic.c.html slepc-3.14.2+dfsg1/src/lme/interface/lmebasic.c.html --- slepc-3.14.1+dfsg1/src/lme/interface/lmebasic.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/interface/lmebasic.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/lmedense.c.html slepc-3.14.2+dfsg1/src/lme/interface/lmedense.c.html
--- slepc-3.14.1+dfsg1/src/lme/interface/lmedense.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/lmedense.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/lmemon.c.html slepc-3.14.2+dfsg1/src/lme/interface/lmemon.c.html
--- slepc-3.14.1+dfsg1/src/lme/interface/lmemon.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/lmemon.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/lmeopts.c.html slepc-3.14.2+dfsg1/src/lme/interface/lmeopts.c.html
--- slepc-3.14.1+dfsg1/src/lme/interface/lmeopts.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/lmeopts.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/lmeregis.c.html slepc-3.14.2+dfsg1/src/lme/interface/lmeregis.c.html
--- slepc-3.14.1+dfsg1/src/lme/interface/lmeregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/lmeregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/lmesetup.c.html slepc-3.14.2+dfsg1/src/lme/interface/lmesetup.c.html
--- slepc-3.14.1+dfsg1/src/lme/interface/lmesetup.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/lmesetup.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/lmesolve.c.html slepc-3.14.2+dfsg1/src/lme/interface/lmesolve.c.html
--- slepc-3.14.1+dfsg1/src/lme/interface/lmesolve.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/lmesolve.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/interface/makefile.html slepc-3.14.2+dfsg1/src/lme/interface/makefile.html
--- slepc-3.14.1+dfsg1/src/lme/interface/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/interface/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/lme/makefile.html slepc-3.14.2+dfsg1/src/lme/makefile.html
--- slepc-3.14.1+dfsg1/src/lme/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/lme/tests/index.html slepc-3.14.2+dfsg1/src/lme/tests/index.html
--- slepc-3.14.1+dfsg1/src/lme/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/src/lme/tests/makefile.html slepc-3.14.2+dfsg1/src/lme/tests/makefile.html --- slepc-3.14.1+dfsg1/src/lme/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/lme/tests/test1.c.html slepc-3.14.2+dfsg1/src/lme/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/lme/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/tests/test2.c.html slepc-3.14.2+dfsg1/src/lme/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/lme/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/tutorials/ex32.c.html slepc-3.14.2+dfsg1/src/lme/tutorials/ex32.c.html
--- slepc-3.14.1+dfsg1/src/lme/tutorials/ex32.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/tutorials/ex32.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/lme/tutorials/index.html slepc-3.14.2+dfsg1/src/lme/tutorials/index.html
--- slepc-3.14.1+dfsg1/src/lme/tutorials/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/lme/tutorials/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Linear Matrix Equation - LME: Examples

diff -Nru slepc-3.14.1+dfsg1/src/lme/tutorials/makefile.html slepc-3.14.2+dfsg1/src/lme/tutorials/makefile.html --- slepc-3.14.1+dfsg1/src/lme/tutorials/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/lme/tutorials/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/makefile.html slepc-3.14.2+dfsg1/src/makefile.html
--- slepc-3.14.1+dfsg1/src/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/f90-mod/index.html slepc-3.14.2+dfsg1/src/mfn/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/mfn/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/mfn/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/mfn/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html slepc-3.14.2+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html
--- slepc-3.14.1+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/f90-mod/slepcmfn.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/f90-mod/slepcmfn.h.html slepc-3.14.2+dfsg1/src/mfn/f90-mod/slepcmfn.h.html
--- slepc-3.14.1+dfsg1/src/mfn/f90-mod/slepcmfn.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/f90-mod/slepcmfn.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/expokit/index.html slepc-3.14.2+dfsg1/src/mfn/impls/expokit/index.html
--- slepc-3.14.1+dfsg1/src/mfn/impls/expokit/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/impls/expokit/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/expokit/makefile.html slepc-3.14.2+dfsg1/src/mfn/impls/expokit/makefile.html --- slepc-3.14.1+dfsg1/src/mfn/impls/expokit/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/impls/expokit/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html slepc-3.14.2+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html
--- slepc-3.14.1+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/impls/expokit/mfnexpokit.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/index.html slepc-3.14.2+dfsg1/src/mfn/impls/index.html
--- slepc-3.14.1+dfsg1/src/mfn/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/krylov/index.html slepc-3.14.2+dfsg1/src/mfn/impls/krylov/index.html --- slepc-3.14.1+dfsg1/src/mfn/impls/krylov/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/impls/krylov/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/krylov/makefile.html slepc-3.14.2+dfsg1/src/mfn/impls/krylov/makefile.html --- slepc-3.14.1+dfsg1/src/mfn/impls/krylov/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/impls/krylov/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html slepc-3.14.2+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html
--- slepc-3.14.1+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/impls/krylov/mfnkrylov.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/impls/makefile.html slepc-3.14.2+dfsg1/src/mfn/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/mfn/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/index.html slepc-3.14.2+dfsg1/src/mfn/index.html
--- slepc-3.14.1+dfsg1/src/mfn/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/dlregismfn.c.html slepc-3.14.2+dfsg1/src/mfn/interface/dlregismfn.c.html --- slepc-3.14.1+dfsg1/src/mfn/interface/dlregismfn.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/interface/dlregismfn.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/index.html slepc-3.14.2+dfsg1/src/mfn/interface/index.html
--- slepc-3.14.1+dfsg1/src/mfn/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/makefile.html slepc-3.14.2+dfsg1/src/mfn/interface/makefile.html --- slepc-3.14.1+dfsg1/src/mfn/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/mfnbasic.c.html slepc-3.14.2+dfsg1/src/mfn/interface/mfnbasic.c.html
--- slepc-3.14.1+dfsg1/src/mfn/interface/mfnbasic.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/interface/mfnbasic.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/mfnmon.c.html slepc-3.14.2+dfsg1/src/mfn/interface/mfnmon.c.html
--- slepc-3.14.1+dfsg1/src/mfn/interface/mfnmon.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/interface/mfnmon.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/mfnopts.c.html slepc-3.14.2+dfsg1/src/mfn/interface/mfnopts.c.html
--- slepc-3.14.1+dfsg1/src/mfn/interface/mfnopts.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/interface/mfnopts.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/mfnregis.c.html slepc-3.14.2+dfsg1/src/mfn/interface/mfnregis.c.html
--- slepc-3.14.1+dfsg1/src/mfn/interface/mfnregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/interface/mfnregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/mfnsetup.c.html slepc-3.14.2+dfsg1/src/mfn/interface/mfnsetup.c.html
--- slepc-3.14.1+dfsg1/src/mfn/interface/mfnsetup.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/interface/mfnsetup.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/interface/mfnsolve.c.html slepc-3.14.2+dfsg1/src/mfn/interface/mfnsolve.c.html
--- slepc-3.14.1+dfsg1/src/mfn/interface/mfnsolve.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/interface/mfnsolve.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/makefile.html slepc-3.14.2+dfsg1/src/mfn/makefile.html
--- slepc-3.14.1+dfsg1/src/mfn/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/index.html slepc-3.14.2+dfsg1/src/mfn/tests/index.html
--- slepc-3.14.1+dfsg1/src/mfn/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/makefile.html slepc-3.14.2+dfsg1/src/mfn/tests/makefile.html --- slepc-3.14.1+dfsg1/src/mfn/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/test1.c.html slepc-3.14.2+dfsg1/src/mfn/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/test2.c slepc-3.14.2+dfsg1/src/mfn/tests/test2.c
--- slepc-3.14.1+dfsg1/src/mfn/tests/test2.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tests/test2.c	2021-02-01 14:43:03.000000000 +0000
@@ -129,7 +129,7 @@
 
    test:
       suffix: 3
-      args: -mfn_type expokit -t 0.6
+      args: -mfn_type expokit -t 0.6 -mfn_ncv 35
       requires: !__float128
 
 TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/test2.c.html slepc-3.14.2+dfsg1/src/mfn/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -141,7 +141,7 @@
 
 130:    test:
 131:       suffix: 3
-132:       args: -mfn_type expokit -t 0.6
+132:       args: -mfn_type expokit -t 0.6 -mfn_ncv 35
 133:       requires: !__float128
 
 135: TEST*/
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/test3.c.html slepc-3.14.2+dfsg1/src/mfn/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/test3f.F.html slepc-3.14.2+dfsg1/src/mfn/tests/test3f.F.html
--- slepc-3.14.1+dfsg1/src/mfn/tests/test3f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tests/test3f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tests/test4.c.html slepc-3.14.2+dfsg1/src/mfn/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tutorials/ex23.c.html slepc-3.14.2+dfsg1/src/mfn/tutorials/ex23.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tutorials/ex23.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tutorials/ex23.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tutorials/ex23f90.F90.html slepc-3.14.2+dfsg1/src/mfn/tutorials/ex23f90.F90.html
--- slepc-3.14.1+dfsg1/src/mfn/tutorials/ex23f90.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tutorials/ex23f90.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tutorials/ex26.c.html slepc-3.14.2+dfsg1/src/mfn/tutorials/ex26.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tutorials/ex26.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tutorials/ex26.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tutorials/ex37.c.html slepc-3.14.2+dfsg1/src/mfn/tutorials/ex37.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tutorials/ex37.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tutorials/ex37.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tutorials/ex39.c.html slepc-3.14.2+dfsg1/src/mfn/tutorials/ex39.c.html
--- slepc-3.14.1+dfsg1/src/mfn/tutorials/ex39.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tutorials/ex39.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/mfn/tutorials/index.html slepc-3.14.2+dfsg1/src/mfn/tutorials/index.html
--- slepc-3.14.1+dfsg1/src/mfn/tutorials/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/mfn/tutorials/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Matrix Function - MFN: Examples

diff -Nru slepc-3.14.1+dfsg1/src/mfn/tutorials/makefile.html slepc-3.14.2+dfsg1/src/mfn/tutorials/makefile.html --- slepc-3.14.1+dfsg1/src/mfn/tutorials/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/mfn/tutorials/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90 slepc-3.14.2+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90
--- slepc-3.14.1+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/f90-mod/ftn-auto-interfaces/slepcnep.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,122 +1,75 @@
-      subroutine NEPInterpolSetInterpolation(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-       PetscInt c ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPInterpolSetInterpolation
-      subroutine NEPInterpolGetInterpolation(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-       PetscInt c ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPInterpolGetInterpolation
-      subroutine NEPInterpolSetPEP(a,b,z)
+      subroutine NEPRIISetMaximumIterations(a,b,z)
       use slepcnepdef
        NEP a ! NEP
-       PEP b ! PEP
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine NEPInterpolSetPEP
-      subroutine NEPInterpolGetPEP(a,b,z)
+       end subroutine NEPRIISetMaximumIterations
+      subroutine NEPRIIGetMaximumIterations(a,b,z)
       use slepcnepdef
        NEP a ! NEP
-       PEP b ! PEP
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine NEPInterpolGetPEP
-      subroutine NEPNLEIGSSetRestart(a,b,z)
+       end subroutine NEPRIIGetMaximumIterations
+      subroutine NEPRIISetLagPreconditioner(a,b,z)
       use slepcnepdef
        NEP a ! NEP
-       PetscReal b ! PetscReal
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine NEPNLEIGSSetRestart
-      subroutine NEPNLEIGSGetRestart(a,b,z)
+       end subroutine NEPRIISetLagPreconditioner
+      subroutine NEPRIIGetLagPreconditioner(a,b,z)
       use slepcnepdef
        NEP a ! NEP
-       PetscReal b ! PetscReal
+       PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine NEPNLEIGSGetRestart
-      subroutine NEPNLEIGSSetLocking(a,b,z)
+       end subroutine NEPRIIGetLagPreconditioner
+      subroutine NEPRIISetConstCorrectionTol(a,b,z)
       use slepcnepdef
        NEP a ! NEP
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine NEPNLEIGSSetLocking
-      subroutine NEPNLEIGSGetLocking(a,b,z)
+       end subroutine NEPRIISetConstCorrectionTol
+      subroutine NEPRIIGetConstCorrectionTol(a,b,z)
       use slepcnepdef
        NEP a ! NEP
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine NEPNLEIGSGetLocking
-      subroutine NEPNLEIGSSetInterpolation(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-       PetscInt c ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPNLEIGSSetInterpolation
-      subroutine NEPNLEIGSGetInterpolation(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-       PetscInt c ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPNLEIGSGetInterpolation
-      subroutine NEPNLEIGSSetRKShifts(a,b,c,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-       PetscScalar c (*) ! PetscScalar
-        PetscErrorCode z
-       end subroutine NEPNLEIGSSetRKShifts
-      subroutine NEPNLEIGSSetFullBasis(a,b,z)
+       end subroutine NEPRIIGetConstCorrectionTol
+      subroutine NEPRIISetHermitian(a,b,z)
       use slepcnepdef
        NEP a ! NEP
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine NEPNLEIGSSetFullBasis
-      subroutine NEPNLEIGSGetFullBasis(a,b,z)
+       end subroutine NEPRIISetHermitian
+      subroutine NEPRIIGetHermitian(a,b,z)
       use slepcnepdef
        NEP a ! NEP
        PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine NEPNLEIGSGetFullBasis
-      subroutine NEPNLEIGSSetEPS(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       EPS b ! EPS
-        PetscErrorCode z
-       end subroutine NEPNLEIGSSetEPS
-      subroutine NEPNLEIGSGetEPS(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       EPS b ! EPS
-        PetscErrorCode z
-       end subroutine NEPNLEIGSGetEPS
-      subroutine NEPNArnoldiSetLagPreconditioner(a,b,z)
+       end subroutine NEPRIIGetHermitian
+      subroutine NEPRIISetDeflationThreshold(a,b,z)
       use slepcnepdef
        NEP a ! NEP
-       PetscInt b ! PetscInt
+       PetscReal b ! PetscReal
         PetscErrorCode z
-       end subroutine NEPNArnoldiSetLagPreconditioner
-      subroutine NEPNArnoldiGetLagPreconditioner(a,b,z)
+       end subroutine NEPRIISetDeflationThreshold
+      subroutine NEPRIIGetDeflationThreshold(a,b,z)
       use slepcnepdef
        NEP a ! NEP
-       PetscInt b ! PetscInt
+       PetscReal b ! PetscReal
         PetscErrorCode z
-       end subroutine NEPNArnoldiGetLagPreconditioner
-      subroutine NEPNArnoldiSetKSP(a,b,z)
+       end subroutine NEPRIIGetDeflationThreshold
+      subroutine NEPRIISetKSP(a,b,z)
       use slepcnepdef
        NEP a ! NEP
        KSP b ! KSP
         PetscErrorCode z
-       end subroutine NEPNArnoldiSetKSP
-      subroutine NEPNArnoldiGetKSP(a,b,z)
+       end subroutine NEPRIISetKSP
+      subroutine NEPRIIGetKSP(a,b,z)
       use slepcnepdef
        NEP a ! NEP
        KSP b ! KSP
         PetscErrorCode z
-       end subroutine NEPNArnoldiGetKSP
+       end subroutine NEPRIIGetKSP
       subroutine NEPSLPSetDeflationThreshold(a,b,z)
       use slepcnepdef
        NEP a ! NEP
@@ -165,78 +118,6 @@
        KSP b ! KSP
         PetscErrorCode z
        end subroutine NEPSLPGetKSP
-      subroutine NEPRIISetMaximumIterations(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPRIISetMaximumIterations
-      subroutine NEPRIIGetMaximumIterations(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPRIIGetMaximumIterations
-      subroutine NEPRIISetLagPreconditioner(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPRIISetLagPreconditioner
-      subroutine NEPRIIGetLagPreconditioner(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine NEPRIIGetLagPreconditioner
-      subroutine NEPRIISetConstCorrectionTol(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine NEPRIISetConstCorrectionTol
-      subroutine NEPRIIGetConstCorrectionTol(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine NEPRIIGetConstCorrectionTol
-      subroutine NEPRIISetHermitian(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine NEPRIISetHermitian
-      subroutine NEPRIIGetHermitian(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine NEPRIIGetHermitian
-      subroutine NEPRIISetDeflationThreshold(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-        PetscErrorCode z
-       end subroutine NEPRIISetDeflationThreshold
-      subroutine NEPRIIGetDeflationThreshold(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       PetscReal b ! PetscReal
-        PetscErrorCode z
-       end subroutine NEPRIIGetDeflationThreshold
-      subroutine NEPRIISetKSP(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       KSP b ! KSP
-        PetscErrorCode z
-       end subroutine NEPRIISetKSP
-      subroutine NEPRIIGetKSP(a,b,z)
-      use slepcnepdef
-       NEP a ! NEP
-       KSP b ! KSP
-        PetscErrorCode z
-       end subroutine NEPRIIGetKSP
       subroutine NEPSolve(a,z)
       use slepcnepdef
        NEP a ! NEP
@@ -584,3 +465,122 @@
        PetscInt b ! PetscInt
         PetscErrorCode z
        end subroutine NEPAllocateSolution
+      subroutine NEPNLEIGSSetRestart(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine NEPNLEIGSSetRestart
+      subroutine NEPNLEIGSGetRestart(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine NEPNLEIGSGetRestart
+      subroutine NEPNLEIGSSetLocking(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine NEPNLEIGSSetLocking
+      subroutine NEPNLEIGSGetLocking(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine NEPNLEIGSGetLocking
+      subroutine NEPNLEIGSSetInterpolation(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+       PetscInt c ! PetscInt
+        PetscErrorCode z
+       end subroutine NEPNLEIGSSetInterpolation
+      subroutine NEPNLEIGSGetInterpolation(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+       PetscInt c ! PetscInt
+        PetscErrorCode z
+       end subroutine NEPNLEIGSGetInterpolation
+      subroutine NEPNLEIGSSetRKShifts(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+       PetscScalar c (*) ! PetscScalar
+        PetscErrorCode z
+       end subroutine NEPNLEIGSSetRKShifts
+      subroutine NEPNLEIGSSetFullBasis(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine NEPNLEIGSSetFullBasis
+      subroutine NEPNLEIGSGetFullBasis(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine NEPNLEIGSGetFullBasis
+      subroutine NEPNLEIGSSetEPS(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       EPS b ! EPS
+        PetscErrorCode z
+       end subroutine NEPNLEIGSSetEPS
+      subroutine NEPNLEIGSGetEPS(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       EPS b ! EPS
+        PetscErrorCode z
+       end subroutine NEPNLEIGSGetEPS
+      subroutine NEPNArnoldiSetLagPreconditioner(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine NEPNArnoldiSetLagPreconditioner
+      subroutine NEPNArnoldiGetLagPreconditioner(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine NEPNArnoldiGetLagPreconditioner
+      subroutine NEPNArnoldiSetKSP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       KSP b ! KSP
+        PetscErrorCode z
+       end subroutine NEPNArnoldiSetKSP
+      subroutine NEPNArnoldiGetKSP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       KSP b ! KSP
+        PetscErrorCode z
+       end subroutine NEPNArnoldiGetKSP
+      subroutine NEPInterpolSetInterpolation(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+       PetscInt c ! PetscInt
+        PetscErrorCode z
+       end subroutine NEPInterpolSetInterpolation
+      subroutine NEPInterpolGetInterpolation(a,b,c,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PetscReal b ! PetscReal
+       PetscInt c ! PetscInt
+        PetscErrorCode z
+       end subroutine NEPInterpolGetInterpolation
+      subroutine NEPInterpolSetPEP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PEP b ! PEP
+        PetscErrorCode z
+       end subroutine NEPInterpolSetPEP
+      subroutine NEPInterpolGetPEP(a,b,z)
+      use slepcnepdef
+       NEP a ! NEP
+       PEP b ! PEP
+        PetscErrorCode z
+       end subroutine NEPInterpolGetPEP
diff -Nru slepc-3.14.1+dfsg1/src/nep/f90-mod/index.html slepc-3.14.2+dfsg1/src/nep/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/nep/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/nep/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/nep/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/f90-mod/slepcnep.h90.html slepc-3.14.2+dfsg1/src/nep/f90-mod/slepcnep.h90.html
--- slepc-3.14.1+dfsg1/src/nep/f90-mod/slepcnep.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/f90-mod/slepcnep.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/f90-mod/slepcnep.h.html slepc-3.14.2+dfsg1/src/nep/f90-mod/slepcnep.h.html
--- slepc-3.14.1+dfsg1/src/nep/f90-mod/slepcnep.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/f90-mod/slepcnep.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/ciss/index.html slepc-3.14.2+dfsg1/src/nep/impls/ciss/index.html
--- slepc-3.14.1+dfsg1/src/nep/impls/ciss/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/ciss/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/ciss/makefile.html slepc-3.14.2+dfsg1/src/nep/impls/ciss/makefile.html --- slepc-3.14.1+dfsg1/src/nep/impls/ciss/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/impls/ciss/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/ciss/nciss.c.html slepc-3.14.2+dfsg1/src/nep/impls/ciss/nciss.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/ciss/nciss.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/ciss/nciss.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/index.html slepc-3.14.2+dfsg1/src/nep/impls/index.html
--- slepc-3.14.1+dfsg1/src/nep/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/interpol/index.html slepc-3.14.2+dfsg1/src/nep/impls/interpol/index.html --- slepc-3.14.1+dfsg1/src/nep/impls/interpol/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/impls/interpol/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/interpol/interpol.c.html slepc-3.14.2+dfsg1/src/nep/impls/interpol/interpol.c.html --- slepc-3.14.1+dfsg1/src/nep/impls/interpol/interpol.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/impls/interpol/interpol.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/interpol/makefile.html slepc-3.14.2+dfsg1/src/nep/impls/interpol/makefile.html
--- slepc-3.14.1+dfsg1/src/nep/impls/interpol/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/interpol/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/makefile.html slepc-3.14.2+dfsg1/src/nep/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/nep/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/narnoldi/index.html slepc-3.14.2+dfsg1/src/nep/impls/narnoldi/index.html
--- slepc-3.14.1+dfsg1/src/nep/impls/narnoldi/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/narnoldi/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/narnoldi/makefile.html slepc-3.14.2+dfsg1/src/nep/impls/narnoldi/makefile.html --- slepc-3.14.1+dfsg1/src/nep/impls/narnoldi/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/impls/narnoldi/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html slepc-3.14.2+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/narnoldi/narnoldi.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/nepdefl.c.html slepc-3.14.2+dfsg1/src/nep/impls/nepdefl.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/nepdefl.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/nepdefl.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/nepdefl.h.html slepc-3.14.2+dfsg1/src/nep/impls/nepdefl.h.html
--- slepc-3.14.1+dfsg1/src/nep/impls/nepdefl.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/nepdefl.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/nleigs/index.html slepc-3.14.2+dfsg1/src/nep/impls/nleigs/index.html
--- slepc-3.14.1+dfsg1/src/nep/impls/nleigs/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/nleigs/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/nleigs/makefile.html slepc-3.14.2+dfsg1/src/nep/impls/nleigs/makefile.html --- slepc-3.14.1+dfsg1/src/nep/impls/nleigs/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/impls/nleigs/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/nleigs/nleigs.c.html slepc-3.14.2+dfsg1/src/nep/impls/nleigs/nleigs.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/nleigs/nleigs.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/nleigs/nleigs.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/nleigs/nleigs-fullb.c.html slepc-3.14.2+dfsg1/src/nep/impls/nleigs/nleigs-fullb.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/nleigs/nleigs-fullb.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/nleigs/nleigs-fullb.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/nleigs/nleigs.h.html slepc-3.14.2+dfsg1/src/nep/impls/nleigs/nleigs.h.html
--- slepc-3.14.1+dfsg1/src/nep/impls/nleigs/nleigs.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/nleigs/nleigs.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/rii/index.html slepc-3.14.2+dfsg1/src/nep/impls/rii/index.html
--- slepc-3.14.1+dfsg1/src/nep/impls/rii/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/rii/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/rii/makefile.html slepc-3.14.2+dfsg1/src/nep/impls/rii/makefile.html --- slepc-3.14.1+dfsg1/src/nep/impls/rii/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/impls/rii/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/rii/rii.c.html slepc-3.14.2+dfsg1/src/nep/impls/rii/rii.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/rii/rii.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/rii/rii.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/slp/index.html slepc-3.14.2+dfsg1/src/nep/impls/slp/index.html
--- slepc-3.14.1+dfsg1/src/nep/impls/slp/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/slp/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/slp/makefile.html slepc-3.14.2+dfsg1/src/nep/impls/slp/makefile.html --- slepc-3.14.1+dfsg1/src/nep/impls/slp/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/impls/slp/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/slp/slp.c.html slepc-3.14.2+dfsg1/src/nep/impls/slp/slp.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/slp/slp.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/slp/slp.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/impls/slp/slp-twosided.c.html slepc-3.14.2+dfsg1/src/nep/impls/slp/slp-twosided.c.html
--- slepc-3.14.1+dfsg1/src/nep/impls/slp/slp-twosided.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/impls/slp/slp-twosided.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/index.html slepc-3.14.2+dfsg1/src/nep/index.html
--- slepc-3.14.1+dfsg1/src/nep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/dlregisnep.c.html slepc-3.14.2+dfsg1/src/nep/interface/dlregisnep.c.html --- slepc-3.14.1+dfsg1/src/nep/interface/dlregisnep.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/interface/dlregisnep.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/index.html slepc-3.14.2+dfsg1/src/nep/interface/index.html
--- slepc-3.14.1+dfsg1/src/nep/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/makefile.html slepc-3.14.2+dfsg1/src/nep/interface/makefile.html --- slepc-3.14.1+dfsg1/src/nep/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepbasic.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepbasic.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepbasic.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepbasic.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepdefault.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepdefault.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepdefault.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepdefault.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepmon.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepmon.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepmon.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepmon.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepopts.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepopts.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepopts.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepopts.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/neprefine.c.html slepc-3.14.2+dfsg1/src/nep/interface/neprefine.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/neprefine.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/neprefine.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepregis.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepregis.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepresolv.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepresolv.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepresolv.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepresolv.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepsetup.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepsetup.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepsetup.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepsetup.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepsolve.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepsolve.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepsolve.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepsolve.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/interface/nepview.c.html slepc-3.14.2+dfsg1/src/nep/interface/nepview.c.html
--- slepc-3.14.1+dfsg1/src/nep/interface/nepview.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/interface/nepview.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/makefile.html slepc-3.14.2+dfsg1/src/nep/makefile.html
--- slepc-3.14.1+dfsg1/src/nep/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/index.html slepc-3.14.2+dfsg1/src/nep/tests/index.html
--- slepc-3.14.1+dfsg1/src/nep/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/makefile.html slepc-3.14.2+dfsg1/src/nep/tests/makefile.html --- slepc-3.14.1+dfsg1/src/nep/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test10.c.html slepc-3.14.2+dfsg1/src/nep/tests/test10.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test10.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test10.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test12.c.html slepc-3.14.2+dfsg1/src/nep/tests/test12.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test12.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test12.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test13.c.html slepc-3.14.2+dfsg1/src/nep/tests/test13.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test13.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test13.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test14.c.html slepc-3.14.2+dfsg1/src/nep/tests/test14.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test14.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test14.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test15.c.html slepc-3.14.2+dfsg1/src/nep/tests/test15.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test15.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test15.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test1.c.html slepc-3.14.2+dfsg1/src/nep/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test2.c.html slepc-3.14.2+dfsg1/src/nep/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test2f.F.html slepc-3.14.2+dfsg1/src/nep/tests/test2f.F.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test2f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test2f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test3.c.html slepc-3.14.2+dfsg1/src/nep/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test4.c.html slepc-3.14.2+dfsg1/src/nep/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test5.c.html slepc-3.14.2+dfsg1/src/nep/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test6.c.html slepc-3.14.2+dfsg1/src/nep/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test7.c.html slepc-3.14.2+dfsg1/src/nep/tests/test7.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test7.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test7.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test8.c.html slepc-3.14.2+dfsg1/src/nep/tests/test8.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test8.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test8.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tests/test9.c.html slepc-3.14.2+dfsg1/src/nep/tests/test9.c.html
--- slepc-3.14.1+dfsg1/src/nep/tests/test9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tests/test9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex20.c.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex20.c.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex20.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex20.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex20f90.F90.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex20f90.F90.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex20f90.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex20f90.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex21.c.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex21.c.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex21.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex21.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex22.c.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex22.c.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex22.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex22.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex22f90.F90.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex22f90.F90.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex22f90.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex22f90.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex27.c.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex27.c.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex27.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex27.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex27f90.F90.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex27f90.F90.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex27f90.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex27f90.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/ex42.c.html slepc-3.14.2+dfsg1/src/nep/tutorials/ex42.c.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/ex42.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/ex42.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/index.html slepc-3.14.2+dfsg1/src/nep/tutorials/index.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/makefile.html slepc-3.14.2+dfsg1/src/nep/tutorials/makefile.html --- slepc-3.14.1+dfsg1/src/nep/tutorials/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/tutorials/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/gun.c.html slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/gun.c.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/gun.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/gun.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/index.html slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/index.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Nonlinear Eigenvalue Problem Solvers - NEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/loaded_string.c.html slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/loaded_string.c.html --- slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/loaded_string.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/loaded_string.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/makefile.html slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/makefile.html
--- slepc-3.14.1+dfsg1/src/nep/tutorials/nlevp/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/nep/tutorials/nlevp/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90 slepc-3.14.2+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90
--- slepc-3.14.1+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/f90-mod/ftn-auto-interfaces/slepcpep.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,3 +1,176 @@
+      subroutine PEPCheckDefiniteQEP(a,b,c,d,e,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+       PetscInt d ! PetscInt
+       PetscInt e ! PetscInt
+        PetscErrorCode z
+       end subroutine PEPCheckDefiniteQEP
+      subroutine PEPSTOARSetLocking(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPSTOARSetLocking
+      subroutine PEPSTOARGetLocking(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPSTOARGetLocking
+      subroutine PEPSTOARSetDetectZeros(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPSTOARSetDetectZeros
+      subroutine PEPSTOARGetDetectZeros(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPSTOARGetDetectZeros
+      subroutine PEPSTOARSetLinearization(a,b,c,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPSTOARSetLinearization
+      subroutine PEPSTOARGetLinearization(a,b,c,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPSTOARGetLinearization
+      subroutine PEPSTOARSetDimensions(a,b,c,d,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
+        PetscErrorCode z
+       end subroutine PEPSTOARSetDimensions
+      subroutine PEPSTOARGetDimensions(a,b,c,d,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscInt b ! PetscInt
+       PetscInt c ! PetscInt
+       PetscInt d ! PetscInt
+        PetscErrorCode z
+       end subroutine PEPSTOARGetDimensions
+      subroutine PEPSTOARSetCheckEigenvalueType(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPSTOARSetCheckEigenvalueType
+      subroutine PEPSTOARGetCheckEigenvalueType(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPSTOARGetCheckEigenvalueType
+      subroutine PEPLinearSetLinearization(a,b,c,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPLinearSetLinearization
+      subroutine PEPLinearGetLinearization(a,b,c,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPLinearGetLinearization
+      subroutine PEPLinearSetExplicitMatrix(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPLinearSetExplicitMatrix
+      subroutine PEPLinearGetExplicitMatrix(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPLinearGetExplicitMatrix
+      subroutine PEPLinearSetEPS(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       EPS b ! EPS
+        PetscErrorCode z
+       end subroutine PEPLinearSetEPS
+      subroutine PEPLinearGetEPS(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       EPS b ! EPS
+        PetscErrorCode z
+       end subroutine PEPLinearGetEPS
+      subroutine PEPJDSetRestart(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPJDSetRestart
+      subroutine PEPJDGetRestart(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPJDGetRestart
+      subroutine PEPJDSetFix(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPJDSetFix
+      subroutine PEPJDGetFix(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscReal b ! PetscReal
+        PetscErrorCode z
+       end subroutine PEPJDGetFix
+      subroutine PEPJDSetReusePreconditioner(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPJDSetReusePreconditioner
+      subroutine PEPJDGetReusePreconditioner(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine PEPJDGetReusePreconditioner
+      subroutine PEPJDSetMinimalityIndex(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine PEPJDSetMinimalityIndex
+      subroutine PEPJDGetMinimalityIndex(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine PEPJDGetMinimalityIndex
+      subroutine PEPJDSetProjection(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PEPJDProjection b ! PEPJDProjection
+        PetscErrorCode z
+       end subroutine PEPJDSetProjection
+      subroutine PEPJDGetProjection(a,b,z)
+      use slepcpepdef
+       PEP a ! PEP
+       PEPJDProjection b ! PEPJDProjection
+        PetscErrorCode z
+       end subroutine PEPJDGetProjection
       subroutine PEPQArnoldiSetRestart(a,b,z)
       use slepcpepdef
        PEP a ! PEP
@@ -367,176 +540,3 @@
        PetscInt b ! PetscInt
         PetscErrorCode z
        end subroutine PEPAllocateSolution
-      subroutine PEPCheckDefiniteQEP(a,b,c,d,e,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-       PetscInt d ! PetscInt
-       PetscInt e ! PetscInt
-        PetscErrorCode z
-       end subroutine PEPCheckDefiniteQEP
-      subroutine PEPSTOARSetLocking(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPSTOARSetLocking
-      subroutine PEPSTOARGetLocking(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPSTOARGetLocking
-      subroutine PEPSTOARSetDetectZeros(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPSTOARSetDetectZeros
-      subroutine PEPSTOARGetDetectZeros(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPSTOARGetDetectZeros
-      subroutine PEPSTOARSetLinearization(a,b,c,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPSTOARSetLinearization
-      subroutine PEPSTOARGetLinearization(a,b,c,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPSTOARGetLinearization
-      subroutine PEPSTOARSetDimensions(a,b,c,d,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-        PetscErrorCode z
-       end subroutine PEPSTOARSetDimensions
-      subroutine PEPSTOARGetDimensions(a,b,c,d,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscInt b ! PetscInt
-       PetscInt c ! PetscInt
-       PetscInt d ! PetscInt
-        PetscErrorCode z
-       end subroutine PEPSTOARGetDimensions
-      subroutine PEPSTOARSetCheckEigenvalueType(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPSTOARSetCheckEigenvalueType
-      subroutine PEPSTOARGetCheckEigenvalueType(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPSTOARGetCheckEigenvalueType
-      subroutine PEPJDSetRestart(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPJDSetRestart
-      subroutine PEPJDGetRestart(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPJDGetRestart
-      subroutine PEPJDSetFix(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPJDSetFix
-      subroutine PEPJDGetFix(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPJDGetFix
-      subroutine PEPJDSetReusePreconditioner(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPJDSetReusePreconditioner
-      subroutine PEPJDGetReusePreconditioner(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPJDGetReusePreconditioner
-      subroutine PEPJDSetMinimalityIndex(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine PEPJDSetMinimalityIndex
-      subroutine PEPJDGetMinimalityIndex(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine PEPJDGetMinimalityIndex
-      subroutine PEPJDSetProjection(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PEPJDProjection b ! PEPJDProjection
-        PetscErrorCode z
-       end subroutine PEPJDSetProjection
-      subroutine PEPJDGetProjection(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PEPJDProjection b ! PEPJDProjection
-        PetscErrorCode z
-       end subroutine PEPJDGetProjection
-      subroutine PEPLinearSetLinearization(a,b,c,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPLinearSetLinearization
-      subroutine PEPLinearGetLinearization(a,b,c,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscReal b ! PetscReal
-       PetscReal c ! PetscReal
-        PetscErrorCode z
-       end subroutine PEPLinearGetLinearization
-      subroutine PEPLinearSetExplicitMatrix(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPLinearSetExplicitMatrix
-      subroutine PEPLinearGetExplicitMatrix(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine PEPLinearGetExplicitMatrix
-      subroutine PEPLinearSetEPS(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       EPS b ! EPS
-        PetscErrorCode z
-       end subroutine PEPLinearSetEPS
-      subroutine PEPLinearGetEPS(a,b,z)
-      use slepcpepdef
-       PEP a ! PEP
-       EPS b ! EPS
-        PetscErrorCode z
-       end subroutine PEPLinearGetEPS
diff -Nru slepc-3.14.1+dfsg1/src/pep/f90-mod/index.html slepc-3.14.2+dfsg1/src/pep/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/pep/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/pep/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/pep/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/f90-mod/slepcpep.h90.html slepc-3.14.2+dfsg1/src/pep/f90-mod/slepcpep.h90.html
--- slepc-3.14.1+dfsg1/src/pep/f90-mod/slepcpep.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/f90-mod/slepcpep.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/f90-mod/slepcpep.h.html slepc-3.14.2+dfsg1/src/pep/f90-mod/slepcpep.h.html
--- slepc-3.14.1+dfsg1/src/pep/f90-mod/slepcpep.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/f90-mod/slepcpep.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/index.html slepc-3.14.2+dfsg1/src/pep/impls/index.html
--- slepc-3.14.1+dfsg1/src/pep/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/jd/index.html slepc-3.14.2+dfsg1/src/pep/impls/jd/index.html --- slepc-3.14.1+dfsg1/src/pep/impls/jd/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/impls/jd/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/jd/makefile.html slepc-3.14.2+dfsg1/src/pep/impls/jd/makefile.html --- slepc-3.14.1+dfsg1/src/pep/impls/jd/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/impls/jd/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/jd/pjd.c.html slepc-3.14.2+dfsg1/src/pep/impls/jd/pjd.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/jd/pjd.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/jd/pjd.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/index.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/index.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/makefile.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/makefile.html --- slepc-3.14.1+dfsg1/src/pep/impls/krylov/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/pepkrylov.c.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/pepkrylov.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/pepkrylov.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/pepkrylov.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/pepkrylov.h.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/pepkrylov.h.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/pepkrylov.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/pepkrylov.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/qarnoldi/index.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/qarnoldi/index.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/qarnoldi/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/qarnoldi/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html --- slepc-3.14.1+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/qarnoldi/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/qarnoldi/qarnoldi.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/index.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/index.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/makefile.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/makefile.html --- slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/qslice.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/stoar/stoar.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/index.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/index.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/makefile.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/makefile.html --- slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/nrefine.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/krylov/toar/ptoar.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/linear/index.html slepc-3.14.2+dfsg1/src/pep/impls/linear/index.html
--- slepc-3.14.1+dfsg1/src/pep/impls/linear/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/linear/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/linear/linear.c.html slepc-3.14.2+dfsg1/src/pep/impls/linear/linear.c.html --- slepc-3.14.1+dfsg1/src/pep/impls/linear/linear.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/impls/linear/linear.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/linear/linear.h.html slepc-3.14.2+dfsg1/src/pep/impls/linear/linear.h.html
--- slepc-3.14.1+dfsg1/src/pep/impls/linear/linear.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/linear/linear.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/linear/makefile.html slepc-3.14.2+dfsg1/src/pep/impls/linear/makefile.html
--- slepc-3.14.1+dfsg1/src/pep/impls/linear/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/linear/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/linear/qeplin.c.html slepc-3.14.2+dfsg1/src/pep/impls/linear/qeplin.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/linear/qeplin.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/linear/qeplin.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/makefile.html slepc-3.14.2+dfsg1/src/pep/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/pep/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/impls/peputils.c.html slepc-3.14.2+dfsg1/src/pep/impls/peputils.c.html
--- slepc-3.14.1+dfsg1/src/pep/impls/peputils.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/impls/peputils.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/index.html slepc-3.14.2+dfsg1/src/pep/index.html
--- slepc-3.14.1+dfsg1/src/pep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/dlregispep.c.html slepc-3.14.2+dfsg1/src/pep/interface/dlregispep.c.html --- slepc-3.14.1+dfsg1/src/pep/interface/dlregispep.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/interface/dlregispep.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/index.html slepc-3.14.2+dfsg1/src/pep/interface/index.html
--- slepc-3.14.1+dfsg1/src/pep/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/makefile.html slepc-3.14.2+dfsg1/src/pep/interface/makefile.html --- slepc-3.14.1+dfsg1/src/pep/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepbasic.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepbasic.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/pepbasic.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepbasic.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepdefault.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepdefault.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/pepdefault.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepdefault.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepmon.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepmon.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/pepmon.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepmon.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepopts.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepopts.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/pepopts.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepopts.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/peprefine.c.html slepc-3.14.2+dfsg1/src/pep/interface/peprefine.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/peprefine.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/peprefine.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepregis.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepregis.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/pepregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepsetup.c slepc-3.14.2+dfsg1/src/pep/interface/pepsetup.c
--- slepc-3.14.1+dfsg1/src/pep/interface/pepsetup.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepsetup.c	2021-02-01 14:43:03.000000000 +0000
@@ -277,7 +277,7 @@
 PetscErrorCode PEPSetOperators(PEP pep,PetscInt nmat,Mat A[])
 {
   PetscErrorCode ierr;
-  PetscInt       i,n=0,m,m0=0;
+  PetscInt       i,n=0,m,m0=0,mloc,nloc,mloc0=0;
 
   PetscFunctionBegin;
   PetscValidHeaderSpecific(pep,PEP_CLASSID,1);
@@ -290,13 +290,16 @@
     PetscValidHeaderSpecific(A[i],MAT_CLASSID,3);
     PetscCheckSameComm(pep,1,A[i],3);
     ierr = MatGetSize(A[i],&m,&n);CHKERRQ(ierr);
-    if (m!=n) SETERRQ1(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_WRONG,"A[%D] is a non-square matrix",i);
-    if (!i) m0 = m;
-    if (m!=m0) SETERRQ(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_INCOMP,"Dimensions of matrices do not match with each other");
+    ierr = MatGetLocalSize(A[i],&mloc,&nloc);CHKERRQ(ierr);
+    if (m!=n) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_WRONG,"A[%D] is a non-square matrix (%D rows, %D cols)",i,m,n);
+    if (mloc!=nloc) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_WRONG,"A[%D] does not have equal row and column local sizes (%D, %D)",i,mloc,nloc);
+    if (!i) { m0 = m; mloc0 = mloc; }
+    if (m!=m0) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_INCOMP,"Dimensions of A[%D] do not match with previous matrices (%D, %D)",i,m,m0);
+    if (mloc!=mloc0) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_INCOMP,"Local dimensions of A[%D] do not match with previous matrices (%D, %D)",i,mloc,mloc0);
     ierr = PetscObjectReference((PetscObject)A[i]);CHKERRQ(ierr);
   }
 
-  if (pep->state && n!=pep->n) { ierr = PEPReset(pep);CHKERRQ(ierr); }
+  if (pep->state && (n!=pep->n || nloc!=pep->nloc)) { ierr = PEPReset(pep);CHKERRQ(ierr); }
   else if (pep->nmat) {
     ierr = MatDestroyMatrices(pep->nmat,&pep->A);CHKERRQ(ierr);
     ierr = PetscFree2(pep->pbc,pep->nrma);CHKERRQ(ierr);
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepsetup.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepsetup.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/pepsetup.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepsetup.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -282,201 +282,204 @@
 276: @*/
 277: PetscErrorCode PEPSetOperators(PEP pep,PetscInt nmat,Mat A[])
 278: {
-280:   PetscInt       i,n=0,m,m0=0;
+280:   PetscInt       i,n=0,m,m0=0,mloc,nloc,mloc0=0;
 
 285:   if (nmat <= 0) SETERRQ1(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_OUTOFRANGE,"Non-positive value of nmat: %D",nmat);
 286:   if (nmat <= 2) SETERRQ(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_OUTOFRANGE,"Cannot solve linear eigenproblems with PEP; use EPS instead");
 
 289:   for (i=0;i<nmat;i++) {
 292:     MatGetSize(A[i],&m,&n);
-293:     if (m!=n) SETERRQ1(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_WRONG,"A[%D] is a non-square matrix",i);
-294:     if (!i) m0 = m;
-295:     if (m!=m0) SETERRQ(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_INCOMP,"Dimensions of matrices do not match with each other");
-296:     PetscObjectReference((PetscObject)A[i]);
-297:   }
-
-299:   if (pep->state && n!=pep->n) { PEPReset(pep); }
-300:   else if (pep->nmat) {
-301:     MatDestroyMatrices(pep->nmat,&pep->A);
-302:     PetscFree2(pep->pbc,pep->nrma);
-303:     PetscFree(pep->solvematcoeffs);
-304:   }
-
-306:   PetscMalloc1(nmat,&pep->A);
-307:   PetscCalloc2(3*nmat,&pep->pbc,nmat,&pep->nrma);
-308:   PetscLogObjectMemory((PetscObject)pep,nmat*sizeof(Mat)+4*nmat*sizeof(PetscReal));
-309:   for (i=0;i<nmat;i++) {
-310:     pep->A[i]   = A[i];
-311:     pep->pbc[i] = 1.0;  /* default to monomial basis */
-312:   }
-313:   pep->nmat = nmat;
-314:   pep->state = PEP_STATE_INITIAL;
-315:   return(0);
-316: }
-
-318: /*@
-319:    PEPGetOperators - Gets the matrices associated with the polynomial eigensystem.
-
-321:    Not collective, though parallel Mats are returned if the PEP is parallel
-
-323:    Input Parameters:
-324: +  pep - the PEP context
-325: -  k   - the index of the requested matrix (starting in 0)
-
-327:    Output Parameter:
-328: .  A - the requested matrix
-
-330:    Level: intermediate
-
-332: .seealso: PEPSolve(), PEPSetOperators(), PEPGetNumMatrices()
-333: @*/
-334: PetscErrorCode PEPGetOperators(PEP pep,PetscInt k,Mat *A)
-335: {
-339:   if (k<0 || k>=pep->nmat) SETERRQ1(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_OUTOFRANGE,"k must be between 0 and %D",pep->nmat-1);
-340:   *A = pep->A[k];
-341:   return(0);
-342: }
-
-344: /*@
-345:    PEPGetNumMatrices - Returns the number of matrices stored in the PEP.
-
-347:    Not collective
-
-349:    Input Parameter:
-350: .  pep - the PEP context
-
-352:    Output Parameters:
-353: .  nmat - the number of matrices passed in PEPSetOperators()
-
-355:    Level: intermediate
-
-357: .seealso: PEPSetOperators()
-358: @*/
-359: PetscErrorCode PEPGetNumMatrices(PEP pep,PetscInt *nmat)
-360: {
-364:   *nmat = pep->nmat;
-365:   return(0);
-366: }
-
-368: /*@C
-369:    PEPSetInitialSpace - Specify a basis of vectors that constitute the initial
-370:    space, that is, the subspace from which the solver starts to iterate.
-
-372:    Collective on pep
-
-374:    Input Parameter:
-375: +  pep   - the polynomial eigensolver context
-376: .  n     - number of vectors
-377: -  is    - set of basis vectors of the initial space
-
-379:    Notes:
-380:    Some solvers start to iterate on a single vector (initial vector). In that case,
-381:    the other vectors are ignored.
-
-383:    These vectors do not persist from one PEPSolve() call to the other, so the
-384:    initial space should be set every time.
-
-386:    The vectors do not need to be mutually orthonormal, since they are explicitly
-387:    orthonormalized internally.
-
-389:    Common usage of this function is when the user can provide a rough approximation
-390:    of the wanted eigenspace. Then, convergence may be faster.
-
-392:    Level: intermediate
-393: @*/
-394: PetscErrorCode PEPSetInitialSpace(PEP pep,PetscInt n,Vec is[])
-395: {
-
-401:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_OUTOFRANGE,"Argument n cannot be negative");
-402:   if (n>0) {
-405:   }
-406:   SlepcBasisReference_Private(n,is,&pep->nini,&pep->IS);
-407:   if (n>0) pep->state = PEP_STATE_INITIAL;
-408:   return(0);
-409: }
-
-411: /*
-412:   PEPSetDimensions_Default - Set reasonable values for ncv, mpd if not set
-413:   by the user. This is called at setup.
-414:  */
-415: PetscErrorCode PEPSetDimensions_Default(PEP pep,PetscInt nev,PetscInt *ncv,PetscInt *mpd)
-416: {
-418:   PetscBool      krylov;
-419:   PetscInt       dim;
-
-422:   PetscObjectTypeCompareAny((PetscObject)pep,&krylov,PEPTOAR,PEPSTOAR,PEPQARNOLDI,"");
-423:   dim = (pep->nmat-1)*pep->n;
-424:   if (*ncv!=PETSC_DEFAULT) { /* ncv set */
-425:     if (krylov) {
-426:       if (*ncv<nev+1 && !(*ncv==nev && *ncv==dim)) SETERRQ(PetscObjectComm((PetscObject)pep),1,"The value of ncv must be at least nev+1");
-427:     } else {
-428:       if (*ncv<nev) SETERRQ(PetscObjectComm((PetscObject)pep),1,"The value of ncv must be at least nev");
-429:     }
-430:   } else if (*mpd!=PETSC_DEFAULT) { /* mpd set */
-431:     *ncv = PetscMin(dim,nev+(*mpd));
-432:   } else { /* neither set: defaults depend on nev being small or large */
-433:     if (nev<500) *ncv = PetscMin(dim,PetscMax(2*nev,nev+15));
-434:     else {
-435:       *mpd = 500;
-436:       *ncv = PetscMin(dim,nev+(*mpd));
-437:     }
-438:   }
-439:   if (*mpd==PETSC_DEFAULT) *mpd = *ncv;
-440:   return(0);
-441: }
-
-443: /*@
-444:    PEPAllocateSolution - Allocate memory storage for common variables such
-445:    as eigenvalues and eigenvectors.
-
-447:    Collective on pep
-
-449:    Input Parameters:
-450: +  pep   - eigensolver context
-451: -  extra - number of additional positions, used for methods that require a
-452:            working basis slightly larger than ncv
-
-454:    Developers Note:
-455:    This is SLEPC_EXTERN because it may be required by user plugin PEP
-456:    implementations.
-
-458:    Level: developer
-459: @*/
-460: PetscErrorCode PEPAllocateSolution(PEP pep,PetscInt extra)
-461: {
-463:   PetscInt       oldsize,newc,requested,requestedbv;
-464:   PetscLogDouble cnt;
-465:   Vec            t;
-
-468:   requested = (pep->lineariz? pep->ncv: pep->ncv*(pep->nmat-1)) + extra;
-469:   requestedbv = pep->ncv + extra;
-
-471:   /* oldsize is zero if this is the first time setup is called */
-472:   BVGetSizes(pep->V,NULL,NULL,&oldsize);
-
-474:   /* allocate space for eigenvalues and friends */
-475:   if (requested != oldsize || !pep->eigr) {
-476:     PetscFree4(pep->eigr,pep->eigi,pep->errest,pep->perm);
-477:     PetscMalloc4(requested,&pep->eigr,requested,&pep->eigi,requested,&pep->errest,requested,&pep->perm);
-478:     newc = PetscMax(0,requested-oldsize);
-479:     cnt = 2*newc*sizeof(PetscScalar) + newc*sizeof(PetscReal) + newc*sizeof(PetscInt);
-480:     PetscLogObjectMemory((PetscObject)pep,cnt);
-481:   }
-
-483:   /* allocate V */
-484:   if (!pep->V) { PEPGetBV(pep,&pep->V); }
-485:   if (!oldsize) {
-486:     if (!((PetscObject)(pep->V))->type_name) {
-487:       BVSetType(pep->V,BVSVEC);
-488:     }
-489:     STMatCreateVecsEmpty(pep->st,&t,NULL);
-490:     BVSetSizesFromVec(pep->V,t,requestedbv);
-491:     VecDestroy(&t);
-492:   } else {
-493:     BVResize(pep->V,requestedbv,PETSC_FALSE);
-494:   }
-495:   return(0);
-496: }
+293:     MatGetLocalSize(A[i],&mloc,&nloc);
+294:     if (m!=n) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_WRONG,"A[%D] is a non-square matrix (%D rows, %D cols)",i,m,n);
+295:     if (mloc!=nloc) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_WRONG,"A[%D] does not have equal row and column local sizes (%D, %D)",i,mloc,nloc);
+296:     if (!i) { m0 = m; mloc0 = mloc; }
+297:     if (m!=m0) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_INCOMP,"Dimensions of A[%D] do not match with previous matrices (%D, %D)",i,m,m0);
+298:     if (mloc!=mloc0) SETERRQ3(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_INCOMP,"Local dimensions of A[%D] do not match with previous matrices (%D, %D)",i,mloc,mloc0);
+299:     PetscObjectReference((PetscObject)A[i]);
+300:   }
+
+302:   if (pep->state && (n!=pep->n || nloc!=pep->nloc)) { PEPReset(pep); }
+303:   else if (pep->nmat) {
+304:     MatDestroyMatrices(pep->nmat,&pep->A);
+305:     PetscFree2(pep->pbc,pep->nrma);
+306:     PetscFree(pep->solvematcoeffs);
+307:   }
+
+309:   PetscMalloc1(nmat,&pep->A);
+310:   PetscCalloc2(3*nmat,&pep->pbc,nmat,&pep->nrma);
+311:   PetscLogObjectMemory((PetscObject)pep,nmat*sizeof(Mat)+4*nmat*sizeof(PetscReal));
+312:   for (i=0;i<nmat;i++) {
+313:     pep->A[i]   = A[i];
+314:     pep->pbc[i] = 1.0;  /* default to monomial basis */
+315:   }
+316:   pep->nmat = nmat;
+317:   pep->state = PEP_STATE_INITIAL;
+318:   return(0);
+319: }
+
+321: /*@
+322:    PEPGetOperators - Gets the matrices associated with the polynomial eigensystem.
+
+324:    Not collective, though parallel Mats are returned if the PEP is parallel
+
+326:    Input Parameters:
+327: +  pep - the PEP context
+328: -  k   - the index of the requested matrix (starting in 0)
+
+330:    Output Parameter:
+331: .  A - the requested matrix
+
+333:    Level: intermediate
+
+335: .seealso: PEPSolve(), PEPSetOperators(), PEPGetNumMatrices()
+336: @*/
+337: PetscErrorCode PEPGetOperators(PEP pep,PetscInt k,Mat *A)
+338: {
+342:   if (k<0 || k>=pep->nmat) SETERRQ1(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_OUTOFRANGE,"k must be between 0 and %D",pep->nmat-1);
+343:   *A = pep->A[k];
+344:   return(0);
+345: }
+
+347: /*@
+348:    PEPGetNumMatrices - Returns the number of matrices stored in the PEP.
+
+350:    Not collective
+
+352:    Input Parameter:
+353: .  pep - the PEP context
+
+355:    Output Parameters:
+356: .  nmat - the number of matrices passed in PEPSetOperators()
+
+358:    Level: intermediate
+
+360: .seealso: PEPSetOperators()
+361: @*/
+362: PetscErrorCode PEPGetNumMatrices(PEP pep,PetscInt *nmat)
+363: {
+367:   *nmat = pep->nmat;
+368:   return(0);
+369: }
+
+371: /*@C
+372:    PEPSetInitialSpace - Specify a basis of vectors that constitute the initial
+373:    space, that is, the subspace from which the solver starts to iterate.
+
+375:    Collective on pep
+
+377:    Input Parameter:
+378: +  pep   - the polynomial eigensolver context
+379: .  n     - number of vectors
+380: -  is    - set of basis vectors of the initial space
+
+382:    Notes:
+383:    Some solvers start to iterate on a single vector (initial vector). In that case,
+384:    the other vectors are ignored.
+
+386:    These vectors do not persist from one PEPSolve() call to the other, so the
+387:    initial space should be set every time.
+
+389:    The vectors do not need to be mutually orthonormal, since they are explicitly
+390:    orthonormalized internally.
+
+392:    Common usage of this function is when the user can provide a rough approximation
+393:    of the wanted eigenspace. Then, convergence may be faster.
+
+395:    Level: intermediate
+396: @*/
+397: PetscErrorCode PEPSetInitialSpace(PEP pep,PetscInt n,Vec is[])
+398: {
+
+404:   if (n<0) SETERRQ(PetscObjectComm((PetscObject)pep),PETSC_ERR_ARG_OUTOFRANGE,"Argument n cannot be negative");
+405:   if (n>0) {
+408:   }
+409:   SlepcBasisReference_Private(n,is,&pep->nini,&pep->IS);
+410:   if (n>0) pep->state = PEP_STATE_INITIAL;
+411:   return(0);
+412: }
+
+414: /*
+415:   PEPSetDimensions_Default - Set reasonable values for ncv, mpd if not set
+416:   by the user. This is called at setup.
+417:  */
+418: PetscErrorCode PEPSetDimensions_Default(PEP pep,PetscInt nev,PetscInt *ncv,PetscInt *mpd)
+419: {
+421:   PetscBool      krylov;
+422:   PetscInt       dim;
+
+425:   PetscObjectTypeCompareAny((PetscObject)pep,&krylov,PEPTOAR,PEPSTOAR,PEPQARNOLDI,"");
+426:   dim = (pep->nmat-1)*pep->n;
+427:   if (*ncv!=PETSC_DEFAULT) { /* ncv set */
+428:     if (krylov) {
+429:       if (*ncv<nev+1 && !(*ncv==nev && *ncv==dim)) SETERRQ(PetscObjectComm((PetscObject)pep),1,"The value of ncv must be at least nev+1");
+430:     } else {
+431:       if (*ncv<nev) SETERRQ(PetscObjectComm((PetscObject)pep),1,"The value of ncv must be at least nev");
+432:     }
+433:   } else if (*mpd!=PETSC_DEFAULT) { /* mpd set */
+434:     *ncv = PetscMin(dim,nev+(*mpd));
+435:   } else { /* neither set: defaults depend on nev being small or large */
+436:     if (nev<500) *ncv = PetscMin(dim,PetscMax(2*nev,nev+15));
+437:     else {
+438:       *mpd = 500;
+439:       *ncv = PetscMin(dim,nev+(*mpd));
+440:     }
+441:   }
+442:   if (*mpd==PETSC_DEFAULT) *mpd = *ncv;
+443:   return(0);
+444: }
+
+446: /*@
+447:    PEPAllocateSolution - Allocate memory storage for common variables such
+448:    as eigenvalues and eigenvectors.
+
+450:    Collective on pep
+
+452:    Input Parameters:
+453: +  pep   - eigensolver context
+454: -  extra - number of additional positions, used for methods that require a
+455:            working basis slightly larger than ncv
+
+457:    Developers Note:
+458:    This is SLEPC_EXTERN because it may be required by user plugin PEP
+459:    implementations.
+
+461:    Level: developer
+462: @*/
+463: PetscErrorCode PEPAllocateSolution(PEP pep,PetscInt extra)
+464: {
+466:   PetscInt       oldsize,newc,requested,requestedbv;
+467:   PetscLogDouble cnt;
+468:   Vec            t;
+
+471:   requested = (pep->lineariz? pep->ncv: pep->ncv*(pep->nmat-1)) + extra;
+472:   requestedbv = pep->ncv + extra;
+
+474:   /* oldsize is zero if this is the first time setup is called */
+475:   BVGetSizes(pep->V,NULL,NULL,&oldsize);
+
+477:   /* allocate space for eigenvalues and friends */
+478:   if (requested != oldsize || !pep->eigr) {
+479:     PetscFree4(pep->eigr,pep->eigi,pep->errest,pep->perm);
+480:     PetscMalloc4(requested,&pep->eigr,requested,&pep->eigi,requested,&pep->errest,requested,&pep->perm);
+481:     newc = PetscMax(0,requested-oldsize);
+482:     cnt = 2*newc*sizeof(PetscScalar) + newc*sizeof(PetscReal) + newc*sizeof(PetscInt);
+483:     PetscLogObjectMemory((PetscObject)pep,cnt);
+484:   }
+
+486:   /* allocate V */
+487:   if (!pep->V) { PEPGetBV(pep,&pep->V); }
+488:   if (!oldsize) {
+489:     if (!((PetscObject)(pep->V))->type_name) {
+490:       BVSetType(pep->V,BVSVEC);
+491:     }
+492:     STMatCreateVecsEmpty(pep->st,&t,NULL);
+493:     BVSetSizesFromVec(pep->V,t,requestedbv);
+494:     VecDestroy(&t);
+495:   } else {
+496:     BVResize(pep->V,requestedbv,PETSC_FALSE);
+497:   }
+498:   return(0);
+499: }
 
 
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepsolve.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepsolve.c.html --- slepc-3.14.1+dfsg1/src/pep/interface/pepsolve.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/interface/pepsolve.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/interface/pepview.c.html slepc-3.14.2+dfsg1/src/pep/interface/pepview.c.html
--- slepc-3.14.1+dfsg1/src/pep/interface/pepview.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/interface/pepview.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/makefile.html slepc-3.14.2+dfsg1/src/pep/makefile.html
--- slepc-3.14.1+dfsg1/src/pep/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/index.html slepc-3.14.2+dfsg1/src/pep/tests/index.html
--- slepc-3.14.1+dfsg1/src/pep/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/makefile.html slepc-3.14.2+dfsg1/src/pep/tests/makefile.html --- slepc-3.14.1+dfsg1/src/pep/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test10.c.html slepc-3.14.2+dfsg1/src/pep/tests/test10.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test10.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test10.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test11.c.html slepc-3.14.2+dfsg1/src/pep/tests/test11.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test11.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test11.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test1.c.html slepc-3.14.2+dfsg1/src/pep/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test2.c.html slepc-3.14.2+dfsg1/src/pep/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test3.c.html slepc-3.14.2+dfsg1/src/pep/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test3f.F.html slepc-3.14.2+dfsg1/src/pep/tests/test3f.F.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test3f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test3f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test4.c.html slepc-3.14.2+dfsg1/src/pep/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test5.c.html slepc-3.14.2+dfsg1/src/pep/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test6.c.html slepc-3.14.2+dfsg1/src/pep/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test7.c.html slepc-3.14.2+dfsg1/src/pep/tests/test7.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test7.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test7.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test8.c.html slepc-3.14.2+dfsg1/src/pep/tests/test8.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test8.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test8.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tests/test9.c.html slepc-3.14.2+dfsg1/src/pep/tests/test9.c.html
--- slepc-3.14.1+dfsg1/src/pep/tests/test9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tests/test9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/ex16.c slepc-3.14.2+dfsg1/src/pep/tutorials/ex16.c
--- slepc-3.14.1+dfsg1/src/pep/tutorials/ex16.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/ex16.c	2021-02-01 14:43:03.000000000 +0000
@@ -188,6 +188,7 @@
          suffix: 1_linear_symm
          args: -pep_type linear -pep_linear_explicitmatrix -pep_linear_eps_gen_indefinite -pep_scale scalar
          requires: !single
+         TODO: fails occasionally in new runners
       test:
          suffix: 1_stoar
          args: -pep_type stoar -pep_scale scalar
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/ex16.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/ex16.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/ex16.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/ex16.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -200,16 +200,17 @@
 188:          suffix: 1_linear_symm
 189:          args: -pep_type linear -pep_linear_explicitmatrix -pep_linear_eps_gen_indefinite -pep_scale scalar
 190:          requires: !single
-191:       test:
-192:          suffix: 1_stoar
-193:          args: -pep_type stoar -pep_scale scalar
-194:          requires: double !cuda
-195:       test:
-196:          suffix: 1_stoar_t
-197:          args: -pep_type stoar -pep_scale scalar -st_transform
-198:          requires: double !cuda
+191:          TODO: fails occasionally in new runners
+192:       test:
+193:          suffix: 1_stoar
+194:          args: -pep_type stoar -pep_scale scalar
+195:          requires: double !cuda
+196:       test:
+197:          suffix: 1_stoar_t
+198:          args: -pep_type stoar -pep_scale scalar -st_transform
+199:          requires: double !cuda
 
-200: TEST*/
+201: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/ex16f90.F90.html slepc-3.14.2+dfsg1/src/pep/tutorials/ex16f90.F90.html --- slepc-3.14.1+dfsg1/src/pep/tutorials/ex16f90.F90.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/tutorials/ex16f90.F90.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/ex17.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/ex17.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/ex17.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/ex17.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/ex28.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/ex28.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/ex28.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/ex28.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/ex38.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/ex38.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/ex38.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/ex38.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/index.html slepc-3.14.2+dfsg1/src/pep/tutorials/index.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/makefile.html slepc-3.14.2+dfsg1/src/pep/tutorials/makefile.html --- slepc-3.14.1+dfsg1/src/pep/tutorials/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/tutorials/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_1d.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_1d.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_1d.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_1d.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_2d.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_2d.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_2d.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/acoustic_wave_2d.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/butterfly.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/butterfly.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/butterfly.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/butterfly.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/damped_beam.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/damped_beam.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/damped_beam.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/damped_beam.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/index.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/index.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Polynomial Eigenvalue Problem Solvers - PEP: Examples NLEVP

diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/loaded_string.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/loaded_string.c.html --- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/loaded_string.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/loaded_string.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/makefile.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/makefile.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/output/spring_3_alt.out slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/output/spring_3_alt.out
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/output/spring_3_alt.out	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/output/spring_3_alt.out	1970-01-01 00:00:00.000000000 +0000
@@ -1,8 +0,0 @@
-
-Damped mass-spring system, n=300 mu=1. tau=10. kappa=5.
-
- All requested eigenvalues computed up to the required tolerance:
-     -10.09814, -10.04732, -9.99861, -9.95203, -9.90759, -9.86527, -9.82510, -9.78708, 
-     -9.75120, -9.71748, -9.68592, -9.65651, -9.62928, -9.60421, -9.58131, -9.56058, 
-     -9.54203, -9.52565, -9.51146
-
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/pdde_stability.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/pdde_stability.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/pdde_stability.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/pdde_stability.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/planar_waveguide.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/planar_waveguide.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/planar_waveguide.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/planar_waveguide.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/sleeper.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/sleeper.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/sleeper.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/sleeper.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/spring.c slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/spring.c
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/spring.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/spring.c	2021-02-01 14:43:03.000000000 +0000
@@ -159,6 +159,7 @@
    test:
       suffix: 3
       args: -n 300 -pep_hermitian -pep_interval -10.1,-9.5 -pep_type stoar -st_type sinvert -st_pc_type cholesky -terse
+      filter: sed -e "s/52565/52566/" | sed -e "s/90758/90759/"
 
    test:
       suffix: 4
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/spring.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/spring.c.html
--- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/spring.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/spring.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -171,24 +171,25 @@
 159:    test:
 160:       suffix: 3
 161:       args: -n 300 -pep_hermitian -pep_interval -10.1,-9.5 -pep_type stoar -st_type sinvert -st_pc_type cholesky -terse
+162:       filter: sed -e "s/52565/52566/" | sed -e "s/90758/90759/"
 
-163:    test:
-164:       suffix: 4
-165:       args: -n 300 -pep_hyperbolic -pep_interval -9.6,-.527 -pep_type stoar -st_type sinvert -st_pc_type cholesky -terse
-166:       requires: !single
-167:       timeoutfactor: 2
-
-169:    test:
-170:       suffix: 5
-171:       args: -n 300 -pep_hyperbolic -pep_interval -.506,-.3 -pep_type stoar -st_type sinvert -st_pc_type cholesky -pep_stoar_nev 11 -terse
-172:       requires: !single
-
-174:    test:
-175:       suffix: 6
-176:       args: -n 24 -pep_ncv 18 -pep_target -.5 -terse -pep_type jd -pep_jd_restart .6 -pep_jd_fix .001
-177:       requires: !single
+164:    test:
+165:       suffix: 4
+166:       args: -n 300 -pep_hyperbolic -pep_interval -9.6,-.527 -pep_type stoar -st_type sinvert -st_pc_type cholesky -terse
+167:       requires: !single
+168:       timeoutfactor: 2
+
+170:    test:
+171:       suffix: 5
+172:       args: -n 300 -pep_hyperbolic -pep_interval -.506,-.3 -pep_type stoar -st_type sinvert -st_pc_type cholesky -pep_stoar_nev 11 -terse
+173:       requires: !single
+
+175:    test:
+176:       suffix: 6
+177:       args: -n 24 -pep_ncv 18 -pep_target -.5 -terse -pep_type jd -pep_jd_restart .6 -pep_jd_fix .001
+178:       requires: !single
 
-179: TEST*/
+180: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/wiresaw.c.html slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/wiresaw.c.html --- slepc-3.14.1+dfsg1/src/pep/tutorials/nlevp/wiresaw.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/pep/tutorials/nlevp/wiresaw.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90 slepc-3.14.2+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90
--- slepc-3.14.1+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/f90-mod/ftn-auto-interfaces/slepcsvd.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,39 +1,27 @@
-      subroutine SVDPRIMMESetBlockSize(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine SVDPRIMMESetBlockSize
-      subroutine SVDPRIMMEGetBlockSize(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine SVDPRIMMEGetBlockSize
-      subroutine SVDPRIMMESetMethod(a,b,z)
+      subroutine SVDCyclicSetExplicitMatrix(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDPRIMMEMethod b ! SVDPRIMMEMethod
+       PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine SVDPRIMMESetMethod
-      subroutine SVDPRIMMEGetMethod(a,b,z)
+       end subroutine SVDCyclicSetExplicitMatrix
+      subroutine SVDCyclicGetExplicitMatrix(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       SVDPRIMMEMethod b ! SVDPRIMMEMethod
+       PetscBool b ! PetscBool
         PetscErrorCode z
-       end subroutine SVDPRIMMEGetMethod
-      subroutine SVDLanczosSetOneSide(a,b,z)
+       end subroutine SVDCyclicGetExplicitMatrix
+      subroutine SVDCyclicSetEPS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
+       EPS b ! EPS
         PetscErrorCode z
-       end subroutine SVDLanczosSetOneSide
-      subroutine SVDLanczosGetOneSide(a,b,z)
+       end subroutine SVDCyclicSetEPS
+      subroutine SVDCyclicGetEPS(a,b,z)
       use slepcsvddef
        SVD a ! SVD
-       PetscBool b ! PetscBool
+       EPS b ! EPS
         PetscErrorCode z
-       end subroutine SVDLanczosGetOneSide
+       end subroutine SVDCyclicGetEPS
       subroutine SVDCrossSetExplicitMatrix(a,b,z)
       use slepcsvddef
        SVD a ! SVD
@@ -58,42 +46,6 @@
        EPS b ! EPS
         PetscErrorCode z
        end subroutine SVDCrossGetEPS
-      subroutine SVDTRLanczosSetOneSide(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine SVDTRLanczosSetOneSide
-      subroutine SVDTRLanczosGetOneSide(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine SVDTRLanczosGetOneSide
-      subroutine SVDCyclicSetExplicitMatrix(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine SVDCyclicSetExplicitMatrix
-      subroutine SVDCyclicGetExplicitMatrix(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine SVDCyclicGetExplicitMatrix
-      subroutine SVDCyclicSetEPS(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       EPS b ! EPS
-        PetscErrorCode z
-       end subroutine SVDCyclicSetEPS
-      subroutine SVDCyclicGetEPS(a,b,z)
-      use slepcsvddef
-       SVD a ! SVD
-       EPS b ! EPS
-        PetscErrorCode z
-       end subroutine SVDCyclicGetEPS
       subroutine SVDConvergedReasonViewFromOptions(a,z)
       use slepcsvddef
        SVD a ! SVD
@@ -295,3 +247,51 @@
        PetscInt b ! PetscInt
         PetscErrorCode z
        end subroutine SVDAllocateSolution
+      subroutine SVDPRIMMESetBlockSize(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine SVDPRIMMESetBlockSize
+      subroutine SVDPRIMMEGetBlockSize(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine SVDPRIMMEGetBlockSize
+      subroutine SVDPRIMMESetMethod(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       SVDPRIMMEMethod b ! SVDPRIMMEMethod
+        PetscErrorCode z
+       end subroutine SVDPRIMMESetMethod
+      subroutine SVDPRIMMEGetMethod(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       SVDPRIMMEMethod b ! SVDPRIMMEMethod
+        PetscErrorCode z
+       end subroutine SVDPRIMMEGetMethod
+      subroutine SVDTRLanczosSetOneSide(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine SVDTRLanczosSetOneSide
+      subroutine SVDTRLanczosGetOneSide(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine SVDTRLanczosGetOneSide
+      subroutine SVDLanczosSetOneSide(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine SVDLanczosSetOneSide
+      subroutine SVDLanczosGetOneSide(a,b,z)
+      use slepcsvddef
+       SVD a ! SVD
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine SVDLanczosGetOneSide
diff -Nru slepc-3.14.1+dfsg1/src/svd/f90-mod/index.html slepc-3.14.2+dfsg1/src/svd/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/svd/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/svd/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/svd/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/f90-mod/slepcsvd.h90.html slepc-3.14.2+dfsg1/src/svd/f90-mod/slepcsvd.h90.html
--- slepc-3.14.1+dfsg1/src/svd/f90-mod/slepcsvd.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/f90-mod/slepcsvd.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/f90-mod/slepcsvd.h.html slepc-3.14.2+dfsg1/src/svd/f90-mod/slepcsvd.h.html
--- slepc-3.14.1+dfsg1/src/svd/f90-mod/slepcsvd.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/f90-mod/slepcsvd.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cross/cross.c.html slepc-3.14.2+dfsg1/src/svd/impls/cross/cross.c.html
--- slepc-3.14.1+dfsg1/src/svd/impls/cross/cross.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/cross/cross.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cross/index.html slepc-3.14.2+dfsg1/src/svd/impls/cross/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/cross/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/cross/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cross/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/cross/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/cross/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/cross/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cyclic.c.html slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cyclic.c.html
--- slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cyclic.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cyclic.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html
--- slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cycliccuda/cycliccuda.cu.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cycliccuda/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cycliccuda/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cyclic.h.html slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cyclic.h.html
--- slepc-3.14.1+dfsg1/src/svd/impls/cyclic/cyclic.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/cyclic/cyclic.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cyclic/index.html slepc-3.14.2+dfsg1/src/svd/impls/cyclic/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/cyclic/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/cyclic/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/cyclic/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/cyclic/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/cyclic/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/cyclic/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/elemental/index.html slepc-3.14.2+dfsg1/src/svd/impls/external/elemental/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/external/elemental/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/elemental/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/elemental/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/external/elemental/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/external/elemental/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/external/elemental/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/elemental/svdelemen.cxx.html slepc-3.14.2+dfsg1/src/svd/impls/external/elemental/svdelemen.cxx.html
--- slepc-3.14.1+dfsg1/src/svd/impls/external/elemental/svdelemen.cxx.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/elemental/svdelemen.cxx.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/index.html slepc-3.14.2+dfsg1/src/svd/impls/external/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/external/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/external/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/external/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/external/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/primme/index.html slepc-3.14.2+dfsg1/src/svd/impls/external/primme/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/external/primme/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/primme/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/primme/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/external/primme/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/external/primme/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/external/primme/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/primme/svdprimme.c.html slepc-3.14.2+dfsg1/src/svd/impls/external/primme/svdprimme.c.html
--- slepc-3.14.1+dfsg1/src/svd/impls/external/primme/svdprimme.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/primme/svdprimme.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/index.html slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/svdscalap.c slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/svdscalap.c
--- slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/svdscalap.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/svdscalap.c	2021-02-01 14:43:03.000000000 +0000
@@ -47,16 +47,25 @@
   Mat_ScaLAPACK  *a = (Mat_ScaLAPACK*)A->data,*q,*z;
   PetscScalar    *work,minlwork;
   PetscBLASInt   info,lwork=-1,one=1;
+  PetscInt       M,N,m,n,mn;
 #if defined(PETSC_USE_COMPLEX)
   PetscBLASInt   lrwork;
   PetscReal      *rwork,dummy;
 #endif
 
   PetscFunctionBegin;
-  ierr = MatDuplicate(A,MAT_DO_NOT_COPY_VALUES,&Z);CHKERRQ(ierr);
+  ierr = MatGetSize(A,&M,&N);CHKERRQ(ierr);
+  ierr = MatGetLocalSize(A,&m,&n);CHKERRQ(ierr);
+  mn = (M>=N)? n: m;
+  ierr = MatCreate(PetscObjectComm((PetscObject)A),&Z);CHKERRQ(ierr);
+  ierr = MatSetSizes(Z,m,mn,PETSC_DECIDE,PETSC_DECIDE);CHKERRQ(ierr);
+  ierr = MatSetType(Z,MATSCALAPACK);CHKERRQ(ierr);
+  ierr = MatSetUp(Z);CHKERRQ(ierr);
+  ierr = MatAssemblyBegin(Z,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
+  ierr = MatAssemblyEnd(Z,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
   z = (Mat_ScaLAPACK*)Z->data;
   ierr = MatCreate(PetscObjectComm((PetscObject)A),&QT);CHKERRQ(ierr);
-  ierr = MatSetSizes(QT,A->cmap->n,A->cmap->n,PETSC_DECIDE,PETSC_DECIDE);CHKERRQ(ierr);
+  ierr = MatSetSizes(QT,mn,n,PETSC_DECIDE,PETSC_DECIDE);CHKERRQ(ierr);
   ierr = MatSetType(QT,MATSCALAPACK);CHKERRQ(ierr);
   ierr = MatSetUp(QT);CHKERRQ(ierr);
   ierr = MatAssemblyBegin(QT,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
@@ -67,7 +76,7 @@
   /* allocate workspace */
   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,&minlwork,&lwork,&info));
   PetscCheckScaLapackInfo("gesvd",info);
-  ierr = PetscBLASIntCast(minlwork,&lwork);CHKERRQ(ierr);
+  ierr = PetscBLASIntCast((PetscInt)minlwork,&lwork);CHKERRQ(ierr);
   ierr = PetscMalloc1(lwork,&work);CHKERRQ(ierr);
   /* call computational routine */
   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,work,&lwork,&info));
@@ -77,7 +86,7 @@
   /* allocate workspace */
   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,&minlwork,&lwork,&dummy,&info));
   PetscCheckScaLapackInfo("gesvd",info);
-  ierr = PetscBLASIntCast(minlwork,&lwork);CHKERRQ(ierr);
+  ierr = PetscBLASIntCast((PetscInt)PetscRealPart(minlwork),&lwork);CHKERRQ(ierr);
   lrwork = 1+4*PetscMax(a->M,a->N);
   ierr = PetscMalloc2(lwork,&work,lrwork,&rwork);CHKERRQ(ierr);
   /* call computational routine */
@@ -86,15 +95,20 @@
   ierr = PetscFree2(work,rwork);CHKERRQ(ierr);
 #endif
 
-  ierr = BVGetMat(svd->U,&U);CHKERRQ(ierr);
-  ierr = MatConvert(Z,MATDENSE,MAT_REUSE_MATRIX,&U);CHKERRQ(ierr);
-  ierr = BVRestoreMat(svd->U,&U);CHKERRQ(ierr);
-  ierr = MatDestroy(&Z);CHKERRQ(ierr);
   ierr = MatHermitianTranspose(QT,MAT_INITIAL_MATRIX,&Q);CHKERRQ(ierr);
   ierr = MatDestroy(&QT);CHKERRQ(ierr);
+  ierr = BVGetMat(svd->U,&U);CHKERRQ(ierr);
   ierr = BVGetMat(svd->V,&V);CHKERRQ(ierr);
-  ierr = MatConvert(Q,MATDENSE,MAT_REUSE_MATRIX,&V);CHKERRQ(ierr);
+  if (M>=N) {
+    ierr = MatConvert(Z,MATDENSE,MAT_REUSE_MATRIX,&U);CHKERRQ(ierr);
+    ierr = MatConvert(Q,MATDENSE,MAT_REUSE_MATRIX,&V);CHKERRQ(ierr);
+  } else {
+    ierr = MatConvert(Q,MATDENSE,MAT_REUSE_MATRIX,&U);CHKERRQ(ierr);
+    ierr = MatConvert(Z,MATDENSE,MAT_REUSE_MATRIX,&V);CHKERRQ(ierr);
+  }
+  ierr = BVRestoreMat(svd->U,&U);CHKERRQ(ierr);
   ierr = BVRestoreMat(svd->V,&V);CHKERRQ(ierr);
+  ierr = MatDestroy(&Z);CHKERRQ(ierr);
   ierr = MatDestroy(&Q);CHKERRQ(ierr);
 
   svd->nconv  = svd->ncv;
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/svdscalap.c.html slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/svdscalap.c.html
--- slepc-3.14.1+dfsg1/src/svd/impls/external/scalapack/svdscalap.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/external/scalapack/svdscalap.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -57,85 +57,99 @@
  47:   Mat_ScaLAPACK  *a = (Mat_ScaLAPACK*)A->data,*q,*z;
  48:   PetscScalar    *work,minlwork;
  49:   PetscBLASInt   info,lwork=-1,one=1;
- 50: #if defined(PETSC_USE_COMPLEX)
- 51:   PetscBLASInt   lrwork;
- 52:   PetscReal      *rwork,dummy;
- 53: #endif
-
- 56:   MatDuplicate(A,MAT_DO_NOT_COPY_VALUES,&Z);
- 57:   z = (Mat_ScaLAPACK*)Z->data;
- 58:   MatCreate(PetscObjectComm((PetscObject)A),&QT);
- 59:   MatSetSizes(QT,A->cmap->n,A->cmap->n,PETSC_DECIDE,PETSC_DECIDE);
- 60:   MatSetType(QT,MATSCALAPACK);
- 61:   MatSetUp(QT);
- 62:   MatAssemblyBegin(QT,MAT_FINAL_ASSEMBLY);
- 63:   MatAssemblyEnd(QT,MAT_FINAL_ASSEMBLY);
- 64:   q = (Mat_ScaLAPACK*)QT->data;
-
- 66: #if !defined(PETSC_USE_COMPLEX)
- 67:   /* allocate workspace */
- 68:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,&minlwork,&lwork,&info));
- 70:   PetscBLASIntCast(minlwork,&lwork);
- 71:   PetscMalloc1(lwork,&work);
- 72:   /* call computational routine */
- 73:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,work,&lwork,&info));
- 75:   PetscFree(work);
- 76: #else
- 77:   /* allocate workspace */
- 78:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,&minlwork,&lwork,&dummy,&info));
- 80:   PetscBLASIntCast(minlwork,&lwork);
- 81:   lrwork = 1+4*PetscMax(a->M,a->N);
- 82:   PetscMalloc2(lwork,&work,lrwork,&rwork);
- 83:   /* call computational routine */
- 84:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,work,&lwork,rwork,&info));
- 86:   PetscFree2(work,rwork);
- 87: #endif
-
- 89:   BVGetMat(svd->U,&U);
- 90:   MatConvert(Z,MATDENSE,MAT_REUSE_MATRIX,&U);
- 91:   BVRestoreMat(svd->U,&U);
- 92:   MatDestroy(&Z);
- 93:   MatHermitianTranspose(QT,MAT_INITIAL_MATRIX,&Q);
- 94:   MatDestroy(&QT);
- 95:   BVGetMat(svd->V,&V);
- 96:   MatConvert(Q,MATDENSE,MAT_REUSE_MATRIX,&V);
- 97:   BVRestoreMat(svd->V,&V);
- 98:   MatDestroy(&Q);
-
-100:   svd->nconv  = svd->ncv;
-101:   svd->its    = 1;
-102:   svd->reason = SVD_CONVERGED_TOL;
-103:   return(0);
-104: }
-
-106: PetscErrorCode SVDDestroy_ScaLAPACK(SVD svd)
-107: {
-
-111:   PetscFree(svd->data);
-112:   return(0);
-113: }
-
-115: PetscErrorCode SVDReset_ScaLAPACK(SVD svd)
-116: {
-118:   SVD_ScaLAPACK  *ctx = (SVD_ScaLAPACK*)svd->data;
-
-121:   MatDestroy(&ctx->As);
-122:   return(0);
-123: }
-
-125: SLEPC_EXTERN PetscErrorCode SVDCreate_ScaLAPACK(SVD svd)
-126: {
-128:   SVD_ScaLAPACK  *ctx;
-
-131:   PetscNewLog(svd,&ctx);
-132:   svd->data = (void*)ctx;
-
-134:   svd->ops->solve          = SVDSolve_ScaLAPACK;
-135:   svd->ops->setup          = SVDSetUp_ScaLAPACK;
-136:   svd->ops->destroy        = SVDDestroy_ScaLAPACK;
-137:   svd->ops->reset          = SVDReset_ScaLAPACK;
-138:   return(0);
-139: }
+ 50:   PetscInt       M,N,m,n,mn;
+ 51: #if defined(PETSC_USE_COMPLEX)
+ 52:   PetscBLASInt   lrwork;
+ 53:   PetscReal      *rwork,dummy;
+ 54: #endif
+
+ 57:   MatGetSize(A,&M,&N);
+ 58:   MatGetLocalSize(A,&m,&n);
+ 59:   mn = (M>=N)? n: m;
+ 60:   MatCreate(PetscObjectComm((PetscObject)A),&Z);
+ 61:   MatSetSizes(Z,m,mn,PETSC_DECIDE,PETSC_DECIDE);
+ 62:   MatSetType(Z,MATSCALAPACK);
+ 63:   MatSetUp(Z);
+ 64:   MatAssemblyBegin(Z,MAT_FINAL_ASSEMBLY);
+ 65:   MatAssemblyEnd(Z,MAT_FINAL_ASSEMBLY);
+ 66:   z = (Mat_ScaLAPACK*)Z->data;
+ 67:   MatCreate(PetscObjectComm((PetscObject)A),&QT);
+ 68:   MatSetSizes(QT,mn,n,PETSC_DECIDE,PETSC_DECIDE);
+ 69:   MatSetType(QT,MATSCALAPACK);
+ 70:   MatSetUp(QT);
+ 71:   MatAssemblyBegin(QT,MAT_FINAL_ASSEMBLY);
+ 72:   MatAssemblyEnd(QT,MAT_FINAL_ASSEMBLY);
+ 73:   q = (Mat_ScaLAPACK*)QT->data;
+
+ 75: #if !defined(PETSC_USE_COMPLEX)
+ 76:   /* allocate workspace */
+ 77:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,&minlwork,&lwork,&info));
+ 79:   PetscBLASIntCast((PetscInt)minlwork,&lwork);
+ 80:   PetscMalloc1(lwork,&work);
+ 81:   /* call computational routine */
+ 82:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,work,&lwork,&info));
+ 84:   PetscFree(work);
+ 85: #else
+ 86:   /* allocate workspace */
+ 87:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,&minlwork,&lwork,&dummy,&info));
+ 89:   PetscBLASIntCast((PetscInt)PetscRealPart(minlwork),&lwork);
+ 90:   lrwork = 1+4*PetscMax(a->M,a->N);
+ 91:   PetscMalloc2(lwork,&work,lrwork,&rwork);
+ 92:   /* call computational routine */
+ 93:   PetscStackCallBLAS("SCALAPACKgesvd",SCALAPACKgesvd_("V","V",&a->M,&a->N,a->loc,&one,&one,a->desc,svd->sigma,z->loc,&one,&one,z->desc,q->loc,&one,&one,q->desc,work,&lwork,rwork,&info));
+ 95:   PetscFree2(work,rwork);
+ 96: #endif
+
+ 98:   MatHermitianTranspose(QT,MAT_INITIAL_MATRIX,&Q);
+ 99:   MatDestroy(&QT);
+100:   BVGetMat(svd->U,&U);
+101:   BVGetMat(svd->V,&V);
+102:   if (M>=N) {
+103:     MatConvert(Z,MATDENSE,MAT_REUSE_MATRIX,&U);
+104:     MatConvert(Q,MATDENSE,MAT_REUSE_MATRIX,&V);
+105:   } else {
+106:     MatConvert(Q,MATDENSE,MAT_REUSE_MATRIX,&U);
+107:     MatConvert(Z,MATDENSE,MAT_REUSE_MATRIX,&V);
+108:   }
+109:   BVRestoreMat(svd->U,&U);
+110:   BVRestoreMat(svd->V,&V);
+111:   MatDestroy(&Z);
+112:   MatDestroy(&Q);
+
+114:   svd->nconv  = svd->ncv;
+115:   svd->its    = 1;
+116:   svd->reason = SVD_CONVERGED_TOL;
+117:   return(0);
+118: }
+
+120: PetscErrorCode SVDDestroy_ScaLAPACK(SVD svd)
+121: {
+
+125:   PetscFree(svd->data);
+126:   return(0);
+127: }
+
+129: PetscErrorCode SVDReset_ScaLAPACK(SVD svd)
+130: {
+132:   SVD_ScaLAPACK  *ctx = (SVD_ScaLAPACK*)svd->data;
+
+135:   MatDestroy(&ctx->As);
+136:   return(0);
+137: }
+
+139: SLEPC_EXTERN PetscErrorCode SVDCreate_ScaLAPACK(SVD svd)
+140: {
+142:   SVD_ScaLAPACK  *ctx;
+
+145:   PetscNewLog(svd,&ctx);
+146:   svd->data = (void*)ctx;
+
+148:   svd->ops->solve          = SVDSolve_ScaLAPACK;
+149:   svd->ops->setup          = SVDSetUp_ScaLAPACK;
+150:   svd->ops->destroy        = SVDDestroy_ScaLAPACK;
+151:   svd->ops->reset          = SVDReset_ScaLAPACK;
+152:   return(0);
+153: }
 
 
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/index.html slepc-3.14.2+dfsg1/src/svd/impls/index.html --- slepc-3.14.1+dfsg1/src/svd/impls/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/lanczos/gklanczos.c.html slepc-3.14.2+dfsg1/src/svd/impls/lanczos/gklanczos.c.html --- slepc-3.14.1+dfsg1/src/svd/impls/lanczos/gklanczos.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/lanczos/gklanczos.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/lanczos/index.html slepc-3.14.2+dfsg1/src/svd/impls/lanczos/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/lanczos/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/lanczos/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/lanczos/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/lanczos/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/lanczos/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/lanczos/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/lapack/index.html slepc-3.14.2+dfsg1/src/svd/impls/lapack/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/lapack/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/lapack/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/lapack/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/lapack/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/lapack/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/lapack/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/lapack/svdlapack.c.html slepc-3.14.2+dfsg1/src/svd/impls/lapack/svdlapack.c.html
--- slepc-3.14.1+dfsg1/src/svd/impls/lapack/svdlapack.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/lapack/svdlapack.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/svd/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/trlanczos/index.html slepc-3.14.2+dfsg1/src/svd/impls/trlanczos/index.html
--- slepc-3.14.1+dfsg1/src/svd/impls/trlanczos/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/trlanczos/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/trlanczos/makefile.html slepc-3.14.2+dfsg1/src/svd/impls/trlanczos/makefile.html --- slepc-3.14.1+dfsg1/src/svd/impls/trlanczos/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/impls/trlanczos/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html slepc-3.14.2+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html
--- slepc-3.14.1+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/impls/trlanczos/trlanczos.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/index.html slepc-3.14.2+dfsg1/src/svd/index.html
--- slepc-3.14.1+dfsg1/src/svd/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/dlregissvd.c.html slepc-3.14.2+dfsg1/src/svd/interface/dlregissvd.c.html --- slepc-3.14.1+dfsg1/src/svd/interface/dlregissvd.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/interface/dlregissvd.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/index.html slepc-3.14.2+dfsg1/src/svd/interface/index.html
--- slepc-3.14.1+dfsg1/src/svd/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/makefile.html slepc-3.14.2+dfsg1/src/svd/interface/makefile.html --- slepc-3.14.1+dfsg1/src/svd/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdbasic.c.html slepc-3.14.2+dfsg1/src/svd/interface/svdbasic.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svdbasic.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdbasic.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svddefault.c.html slepc-3.14.2+dfsg1/src/svd/interface/svddefault.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svddefault.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svddefault.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdmon.c.html slepc-3.14.2+dfsg1/src/svd/interface/svdmon.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svdmon.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdmon.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdopts.c.html slepc-3.14.2+dfsg1/src/svd/interface/svdopts.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svdopts.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdopts.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdregis.c.html slepc-3.14.2+dfsg1/src/svd/interface/svdregis.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svdregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdsetup.c slepc-3.14.2+dfsg1/src/svd/interface/svdsetup.c
--- slepc-3.14.1+dfsg1/src/svd/interface/svdsetup.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdsetup.c	2021-02-01 14:43:03.000000000 +0000
@@ -117,7 +117,7 @@
     ierr = MatHasOperation(svd->OP,MATOP_TRANSPOSE,&flg);CHKERRQ(ierr);
     if (!flg) expltrans = PETSC_FALSE;
     else {
-      ierr = PetscObjectTypeCompare((PetscObject)svd,SVDLAPACK,&flg);CHKERRQ(ierr);
+      ierr = PetscObjectTypeCompareAny((PetscObject)svd,&flg,SVDLAPACK,SVDSCALAPACK,SVDELEMENTAL,"");CHKERRQ(ierr);
       if (flg) expltrans = PETSC_FALSE;
     }
   }
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdsetup.c.html slepc-3.14.2+dfsg1/src/svd/interface/svdsetup.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svdsetup.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdsetup.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -119,7 +119,7 @@
 117:     MatHasOperation(svd->OP,MATOP_TRANSPOSE,&flg);
 118:     if (!flg) expltrans = PETSC_FALSE;
 119:     else {
-120:       PetscObjectTypeCompare((PetscObject)svd,SVDLAPACK,&flg);
+120:       PetscObjectTypeCompareAny((PetscObject)svd,&flg,SVDLAPACK,SVDSCALAPACK,SVDELEMENTAL,"");
 121:       if (flg) expltrans = PETSC_FALSE;
 122:     }
 123:   }
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdsolve.c.html slepc-3.14.2+dfsg1/src/svd/interface/svdsolve.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svdsolve.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdsolve.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/interface/svdview.c.html slepc-3.14.2+dfsg1/src/svd/interface/svdview.c.html
--- slepc-3.14.1+dfsg1/src/svd/interface/svdview.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/interface/svdview.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/makefile.html slepc-3.14.2+dfsg1/src/svd/makefile.html
--- slepc-3.14.1+dfsg1/src/svd/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/index.html slepc-3.14.2+dfsg1/src/svd/tests/index.html
--- slepc-3.14.1+dfsg1/src/svd/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/makefile.html slepc-3.14.2+dfsg1/src/svd/tests/makefile.html --- slepc-3.14.1+dfsg1/src/svd/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt_2.out slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt_2.out
--- slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt_2.out	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt_2.out	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-
-SVD of a rectangular Grcar matrix, 35x30
-
- All requested singular values computed up to the required tolerance:
-     3.22175, 3.21797, 3.16825, 3.15129
-
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt_3.out slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt_3.out
--- slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt_3.out	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt_3.out	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-
-SVD of a rectangular Grcar matrix, 35x30
-
- All requested singular values computed up to the required tolerance:
-     3.22175, 3.21797, 3.16826, 3.15128
-
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt_4.out slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt_4.out
--- slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt_4.out	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt_4.out	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-
-SVD of a rectangular Grcar matrix, 35x30
-
- All requested singular values computed up to the required tolerance:
-     3.22175, 3.21798, 3.16826, 3.15128
-
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt.out slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt.out
--- slepc-3.14.1+dfsg1/src/svd/tests/output/test3_1_alt.out	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/output/test3_1_alt.out	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-
-SVD of a rectangular Grcar matrix, 35x30
-
- All requested singular values computed up to the required tolerance:
-     3.22175, 3.21798, 3.16825, 3.15128
-
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test10.c.html slepc-3.14.2+dfsg1/src/svd/tests/test10.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test10.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test10.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test11.c.html slepc-3.14.2+dfsg1/src/svd/tests/test11.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test11.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test11.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test12.c.html slepc-3.14.2+dfsg1/src/svd/tests/test12.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test12.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test12.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test13.c.html slepc-3.14.2+dfsg1/src/svd/tests/test13.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test13.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test13.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test1.c slepc-3.14.2+dfsg1/src/svd/tests/test1.c
--- slepc-3.14.1+dfsg1/src/svd/tests/test1.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test1.c	2021-02-01 14:43:03.000000000 +0000
@@ -180,6 +180,7 @@
       suffix: 1_cyclic_gd
       args: -type cyclic -epstype gd
       output_file: output/test1_1.out
+      requires: !single
 
    test:
       suffix: 1_primme
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test1.c.html slepc-3.14.2+dfsg1/src/svd/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -192,14 +192,15 @@
 180:       suffix: 1_cyclic_gd
 181:       args: -type cyclic -epstype gd
 182:       output_file: output/test1_1.out
+183:       requires: !single
 
-184:    test:
-185:       suffix: 1_primme
-186:       args: -type primme
-187:       requires: primme
-188:       output_file: output/test1_1.out
+185:    test:
+186:       suffix: 1_primme
+187:       args: -type primme
+188:       requires: primme
+189:       output_file: output/test1_1.out
 
-190: TEST*/
+191: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test2.c.html slepc-3.14.2+dfsg1/src/svd/tests/test2.c.html --- slepc-3.14.1+dfsg1/src/svd/tests/test2.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/tests/test2.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test3.c slepc-3.14.2+dfsg1/src/svd/tests/test3.c
--- slepc-3.14.1+dfsg1/src/svd/tests/test3.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test3.c	2021-02-01 14:43:03.000000000 +0000
@@ -102,6 +102,7 @@
    testset:
       args: -svd_nsv 4
       output_file: output/test3_1.out
+      filter: sed -e "s/22176/22175/" | sed -e "s/21798/21797/" | sed -e "s/16826/16825/" | sed -e "s/15129/15128/"
       test:
          suffix: 1_lanczos
          args: -svd_type lanczos
@@ -143,6 +144,7 @@
    testset:
       args: -svd_implicittranspose -svd_nsv 4 -svd_tol 1e-5
       output_file: output/test3_1.out
+      filter: sed -e "s/22176/22175/" | sed -e "s/21798/21797/" | sed -e "s/16826/16825/" | sed -e "s/15129/15128/"
       test:
          suffix: 2_lanczos
          args: -svd_type lanczos
@@ -179,6 +181,7 @@
       args: -svd_nsv 4 -mat_type aijcusparse
       requires: cuda
       output_file: output/test3_1.out
+      filter: sed -e "s/22176/22175/" | sed -e "s/21798/21797/" | sed -e "s/16826/16825/" | sed -e "s/15129/15128/"
       test:
          suffix: 3_cuda_lanczos
          args: -svd_type lanczos
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test3.c.html slepc-3.14.2+dfsg1/src/svd/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -114,124 +114,127 @@
 102:    testset:
 103:       args: -svd_nsv 4
 104:       output_file: output/test3_1.out
-105:       test:
-106:          suffix: 1_lanczos
-107:          args: -svd_type lanczos
-108:       test:
-109:          suffix: 1_lanczos_one
-110:          args: -svd_type lanczos -svd_lanczos_oneside
-111:       test:
-112:          suffix: 1_trlanczos
-113:          args: -svd_type trlanczos
-114:       test:
-115:          suffix: 1_trlanczos_one
-116:          args: -svd_type trlanczos -svd_trlanczos_oneside
-117:       test:
-118:          suffix: 1_trlanczos_one_mgs
-119:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_type mgs
-120:       test:
-121:          suffix: 1_trlanczos_one_always
-122:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_refine always
-123:       test:
-124:          suffix: 1_cross
-125:          args: -svd_type cross
-126:       test:
-127:          suffix: 1_cross_exp
-128:          args: -svd_type cross -svd_cross_explicitmatrix
-129:       test:
-130:          suffix: 1_cyclic
-131:          args: -svd_type cyclic
-132:       test:
-133:          suffix: 1_cyclic_exp
-134:          args: -svd_type cyclic -svd_cyclic_explicitmatrix
-135:       test:
-136:          suffix: 1_lapack
-137:          args: -svd_type lapack
-138:       test:
-139:          suffix: 1_primme
-140:          args: -svd_type primme
-141:          requires: primme
-
-143:    testset:
-144:       args: -svd_implicittranspose -svd_nsv 4 -svd_tol 1e-5
-145:       output_file: output/test3_1.out
-146:       test:
-147:          suffix: 2_lanczos
-148:          args: -svd_type lanczos
-149:       test:
-150:          suffix: 2_lanczos_one
-151:          args: -svd_type lanczos -svd_lanczos_oneside
-152:       test:
-153:          suffix: 2_trlanczos
-154:          args: -svd_type trlanczos
-155:       test:
-156:          suffix: 2_trlanczos_one
-157:          args: -svd_type trlanczos -svd_trlanczos_oneside
-158:       test:
-159:          suffix: 2_trlanczos_one_mgs
-160:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_type mgs
-161:       test:
-162:          suffix: 2_trlanczos_one_always
-163:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_refine always
-164:       test:
-165:          suffix: 2_cross
-166:          args: -svd_type cross
-167:       test:
-168:          suffix: 2_cross_exp
-169:          args: -svd_type cross -svd_cross_explicitmatrix
-170:          requires: !complex
-171:       test:
-172:          suffix: 2_cyclic
-173:          args: -svd_type cyclic
-174:       test:
-175:          suffix: 2_lapack
-176:          args: -svd_type lapack
-
-178:    testset:
-179:       args: -svd_nsv 4 -mat_type aijcusparse
-180:       requires: cuda
-181:       output_file: output/test3_1.out
-182:       test:
-183:          suffix: 3_cuda_lanczos
-184:          args: -svd_type lanczos
+105:       filter: sed -e "s/22176/22175/" | sed -e "s/21798/21797/" | sed -e "s/16826/16825/" | sed -e "s/15129/15128/"
+106:       test:
+107:          suffix: 1_lanczos
+108:          args: -svd_type lanczos
+109:       test:
+110:          suffix: 1_lanczos_one
+111:          args: -svd_type lanczos -svd_lanczos_oneside
+112:       test:
+113:          suffix: 1_trlanczos
+114:          args: -svd_type trlanczos
+115:       test:
+116:          suffix: 1_trlanczos_one
+117:          args: -svd_type trlanczos -svd_trlanczos_oneside
+118:       test:
+119:          suffix: 1_trlanczos_one_mgs
+120:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_type mgs
+121:       test:
+122:          suffix: 1_trlanczos_one_always
+123:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_refine always
+124:       test:
+125:          suffix: 1_cross
+126:          args: -svd_type cross
+127:       test:
+128:          suffix: 1_cross_exp
+129:          args: -svd_type cross -svd_cross_explicitmatrix
+130:       test:
+131:          suffix: 1_cyclic
+132:          args: -svd_type cyclic
+133:       test:
+134:          suffix: 1_cyclic_exp
+135:          args: -svd_type cyclic -svd_cyclic_explicitmatrix
+136:       test:
+137:          suffix: 1_lapack
+138:          args: -svd_type lapack
+139:       test:
+140:          suffix: 1_primme
+141:          args: -svd_type primme
+142:          requires: primme
+
+144:    testset:
+145:       args: -svd_implicittranspose -svd_nsv 4 -svd_tol 1e-5
+146:       output_file: output/test3_1.out
+147:       filter: sed -e "s/22176/22175/" | sed -e "s/21798/21797/" | sed -e "s/16826/16825/" | sed -e "s/15129/15128/"
+148:       test:
+149:          suffix: 2_lanczos
+150:          args: -svd_type lanczos
+151:       test:
+152:          suffix: 2_lanczos_one
+153:          args: -svd_type lanczos -svd_lanczos_oneside
+154:       test:
+155:          suffix: 2_trlanczos
+156:          args: -svd_type trlanczos
+157:       test:
+158:          suffix: 2_trlanczos_one
+159:          args: -svd_type trlanczos -svd_trlanczos_oneside
+160:       test:
+161:          suffix: 2_trlanczos_one_mgs
+162:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_type mgs
+163:       test:
+164:          suffix: 2_trlanczos_one_always
+165:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_refine always
+166:       test:
+167:          suffix: 2_cross
+168:          args: -svd_type cross
+169:       test:
+170:          suffix: 2_cross_exp
+171:          args: -svd_type cross -svd_cross_explicitmatrix
+172:          requires: !complex
+173:       test:
+174:          suffix: 2_cyclic
+175:          args: -svd_type cyclic
+176:       test:
+177:          suffix: 2_lapack
+178:          args: -svd_type lapack
+
+180:    testset:
+181:       args: -svd_nsv 4 -mat_type aijcusparse
+182:       requires: cuda
+183:       output_file: output/test3_1.out
+184:       filter: sed -e "s/22176/22175/" | sed -e "s/21798/21797/" | sed -e "s/16826/16825/" | sed -e "s/15129/15128/"
 185:       test:
-186:          suffix: 3_cuda_lanczos_one
-187:          args: -svd_type lanczos -svd_lanczos_oneside
+186:          suffix: 3_cuda_lanczos
+187:          args: -svd_type lanczos
 188:       test:
-189:          suffix: 3_cuda_trlanczos
-190:          args: -svd_type trlanczos
+189:          suffix: 3_cuda_lanczos_one
+190:          args: -svd_type lanczos -svd_lanczos_oneside
 191:       test:
-192:          suffix: 3_cuda_trlanczos_one
-193:          args: -svd_type trlanczos -svd_trlanczos_oneside
+192:          suffix: 3_cuda_trlanczos
+193:          args: -svd_type trlanczos
 194:       test:
-195:          suffix: 3_cuda_trlanczos_one_mgs
-196:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_type mgs
+195:          suffix: 3_cuda_trlanczos_one
+196:          args: -svd_type trlanczos -svd_trlanczos_oneside
 197:       test:
-198:          suffix: 3_cuda_trlanczos_one_always
-199:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_refine always
+198:          suffix: 3_cuda_trlanczos_one_mgs
+199:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_type mgs
 200:       test:
-201:          suffix: 3_cuda_cross
-202:          args: -svd_type cross
+201:          suffix: 3_cuda_trlanczos_one_always
+202:          args: -svd_type trlanczos -svd_trlanczos_oneside -bv_orthog_refine always
 203:       test:
-204:          suffix: 3_cuda_cyclic
-205:          args: -svd_type cyclic
+204:          suffix: 3_cuda_cross
+205:          args: -svd_type cross
 206:       test:
-207:          suffix: 3_cuda_cyclic_exp
-208:          args: -svd_type cyclic -svd_cyclic_explicitmatrix
+207:          suffix: 3_cuda_cyclic
+208:          args: -svd_type cyclic
+209:       test:
+210:          suffix: 3_cuda_cyclic_exp
+211:          args: -svd_type cyclic -svd_cyclic_explicitmatrix
+
+213:    test:
+214:       suffix: 4
+215:       args: -svd_type lapack -svd_nsv 4
+216:       output_file: output/test3_1.out
+217:       nsize: 2
+
+219:    test:
+220:       suffix: 5
+221:       args: -svd_nsv 4 -svd_view_values draw -svd_monitor_lg
+222:       requires: x
+223:       output_file: output/test3_1.out
 
-210:    test:
-211:       suffix: 4
-212:       args: -svd_type lapack -svd_nsv 4
-213:       output_file: output/test3_1.out
-214:       nsize: 2
-
-216:    test:
-217:       suffix: 5
-218:       args: -svd_nsv 4 -svd_view_values draw -svd_monitor_lg
-219:       requires: x
-220:       output_file: output/test3_1.out
-
-222: TEST*/
+225: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test4.c slepc-3.14.2+dfsg1/src/svd/tests/test4.c --- slepc-3.14.1+dfsg1/src/svd/tests/test4.c 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/tests/test4.c 2021-02-01 14:43:03.000000000 +0000 @@ -151,6 +151,10 @@ test: suffix: 1_lapack args: -svd_type lapack + test: + suffix: 1_scalapack + args: -svd_type scalapack + requires: scalapack testset: args: -svd_monitor_cancel -mat_type aijcusparse diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test4.c.html slepc-3.14.2+dfsg1/src/svd/tests/test4.c.html --- slepc-3.14.1+dfsg1/src/svd/tests/test4.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/tests/test4.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -164,28 +164,32 @@
 151:       test:
 152:          suffix: 1_lapack
 153:          args: -svd_type lapack
+154:       test:
+155:          suffix: 1_scalapack
+156:          args: -svd_type scalapack
+157:          requires: scalapack
+
+159:    testset:
+160:       args: -svd_monitor_cancel  -mat_type aijcusparse
+161:       requires: cuda !single
+162:       filter: grep -v "Transpose mode" | sed -e "s/seqaijcusparse/seqaij/"
+163:       output_file: output/test4_1.out
+164:       test:
+165:          suffix: 2_cuda_lanczos
+166:          args: -svd_type lanczos
+167:       test:
+168:          suffix: 2_cuda_trlanczos
+169:          args: -svd_type trlanczos -svd_ncv 12
+170:       test:
+171:          suffix: 2_cuda_cross
+172:          args: -svd_type cross
+
+174:    test:
+175:       suffix: 3
+176:       nsize: 2
+177:       args: -svd_type trlanczos -svd_ncv 14 -svd_monitor_cancel -ds_parallel synchronized
 
-155:    testset:
-156:       args: -svd_monitor_cancel  -mat_type aijcusparse
-157:       requires: cuda !single
-158:       filter: grep -v "Transpose mode" | sed -e "s/seqaijcusparse/seqaij/"
-159:       output_file: output/test4_1.out
-160:       test:
-161:          suffix: 2_cuda_lanczos
-162:          args: -svd_type lanczos
-163:       test:
-164:          suffix: 2_cuda_trlanczos
-165:          args: -svd_type trlanczos -svd_ncv 12
-166:       test:
-167:          suffix: 2_cuda_cross
-168:          args: -svd_type cross
-
-170:    test:
-171:       suffix: 3
-172:       nsize: 2
-173:       args: -svd_type trlanczos -svd_ncv 14 -svd_monitor_cancel -ds_parallel synchronized
-
-175: TEST*/
+179: TEST*/
 
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test4f.F.html slepc-3.14.2+dfsg1/src/svd/tests/test4f.F.html --- slepc-3.14.1+dfsg1/src/svd/tests/test4f.F.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/tests/test4f.F.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test5.c.html slepc-3.14.2+dfsg1/src/svd/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test6.c.html slepc-3.14.2+dfsg1/src/svd/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test7.c.html slepc-3.14.2+dfsg1/src/svd/tests/test7.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test7.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test7.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test8.c.html slepc-3.14.2+dfsg1/src/svd/tests/test8.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test8.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test8.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tests/test9.c.html slepc-3.14.2+dfsg1/src/svd/tests/test9.c.html
--- slepc-3.14.1+dfsg1/src/svd/tests/test9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tests/test9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tutorials/ex14.c.html slepc-3.14.2+dfsg1/src/svd/tutorials/ex14.c.html
--- slepc-3.14.1+dfsg1/src/svd/tutorials/ex14.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tutorials/ex14.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tutorials/ex15.c.html slepc-3.14.2+dfsg1/src/svd/tutorials/ex15.c.html
--- slepc-3.14.1+dfsg1/src/svd/tutorials/ex15.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tutorials/ex15.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tutorials/ex15f.F.html slepc-3.14.2+dfsg1/src/svd/tutorials/ex15f.F.html
--- slepc-3.14.1+dfsg1/src/svd/tutorials/ex15f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tutorials/ex15f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tutorials/ex8.c.html slepc-3.14.2+dfsg1/src/svd/tutorials/ex8.c.html
--- slepc-3.14.1+dfsg1/src/svd/tutorials/ex8.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tutorials/ex8.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/svd/tutorials/index.html slepc-3.14.2+dfsg1/src/svd/tutorials/index.html
--- slepc-3.14.1+dfsg1/src/svd/tutorials/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/svd/tutorials/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Singular Value Decomposition Solvers - SVD: Examples

diff -Nru slepc-3.14.1+dfsg1/src/svd/tutorials/makefile.html slepc-3.14.2+dfsg1/src/svd/tutorials/makefile.html --- slepc-3.14.1+dfsg1/src/svd/tutorials/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/svd/tutorials/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/f90-mod/slepcbv.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/contiguous/contig.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/contiguous/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/contiguous/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/contiguous/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/contiguous/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/contiguous/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/mat/bvmat.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/mat/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/mat/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/mat/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/mat/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/mat/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/mat/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/mat/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/mat/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/svec.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/sveccuda/sveccuda.cu.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/svec.h.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/svec.h.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/svec/svec.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/svec/svec.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/tensor/bvtensor.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/tensor/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/tensor/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/tensor/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/tensor/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/tensor/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/vecs/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/vecs/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/vecs/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/vecs/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/vecs/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/impls/vecs/vecs.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvbasic.c slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvbasic.c --- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvbasic.c 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvbasic.c 2021-02-01 14:43:03.000000000 +0000 @@ -494,17 +494,21 @@ PetscFunctionBegin; PetscValidHeaderSpecific(bv,BV_CLASSID,1); PetscValidLogicalCollectiveBool(bv,indef,3); - if (B) { - PetscValidHeaderSpecific(B,MAT_CLASSID,2); - ierr = MatGetLocalSize(B,&m,&n);CHKERRQ(ierr); - if (m!=n) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Matrix must be square"); - if (bv->m && bv->n!=n) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_INCOMP,"Mismatching local dimension BV %D, Mat %D",bv->n,n); + if (B!=bv->matrix || (B && ((PetscObject)B)->id!=((PetscObject)bv->matrix)->id) || indef!=bv->indef) { + if (B) { + PetscValidHeaderSpecific(B,MAT_CLASSID,2); + ierr = MatGetLocalSize(B,&m,&n);CHKERRQ(ierr); + if (m!=n) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Matrix must be square"); + if (bv->m && bv->n!=n) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_INCOMP,"Mismatching local dimension BV %D, Mat %D",bv->n,n); + } + if (B) { ierr = PetscObjectReference((PetscObject)B);CHKERRQ(ierr); } + ierr = MatDestroy(&bv->matrix);CHKERRQ(ierr); + bv->matrix = B; + bv->indef = indef; + ierr = PetscObjectStateIncrease((PetscObject)bv);CHKERRQ(ierr); + if (bv->Bx) { ierr = PetscObjectStateIncrease((PetscObject)bv->Bx);CHKERRQ(ierr); } + if (bv->cached) { ierr = PetscObjectStateIncrease((PetscObject)bv->cached);CHKERRQ(ierr); } } - if (B) { ierr = PetscObjectReference((PetscObject)B);CHKERRQ(ierr); } - ierr = MatDestroy(&bv->matrix);CHKERRQ(ierr); - bv->matrix = B; - bv->indef = indef; - ierr = PetscObjectStateIncrease((PetscObject)bv);CHKERRQ(ierr); PetscFunctionReturn(0); } diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvbasic.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -465,1296 +465,1300 @@
 490: {
 492:   PetscInt       m,n;
 
-497:   if (B) {
-499:     MatGetLocalSize(B,&m,&n);
-500:     if (m!=n) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Matrix must be square");
-501:     if (bv->m && bv->n!=n) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_INCOMP,"Mismatching local dimension BV %D, Mat %D",bv->n,n);
-502:   }
-503:   if (B) { PetscObjectReference((PetscObject)B); }
-504:   MatDestroy(&bv->matrix);
-505:   bv->matrix = B;
-506:   bv->indef  = indef;
-507:   PetscObjectStateIncrease((PetscObject)bv);
-508:   return(0);
-509: }
-
-511: /*@
-512:    BVGetMatrix - Retrieves the matrix representation of the inner product.
-
-514:    Not collective, though a parallel Mat may be returned
-
-516:    Input Parameter:
-517: .  bv    - the basis vectors context
-
-519:    Output Parameter:
-520: +  B     - the matrix of the inner product (may be NULL)
-521: -  indef - the flag indicating if the matrix is indefinite
-
-523:    Level: advanced
-
-525: .seealso: BVSetMatrix()
-526: @*/
-527: PetscErrorCode BVGetMatrix(BV bv,Mat *B,PetscBool *indef)
-528: {
-531:   if (B)     *B     = bv->matrix;
-532:   if (indef) *indef = bv->indef;
-533:   return(0);
-534: }
-
-536: /*@
-537:    BVApplyMatrix - Multiplies a vector by the matrix representation of the
-538:    inner product.
-
-540:    Neighbor-wise Collective on bv
-
-542:    Input Parameter:
-543: +  bv - the basis vectors context
-544: -  x  - the vector
-
-546:    Output Parameter:
-547: .  y  - the result
-
-549:    Note:
-550:    If no matrix was specified this function copies the vector.
-
-552:    Level: advanced
-
-554: .seealso: BVSetMatrix(), BVApplyMatrixBV()
-555: @*/
-556: PetscErrorCode BVApplyMatrix(BV bv,Vec x,Vec y)
-557: {
-
-564:   if (bv->matrix) {
-565:     BV_IPMatMult(bv,x);
-566:     VecCopy(bv->Bx,y);
-567:   } else {
-568:     VecCopy(x,y);
-569:   }
-570:   return(0);
-571: }
-
-573: /*@
-574:    BVApplyMatrixBV - Multiplies the BV vectors by the matrix representation
-575:    of the inner product.
-
-577:    Neighbor-wise Collective on X
-
-579:    Input Parameter:
-580: .  X - the basis vectors context
-
-582:    Output Parameter:
-583: .  Y - the basis vectors to store the result (optional)
-
-585:    Note:
-586:    This function computes Y = B*X, where B is the matrix given with
-587:    BVSetMatrix(). This operation is computed as in BVMatMult().
-588:    If no matrix was specified, then it just copies Y = X.
-
-590:    If no Y is given, the result is stored internally in the cached BV.
-
-592:    Level: developer
-
-594: .seealso: BVSetMatrix(), BVApplyMatrix(), BVMatMult(), BVGetCachedBV()
-595: @*/
-596: PetscErrorCode BVApplyMatrixBV(BV X,BV Y)
-597: {
-
-602:   if (Y) {
-604:     if (X->matrix) {
-605:       BVMatMult(X,X->matrix,Y);
-606:     } else {
-607:       BVCopy(X,Y);
-608:     }
-609:   } else {
-610:     BV_IPMatMultBV(X);
-611:   }
-612:   return(0);
-613: }
-
-615: /*@
-616:    BVSetSignature - Sets the signature matrix to be used in orthogonalization.
-
-618:    Logically Collective on bv
-
-620:    Input Parameter:
-621: +  bv    - the basis vectors context
-622: -  omega - a vector representing the diagonal of the signature matrix
-
-624:    Note:
-625:    The signature matrix Omega = V'*B*V is relevant only for an indefinite B.
-
-627:    Level: developer
-
-629: .seealso: BVSetMatrix(), BVGetSignature()
-630: @*/
-631: PetscErrorCode BVSetSignature(BV bv,Vec omega)
-632: {
-633:   PetscErrorCode    ierr;
-634:   PetscInt          i,n;
-635:   const PetscScalar *pomega;
-636:   PetscScalar       *intern;
-
-640:   BVCheckSizes(bv,1);
-
-644:   VecGetSize(omega,&n);
-645:   if (n!=bv->k) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Vec argument has %D elements, should be %D",n,bv->k);
-646:   BV_AllocateSignature(bv);
-647:   if (bv->indef) {
-648:     VecGetArrayRead(omega,&pomega);
-649:     VecGetArray(bv->omega,&intern);
-650:     for (i=0;i<n;i++) intern[bv->nc+i] = pomega[i];
-651:     VecRestoreArray(bv->omega,&intern);
-652:     VecRestoreArrayRead(omega,&pomega);
-653:   } else {
-654:     PetscInfo(bv,"Ignoring signature because BV is not indefinite\n");
-655:   }
-656:   PetscObjectStateIncrease((PetscObject)bv);
-657:   return(0);
-658: }
-
-660: /*@
-661:    BVGetSignature - Retrieves the signature matrix from last orthogonalization.
-
-663:    Not collective
-
-665:    Input Parameter:
-666: .  bv    - the basis vectors context
-
-668:    Output Parameter:
-669: .  omega - a vector representing the diagonal of the signature matrix
-
-671:    Note:
-672:    The signature matrix Omega = V'*B*V is relevant only for an indefinite B.
-
-674:    Level: developer
-
-676: .seealso: BVSetMatrix(), BVSetSignature()
-677: @*/
-678: PetscErrorCode BVGetSignature(BV bv,Vec omega)
-679: {
-680:   PetscErrorCode    ierr;
-681:   PetscInt          i,n;
-682:   PetscScalar       *pomega;
-683:   const PetscScalar *intern;
-
-687:   BVCheckSizes(bv,1);
-
-691:   VecGetSize(omega,&n);
-692:   if (n!=bv->k) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Vec argument has %D elements, should be %D",n,bv->k);
-693:   if (bv->indef && bv->omega) {
-694:     VecGetArray(omega,&pomega);
-695:     VecGetArrayRead(bv->omega,&intern);
-696:     for (i=0;i<n;i++) pomega[i] = intern[bv->nc+i];
-697:     VecRestoreArrayRead(bv->omega,&intern);
-698:     VecRestoreArray(omega,&pomega);
-699:   } else {
-700:     VecSet(omega,1.0);
-701:   }
-702:   return(0);
-703: }
-
-705: /*@
-706:    BVSetBufferVec - Attach a vector object to be used as buffer space for
-707:    several operations.
-
-709:    Collective on bv
-
-711:    Input Parameters:
-712: +  bv     - the basis vectors context)
-713: -  buffer - the vector
-
-715:    Notes:
-716:    Use BVGetBufferVec() to retrieve the vector (for example, to free it
-717:    at the end of the computations).
-
-719:    The vector must be sequential of length (nc+m)*m, where m is the number
-720:    of columns of bv and nc is the number of constraints.
-
-722:    Level: developer
-
-724: .seealso: BVGetBufferVec(), BVSetSizes(), BVGetNumConstraints()
-725: @*/
-726: PetscErrorCode BVSetBufferVec(BV bv,Vec buffer)
-727: {
-729:   PetscInt       ld,n;
-730:   PetscMPIInt    size;
-
-735:   BVCheckSizes(bv,1);
-736:   VecGetSize(buffer,&n);
-737:   ld = bv->m+bv->nc;
-738:   if (n != ld*bv->m) SETERRQ1(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Buffer size must be %d",ld*bv->m);
-739:   MPI_Comm_size(PetscObjectComm((PetscObject)buffer),&size);
-740:   if (size>1) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Buffer must be a sequential vector");
-
-742:   PetscObjectReference((PetscObject)buffer);
-743:   VecDestroy(&bv->buffer);
-744:   bv->buffer = buffer;
-745:   PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->buffer);
-746:   return(0);
-747: }
-
-749: /*@
-750:    BVGetBufferVec - Obtain the buffer vector associated with the BV object.
-
-752:    Not Collective, but Vec returned is parallel if BV is parallel
-
-754:    Input Parameters:
-755: .  bv - the basis vectors context
-
-757:    Output Parameter:
-758: .  buffer - vector
-
-760:    Notes:
-761:    The vector is created if not available previously. It is a sequential vector
-762:    of length (nc+m)*m, where m is the number of columns of bv and nc is the number
-763:    of constraints.
-
-765:    Developer Notes:
-766:    The buffer vector is viewed as a column-major matrix with leading dimension
-767:    ld=nc+m, and m columns at most. In the most common usage, it has the structure
-768: .vb
-769:       | | C |
-770:       |s|---|
-771:       | | H |
-772: .ve
-773:    where H is an upper Hessenberg matrix of order m x (m-1), C contains coefficients
-774:    related to orthogonalization against constraints (first nc rows), and s is the
-775:    first column that contains scratch values computed during Gram-Schmidt
-776:    orthogonalization. In particular, BVDotColumn() and BVMultColumn() use s to
-777:    store the coefficients.
-
-779:    Level: developer
-
-781: .seealso: BVSetBufferVec(), BVSetSizes(), BVGetNumConstraints(), BVDotColumn(), BVMultColumn()
-782: @*/
-783: PetscErrorCode BVGetBufferVec(BV bv,Vec *buffer)
-784: {
-786:   PetscInt       ld;
-
-791:   BVCheckSizes(bv,1);
-792:   if (!bv->buffer) {
-793:     ld = bv->m+bv->nc;
-794:     VecCreate(PETSC_COMM_SELF,&bv->buffer);
-795:     VecSetSizes(bv->buffer,PETSC_DECIDE,ld*bv->m);
-796:     VecSetType(bv->buffer,((PetscObject)bv->t)->type_name);
-797:     PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->buffer);
-798:   }
-799:   *buffer = bv->buffer;
-800:   return(0);
-801: }
-
-803: /*@
-804:    BVSetRandomContext - Sets the PetscRandom object associated with the BV,
-805:    to be used in operations that need random numbers.
-
-807:    Collective on bv
-
-809:    Input Parameters:
-810: +  bv   - the basis vectors context
-811: -  rand - the random number generator context
-
-813:    Level: advanced
-
-815: .seealso: BVGetRandomContext(), BVSetRandom(), BVSetRandomColumn()
-816: @*/
-817: PetscErrorCode BVSetRandomContext(BV bv,PetscRandom rand)
-818: {
-
-825:   PetscObjectReference((PetscObject)rand);
-826:   PetscRandomDestroy(&bv->rand);
-827:   bv->rand = rand;
-828:   PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->rand);
-829:   return(0);
-830: }
-
-832: /*@
-833:    BVGetRandomContext - Gets the PetscRandom object associated with the BV.
-
-835:    Not Collective
-
-837:    Input Parameter:
-838: .  bv - the basis vectors context
-
-840:    Output Parameter:
-841: .  rand - the random number generator context
-
-843:    Level: advanced
-
-845: .seealso: BVSetRandomContext(), BVSetRandom(), BVSetRandomColumn()
-846: @*/
-847: PetscErrorCode BVGetRandomContext(BV bv,PetscRandom* rand)
-848: {
-
-854:   if (!bv->rand) {
-855:     PetscRandomCreate(PetscObjectComm((PetscObject)bv),&bv->rand);
-856:     PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->rand);
-857:     if (bv->rrandom) {
-858:       PetscRandomSetSeed(bv->rand,0x12345678);
-859:       PetscRandomSeed(bv->rand);
-860:     }
-861:   }
-862:   *rand = bv->rand;
-863:   return(0);
-864: }
-
-866: /*@
-867:    BVSetFromOptions - Sets BV options from the options database.
-
-869:    Collective on bv
-
-871:    Input Parameter:
-872: .  bv - the basis vectors context
-
-874:    Level: beginner
-875: @*/
-876: PetscErrorCode BVSetFromOptions(BV bv)
-877: {
-878:   PetscErrorCode     ierr;
-879:   char               type[256];
-880:   PetscBool          flg1,flg2,flg3,flg4;
-881:   PetscReal          r;
-882:   BVOrthogType       otype;
-883:   BVOrthogRefineType orefine;
-884:   BVOrthogBlockType  oblock;
-
-888:   BVRegisterAll();
-889:   PetscObjectOptionsBegin((PetscObject)bv);
-890:     PetscOptionsFList("-bv_type","Basis Vectors type","BVSetType",BVList,(char*)(((PetscObject)bv)->type_name?((PetscObject)bv)->type_name:BVSVEC),type,sizeof(type),&flg1);
-891:     if (flg1) {
-892:       BVSetType(bv,type);
-893:     } else if (!((PetscObject)bv)->type_name) {
-894:       BVSetType(bv,BVSVEC);
-895:     }
-
-897:     otype = bv->orthog_type;
-898:     PetscOptionsEnum("-bv_orthog_type","Orthogonalization method","BVSetOrthogonalization",BVOrthogTypes,(PetscEnum)otype,(PetscEnum*)&otype,&flg1);
-899:     orefine = bv->orthog_ref;
-900:     PetscOptionsEnum("-bv_orthog_refine","Iterative refinement mode during orthogonalization","BVSetOrthogonalization",BVOrthogRefineTypes,(PetscEnum)orefine,(PetscEnum*)&orefine,&flg2);
-901:     r = bv->orthog_eta;
-902:     PetscOptionsReal("-bv_orthog_eta","Parameter of iterative refinement during orthogonalization","BVSetOrthogonalization",r,&r,&flg3);
-903:     oblock = bv->orthog_block;
-904:     PetscOptionsEnum("-bv_orthog_block","Block orthogonalization method","BVSetOrthogonalization",BVOrthogBlockTypes,(PetscEnum)oblock,(PetscEnum*)&oblock,&flg4);
-905:     if (flg1 || flg2 || flg3 || flg4) { BVSetOrthogonalization(bv,otype,orefine,r,oblock); }
-
-907:     PetscOptionsEnum("-bv_matmult","Method for BVMatMult","BVSetMatMultMethod",BVMatMultTypes,(PetscEnum)bv->vmm,(PetscEnum*)&bv->vmm,NULL);
-
-909:     /* undocumented option to generate random vectors that are independent of the number of processes */
-910:     PetscOptionsGetBool(NULL,NULL,"-bv_reproducible_random",&bv->rrandom,NULL);
-
-912:     if (bv->ops->create) bv->defersfo = PETSC_TRUE;   /* defer call to setfromoptions */
-913:     else if (bv->ops->setfromoptions) {
-914:       (*bv->ops->setfromoptions)(PetscOptionsObject,bv);
-915:     }
-916:     PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)bv);
-917:   PetscOptionsEnd();
-
-919:   if (!bv->rand) { BVGetRandomContext(bv,&bv->rand); }
-920:   PetscRandomSetFromOptions(bv->rand);
-921:   return(0);
-922: }
-
-924: /*@
-925:    BVSetOrthogonalization - Specifies the method used for the orthogonalization of
-926:    vectors (classical or modified Gram-Schmidt with or without refinement), and
-927:    for the block-orthogonalization (simultaneous orthogonalization of a set of
-928:    vectors).
-
-930:    Logically Collective on bv
-
-932:    Input Parameters:
-933: +  bv     - the basis vectors context
-934: .  type   - the method of vector orthogonalization
-935: .  refine - type of refinement
-936: .  eta    - parameter for selective refinement
-937: -  block  - the method of block orthogonalization
-
-939:    Options Database Keys:
-940: +  -bv_orthog_type <type> - Where <type> is cgs for Classical Gram-Schmidt orthogonalization
-941:                          (default) or mgs for Modified Gram-Schmidt orthogonalization
-942: .  -bv_orthog_refine <ref> - Where <ref> is one of never, ifneeded (default) or always
-943: .  -bv_orthog_eta <eta> -  For setting the value of eta
-944: -  -bv_orthog_block <block> - Where <block> is the block-orthogonalization method
-
-946:    Notes:
-947:    The default settings work well for most problems.
-
-949:    The parameter eta should be a real value between 0 and 1 (or PETSC_DEFAULT).
-950:    The value of eta is used only when the refinement type is "ifneeded".
-
-952:    When using several processors, MGS is likely to result in bad scalability.
-
-954:    If the method set for block orthogonalization is GS, then the computation
-955:    is done column by column with the vector orthogonalization.
-
-957:    Level: advanced
-
-959: .seealso: BVOrthogonalizeColumn(), BVGetOrthogonalization(), BVOrthogType, BVOrthogRefineType, BVOrthogBlockType
-960: @*/
-961: PetscErrorCode BVSetOrthogonalization(BV bv,BVOrthogType type,BVOrthogRefineType refine,PetscReal eta,BVOrthogBlockType block)
-962: {
-969:   switch (type) {
-970:     case BV_ORTHOG_CGS:
-971:     case BV_ORTHOG_MGS:
-972:       bv->orthog_type = type;
-973:       break;
-974:     default:
-975:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown orthogonalization type");
-976:   }
-977:   switch (refine) {
-978:     case BV_ORTHOG_REFINE_NEVER:
-979:     case BV_ORTHOG_REFINE_IFNEEDED:
-980:     case BV_ORTHOG_REFINE_ALWAYS:
-981:       bv->orthog_ref = refine;
-982:       break;
-983:     default:
-984:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown refinement type");
-985:   }
-986:   if (eta == PETSC_DEFAULT) {
-987:     bv->orthog_eta = 0.7071;
-988:   } else {
-989:     if (eta <= 0.0 || eta > 1.0) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"Invalid eta value");
-990:     bv->orthog_eta = eta;
-991:   }
-992:   switch (block) {
-993:     case BV_ORTHOG_BLOCK_GS:
-994:     case BV_ORTHOG_BLOCK_CHOL:
-995:     case BV_ORTHOG_BLOCK_TSQR:
-996:     case BV_ORTHOG_BLOCK_TSQRCHOL:
-997:     case BV_ORTHOG_BLOCK_SVQB:
-998:       bv->orthog_block = block;
-999:       break;
-1000:     default:
-1001:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown block orthogonalization type");
-1002:   }
-1003:   return(0);
-1004: }
-
-1006: /*@
-1007:    BVGetOrthogonalization - Gets the orthogonalization settings from the BV object.
-
-1009:    Not Collective
-
-1011:    Input Parameter:
-1012: .  bv - basis vectors context
-
-1014:    Output Parameter:
-1015: +  type   - the method of vector orthogonalization
-1016: .  refine - type of refinement
-1017: .  eta    - parameter for selective refinement
-1018: -  block  - the method of block orthogonalization
-
-1020:    Level: advanced
-
-1022: .seealso: BVOrthogonalizeColumn(), BVSetOrthogonalization(), BVOrthogType, BVOrthogRefineType, BVOrthogBlockType
-1023: @*/
-1024: PetscErrorCode BVGetOrthogonalization(BV bv,BVOrthogType *type,BVOrthogRefineType *refine,PetscReal *eta,BVOrthogBlockType *block)
-1025: {
-1028:   if (type)   *type   = bv->orthog_type;
-1029:   if (refine) *refine = bv->orthog_ref;
-1030:   if (eta)    *eta    = bv->orthog_eta;
-1031:   if (block)  *block  = bv->orthog_block;
-1032:   return(0);
-1033: }
-
-1035: /*@
-1036:    BVSetMatMultMethod - Specifies the method used for the BVMatMult() operation.
-
-1038:    Logically Collective on bv
-
-1040:    Input Parameters:
-1041: +  bv     - the basis vectors context
-1042: -  method - the method for the BVMatMult() operation
-
-1044:    Options Database Keys:
-1045: .  -bv_matmult <meth> - choose one of the methods: vecs, mat
-
-1047:    Notes:
-1048:    Allowed values are
-1049: +  BV_MATMULT_VECS - perform a matrix-vector multiply per each column
-1050: .  BV_MATMULT_MAT - carry out a Mat-Mat product with a dense matrix
-1051: -  BV_MATMULT_MAT_SAVE - this case is deprecated
-
-1053:    The default is BV_MATMULT_MAT except in the case of BVVECS.
-
-1055:    Level: advanced
-
-1057: .seealso: BVMatMult(), BVGetMatMultMethod(), BVMatMultType
-1058: @*/
-1059: PetscErrorCode BVSetMatMultMethod(BV bv,BVMatMultType method)
-1060: {
-
-1066:   switch (method) {
-1067:     case BV_MATMULT_VECS:
-1068:     case BV_MATMULT_MAT:
-1069:       bv->vmm = method;
-1070:       break;
-1071:     case BV_MATMULT_MAT_SAVE:
-1072:       PetscInfo(bv,"BV_MATMULT_MAT_SAVE is deprecated, using BV_MATMULT_MAT\n");
-1073:       bv->vmm = BV_MATMULT_MAT;
+497:   if (B!=bv->matrix || (B && ((PetscObject)B)->id!=((PetscObject)bv->matrix)->id) || indef!=bv->indef) {
+498:     if (B) {
+500:       MatGetLocalSize(B,&m,&n);
+501:       if (m!=n) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Matrix must be square");
+502:       if (bv->m && bv->n!=n) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_INCOMP,"Mismatching local dimension BV %D, Mat %D",bv->n,n);
+503:     }
+504:     if (B) { PetscObjectReference((PetscObject)B); }
+505:     MatDestroy(&bv->matrix);
+506:     bv->matrix = B;
+507:     bv->indef  = indef;
+508:     PetscObjectStateIncrease((PetscObject)bv);
+509:     if (bv->Bx) { PetscObjectStateIncrease((PetscObject)bv->Bx); }
+510:     if (bv->cached) { PetscObjectStateIncrease((PetscObject)bv->cached); }
+511:   }
+512:   return(0);
+513: }
+
+515: /*@
+516:    BVGetMatrix - Retrieves the matrix representation of the inner product.
+
+518:    Not collective, though a parallel Mat may be returned
+
+520:    Input Parameter:
+521: .  bv    - the basis vectors context
+
+523:    Output Parameter:
+524: +  B     - the matrix of the inner product (may be NULL)
+525: -  indef - the flag indicating if the matrix is indefinite
+
+527:    Level: advanced
+
+529: .seealso: BVSetMatrix()
+530: @*/
+531: PetscErrorCode BVGetMatrix(BV bv,Mat *B,PetscBool *indef)
+532: {
+535:   if (B)     *B     = bv->matrix;
+536:   if (indef) *indef = bv->indef;
+537:   return(0);
+538: }
+
+540: /*@
+541:    BVApplyMatrix - Multiplies a vector by the matrix representation of the
+542:    inner product.
+
+544:    Neighbor-wise Collective on bv
+
+546:    Input Parameter:
+547: +  bv - the basis vectors context
+548: -  x  - the vector
+
+550:    Output Parameter:
+551: .  y  - the result
+
+553:    Note:
+554:    If no matrix was specified this function copies the vector.
+
+556:    Level: advanced
+
+558: .seealso: BVSetMatrix(), BVApplyMatrixBV()
+559: @*/
+560: PetscErrorCode BVApplyMatrix(BV bv,Vec x,Vec y)
+561: {
+
+568:   if (bv->matrix) {
+569:     BV_IPMatMult(bv,x);
+570:     VecCopy(bv->Bx,y);
+571:   } else {
+572:     VecCopy(x,y);
+573:   }
+574:   return(0);
+575: }
+
+577: /*@
+578:    BVApplyMatrixBV - Multiplies the BV vectors by the matrix representation
+579:    of the inner product.
+
+581:    Neighbor-wise Collective on X
+
+583:    Input Parameter:
+584: .  X - the basis vectors context
+
+586:    Output Parameter:
+587: .  Y - the basis vectors to store the result (optional)
+
+589:    Note:
+590:    This function computes Y = B*X, where B is the matrix given with
+591:    BVSetMatrix(). This operation is computed as in BVMatMult().
+592:    If no matrix was specified, then it just copies Y = X.
+
+594:    If no Y is given, the result is stored internally in the cached BV.
+
+596:    Level: developer
+
+598: .seealso: BVSetMatrix(), BVApplyMatrix(), BVMatMult(), BVGetCachedBV()
+599: @*/
+600: PetscErrorCode BVApplyMatrixBV(BV X,BV Y)
+601: {
+
+606:   if (Y) {
+608:     if (X->matrix) {
+609:       BVMatMult(X,X->matrix,Y);
+610:     } else {
+611:       BVCopy(X,Y);
+612:     }
+613:   } else {
+614:     BV_IPMatMultBV(X);
+615:   }
+616:   return(0);
+617: }
+
+619: /*@
+620:    BVSetSignature - Sets the signature matrix to be used in orthogonalization.
+
+622:    Logically Collective on bv
+
+624:    Input Parameter:
+625: +  bv    - the basis vectors context
+626: -  omega - a vector representing the diagonal of the signature matrix
+
+628:    Note:
+629:    The signature matrix Omega = V'*B*V is relevant only for an indefinite B.
+
+631:    Level: developer
+
+633: .seealso: BVSetMatrix(), BVGetSignature()
+634: @*/
+635: PetscErrorCode BVSetSignature(BV bv,Vec omega)
+636: {
+637:   PetscErrorCode    ierr;
+638:   PetscInt          i,n;
+639:   const PetscScalar *pomega;
+640:   PetscScalar       *intern;
+
+644:   BVCheckSizes(bv,1);
+
+648:   VecGetSize(omega,&n);
+649:   if (n!=bv->k) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Vec argument has %D elements, should be %D",n,bv->k);
+650:   BV_AllocateSignature(bv);
+651:   if (bv->indef) {
+652:     VecGetArrayRead(omega,&pomega);
+653:     VecGetArray(bv->omega,&intern);
+654:     for (i=0;i<n;i++) intern[bv->nc+i] = pomega[i];
+655:     VecRestoreArray(bv->omega,&intern);
+656:     VecRestoreArrayRead(omega,&pomega);
+657:   } else {
+658:     PetscInfo(bv,"Ignoring signature because BV is not indefinite\n");
+659:   }
+660:   PetscObjectStateIncrease((PetscObject)bv);
+661:   return(0);
+662: }
+
+664: /*@
+665:    BVGetSignature - Retrieves the signature matrix from last orthogonalization.
+
+667:    Not collective
+
+669:    Input Parameter:
+670: .  bv    - the basis vectors context
+
+672:    Output Parameter:
+673: .  omega - a vector representing the diagonal of the signature matrix
+
+675:    Note:
+676:    The signature matrix Omega = V'*B*V is relevant only for an indefinite B.
+
+678:    Level: developer
+
+680: .seealso: BVSetMatrix(), BVSetSignature()
+681: @*/
+682: PetscErrorCode BVGetSignature(BV bv,Vec omega)
+683: {
+684:   PetscErrorCode    ierr;
+685:   PetscInt          i,n;
+686:   PetscScalar       *pomega;
+687:   const PetscScalar *intern;
+
+691:   BVCheckSizes(bv,1);
+
+695:   VecGetSize(omega,&n);
+696:   if (n!=bv->k) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Vec argument has %D elements, should be %D",n,bv->k);
+697:   if (bv->indef && bv->omega) {
+698:     VecGetArray(omega,&pomega);
+699:     VecGetArrayRead(bv->omega,&intern);
+700:     for (i=0;i<n;i++) pomega[i] = intern[bv->nc+i];
+701:     VecRestoreArrayRead(bv->omega,&intern);
+702:     VecRestoreArray(omega,&pomega);
+703:   } else {
+704:     VecSet(omega,1.0);
+705:   }
+706:   return(0);
+707: }
+
+709: /*@
+710:    BVSetBufferVec - Attach a vector object to be used as buffer space for
+711:    several operations.
+
+713:    Collective on bv
+
+715:    Input Parameters:
+716: +  bv     - the basis vectors context)
+717: -  buffer - the vector
+
+719:    Notes:
+720:    Use BVGetBufferVec() to retrieve the vector (for example, to free it
+721:    at the end of the computations).
+
+723:    The vector must be sequential of length (nc+m)*m, where m is the number
+724:    of columns of bv and nc is the number of constraints.
+
+726:    Level: developer
+
+728: .seealso: BVGetBufferVec(), BVSetSizes(), BVGetNumConstraints()
+729: @*/
+730: PetscErrorCode BVSetBufferVec(BV bv,Vec buffer)
+731: {
+733:   PetscInt       ld,n;
+734:   PetscMPIInt    size;
+
+739:   BVCheckSizes(bv,1);
+740:   VecGetSize(buffer,&n);
+741:   ld = bv->m+bv->nc;
+742:   if (n != ld*bv->m) SETERRQ1(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_SIZ,"Buffer size must be %d",ld*bv->m);
+743:   MPI_Comm_size(PetscObjectComm((PetscObject)buffer),&size);
+744:   if (size>1) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Buffer must be a sequential vector");
+
+746:   PetscObjectReference((PetscObject)buffer);
+747:   VecDestroy(&bv->buffer);
+748:   bv->buffer = buffer;
+749:   PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->buffer);
+750:   return(0);
+751: }
+
+753: /*@
+754:    BVGetBufferVec - Obtain the buffer vector associated with the BV object.
+
+756:    Not Collective, but Vec returned is parallel if BV is parallel
+
+758:    Input Parameters:
+759: .  bv - the basis vectors context
+
+761:    Output Parameter:
+762: .  buffer - vector
+
+764:    Notes:
+765:    The vector is created if not available previously. It is a sequential vector
+766:    of length (nc+m)*m, where m is the number of columns of bv and nc is the number
+767:    of constraints.
+
+769:    Developer Notes:
+770:    The buffer vector is viewed as a column-major matrix with leading dimension
+771:    ld=nc+m, and m columns at most. In the most common usage, it has the structure
+772: .vb
+773:       | | C |
+774:       |s|---|
+775:       | | H |
+776: .ve
+777:    where H is an upper Hessenberg matrix of order m x (m-1), C contains coefficients
+778:    related to orthogonalization against constraints (first nc rows), and s is the
+779:    first column that contains scratch values computed during Gram-Schmidt
+780:    orthogonalization. In particular, BVDotColumn() and BVMultColumn() use s to
+781:    store the coefficients.
+
+783:    Level: developer
+
+785: .seealso: BVSetBufferVec(), BVSetSizes(), BVGetNumConstraints(), BVDotColumn(), BVMultColumn()
+786: @*/
+787: PetscErrorCode BVGetBufferVec(BV bv,Vec *buffer)
+788: {
+790:   PetscInt       ld;
+
+795:   BVCheckSizes(bv,1);
+796:   if (!bv->buffer) {
+797:     ld = bv->m+bv->nc;
+798:     VecCreate(PETSC_COMM_SELF,&bv->buffer);
+799:     VecSetSizes(bv->buffer,PETSC_DECIDE,ld*bv->m);
+800:     VecSetType(bv->buffer,((PetscObject)bv->t)->type_name);
+801:     PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->buffer);
+802:   }
+803:   *buffer = bv->buffer;
+804:   return(0);
+805: }
+
+807: /*@
+808:    BVSetRandomContext - Sets the PetscRandom object associated with the BV,
+809:    to be used in operations that need random numbers.
+
+811:    Collective on bv
+
+813:    Input Parameters:
+814: +  bv   - the basis vectors context
+815: -  rand - the random number generator context
+
+817:    Level: advanced
+
+819: .seealso: BVGetRandomContext(), BVSetRandom(), BVSetRandomColumn()
+820: @*/
+821: PetscErrorCode BVSetRandomContext(BV bv,PetscRandom rand)
+822: {
+
+829:   PetscObjectReference((PetscObject)rand);
+830:   PetscRandomDestroy(&bv->rand);
+831:   bv->rand = rand;
+832:   PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->rand);
+833:   return(0);
+834: }
+
+836: /*@
+837:    BVGetRandomContext - Gets the PetscRandom object associated with the BV.
+
+839:    Not Collective
+
+841:    Input Parameter:
+842: .  bv - the basis vectors context
+
+844:    Output Parameter:
+845: .  rand - the random number generator context
+
+847:    Level: advanced
+
+849: .seealso: BVSetRandomContext(), BVSetRandom(), BVSetRandomColumn()
+850: @*/
+851: PetscErrorCode BVGetRandomContext(BV bv,PetscRandom* rand)
+852: {
+
+858:   if (!bv->rand) {
+859:     PetscRandomCreate(PetscObjectComm((PetscObject)bv),&bv->rand);
+860:     PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->rand);
+861:     if (bv->rrandom) {
+862:       PetscRandomSetSeed(bv->rand,0x12345678);
+863:       PetscRandomSeed(bv->rand);
+864:     }
+865:   }
+866:   *rand = bv->rand;
+867:   return(0);
+868: }
+
+870: /*@
+871:    BVSetFromOptions - Sets BV options from the options database.
+
+873:    Collective on bv
+
+875:    Input Parameter:
+876: .  bv - the basis vectors context
+
+878:    Level: beginner
+879: @*/
+880: PetscErrorCode BVSetFromOptions(BV bv)
+881: {
+882:   PetscErrorCode     ierr;
+883:   char               type[256];
+884:   PetscBool          flg1,flg2,flg3,flg4;
+885:   PetscReal          r;
+886:   BVOrthogType       otype;
+887:   BVOrthogRefineType orefine;
+888:   BVOrthogBlockType  oblock;
+
+892:   BVRegisterAll();
+893:   PetscObjectOptionsBegin((PetscObject)bv);
+894:     PetscOptionsFList("-bv_type","Basis Vectors type","BVSetType",BVList,(char*)(((PetscObject)bv)->type_name?((PetscObject)bv)->type_name:BVSVEC),type,sizeof(type),&flg1);
+895:     if (flg1) {
+896:       BVSetType(bv,type);
+897:     } else if (!((PetscObject)bv)->type_name) {
+898:       BVSetType(bv,BVSVEC);
+899:     }
+
+901:     otype = bv->orthog_type;
+902:     PetscOptionsEnum("-bv_orthog_type","Orthogonalization method","BVSetOrthogonalization",BVOrthogTypes,(PetscEnum)otype,(PetscEnum*)&otype,&flg1);
+903:     orefine = bv->orthog_ref;
+904:     PetscOptionsEnum("-bv_orthog_refine","Iterative refinement mode during orthogonalization","BVSetOrthogonalization",BVOrthogRefineTypes,(PetscEnum)orefine,(PetscEnum*)&orefine,&flg2);
+905:     r = bv->orthog_eta;
+906:     PetscOptionsReal("-bv_orthog_eta","Parameter of iterative refinement during orthogonalization","BVSetOrthogonalization",r,&r,&flg3);
+907:     oblock = bv->orthog_block;
+908:     PetscOptionsEnum("-bv_orthog_block","Block orthogonalization method","BVSetOrthogonalization",BVOrthogBlockTypes,(PetscEnum)oblock,(PetscEnum*)&oblock,&flg4);
+909:     if (flg1 || flg2 || flg3 || flg4) { BVSetOrthogonalization(bv,otype,orefine,r,oblock); }
+
+911:     PetscOptionsEnum("-bv_matmult","Method for BVMatMult","BVSetMatMultMethod",BVMatMultTypes,(PetscEnum)bv->vmm,(PetscEnum*)&bv->vmm,NULL);
+
+913:     /* undocumented option to generate random vectors that are independent of the number of processes */
+914:     PetscOptionsGetBool(NULL,NULL,"-bv_reproducible_random",&bv->rrandom,NULL);
+
+916:     if (bv->ops->create) bv->defersfo = PETSC_TRUE;   /* defer call to setfromoptions */
+917:     else if (bv->ops->setfromoptions) {
+918:       (*bv->ops->setfromoptions)(PetscOptionsObject,bv);
+919:     }
+920:     PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)bv);
+921:   PetscOptionsEnd();
+
+923:   if (!bv->rand) { BVGetRandomContext(bv,&bv->rand); }
+924:   PetscRandomSetFromOptions(bv->rand);
+925:   return(0);
+926: }
+
+928: /*@
+929:    BVSetOrthogonalization - Specifies the method used for the orthogonalization of
+930:    vectors (classical or modified Gram-Schmidt with or without refinement), and
+931:    for the block-orthogonalization (simultaneous orthogonalization of a set of
+932:    vectors).
+
+934:    Logically Collective on bv
+
+936:    Input Parameters:
+937: +  bv     - the basis vectors context
+938: .  type   - the method of vector orthogonalization
+939: .  refine - type of refinement
+940: .  eta    - parameter for selective refinement
+941: -  block  - the method of block orthogonalization
+
+943:    Options Database Keys:
+944: +  -bv_orthog_type <type> - Where <type> is cgs for Classical Gram-Schmidt orthogonalization
+945:                          (default) or mgs for Modified Gram-Schmidt orthogonalization
+946: .  -bv_orthog_refine <ref> - Where <ref> is one of never, ifneeded (default) or always
+947: .  -bv_orthog_eta <eta> -  For setting the value of eta
+948: -  -bv_orthog_block <block> - Where <block> is the block-orthogonalization method
+
+950:    Notes:
+951:    The default settings work well for most problems.
+
+953:    The parameter eta should be a real value between 0 and 1 (or PETSC_DEFAULT).
+954:    The value of eta is used only when the refinement type is "ifneeded".
+
+956:    When using several processors, MGS is likely to result in bad scalability.
+
+958:    If the method set for block orthogonalization is GS, then the computation
+959:    is done column by column with the vector orthogonalization.
+
+961:    Level: advanced
+
+963: .seealso: BVOrthogonalizeColumn(), BVGetOrthogonalization(), BVOrthogType, BVOrthogRefineType, BVOrthogBlockType
+964: @*/
+965: PetscErrorCode BVSetOrthogonalization(BV bv,BVOrthogType type,BVOrthogRefineType refine,PetscReal eta,BVOrthogBlockType block)
+966: {
+973:   switch (type) {
+974:     case BV_ORTHOG_CGS:
+975:     case BV_ORTHOG_MGS:
+976:       bv->orthog_type = type;
+977:       break;
+978:     default:
+979:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown orthogonalization type");
+980:   }
+981:   switch (refine) {
+982:     case BV_ORTHOG_REFINE_NEVER:
+983:     case BV_ORTHOG_REFINE_IFNEEDED:
+984:     case BV_ORTHOG_REFINE_ALWAYS:
+985:       bv->orthog_ref = refine;
+986:       break;
+987:     default:
+988:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown refinement type");
+989:   }
+990:   if (eta == PETSC_DEFAULT) {
+991:     bv->orthog_eta = 0.7071;
+992:   } else {
+993:     if (eta <= 0.0 || eta > 1.0) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"Invalid eta value");
+994:     bv->orthog_eta = eta;
+995:   }
+996:   switch (block) {
+997:     case BV_ORTHOG_BLOCK_GS:
+998:     case BV_ORTHOG_BLOCK_CHOL:
+999:     case BV_ORTHOG_BLOCK_TSQR:
+1000:     case BV_ORTHOG_BLOCK_TSQRCHOL:
+1001:     case BV_ORTHOG_BLOCK_SVQB:
+1002:       bv->orthog_block = block;
+1003:       break;
+1004:     default:
+1005:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown block orthogonalization type");
+1006:   }
+1007:   return(0);
+1008: }
+
+1010: /*@
+1011:    BVGetOrthogonalization - Gets the orthogonalization settings from the BV object.
+
+1013:    Not Collective
+
+1015:    Input Parameter:
+1016: .  bv - basis vectors context
+
+1018:    Output Parameter:
+1019: +  type   - the method of vector orthogonalization
+1020: .  refine - type of refinement
+1021: .  eta    - parameter for selective refinement
+1022: -  block  - the method of block orthogonalization
+
+1024:    Level: advanced
+
+1026: .seealso: BVOrthogonalizeColumn(), BVSetOrthogonalization(), BVOrthogType, BVOrthogRefineType, BVOrthogBlockType
+1027: @*/
+1028: PetscErrorCode BVGetOrthogonalization(BV bv,BVOrthogType *type,BVOrthogRefineType *refine,PetscReal *eta,BVOrthogBlockType *block)
+1029: {
+1032:   if (type)   *type   = bv->orthog_type;
+1033:   if (refine) *refine = bv->orthog_ref;
+1034:   if (eta)    *eta    = bv->orthog_eta;
+1035:   if (block)  *block  = bv->orthog_block;
+1036:   return(0);
+1037: }
+
+1039: /*@
+1040:    BVSetMatMultMethod - Specifies the method used for the BVMatMult() operation.
+
+1042:    Logically Collective on bv
+
+1044:    Input Parameters:
+1045: +  bv     - the basis vectors context
+1046: -  method - the method for the BVMatMult() operation
+
+1048:    Options Database Keys:
+1049: .  -bv_matmult <meth> - choose one of the methods: vecs, mat
+
+1051:    Notes:
+1052:    Allowed values are
+1053: +  BV_MATMULT_VECS - perform a matrix-vector multiply per each column
+1054: .  BV_MATMULT_MAT - carry out a Mat-Mat product with a dense matrix
+1055: -  BV_MATMULT_MAT_SAVE - this case is deprecated
+
+1057:    The default is BV_MATMULT_MAT except in the case of BVVECS.
+
+1059:    Level: advanced
+
+1061: .seealso: BVMatMult(), BVGetMatMultMethod(), BVMatMultType
+1062: @*/
+1063: PetscErrorCode BVSetMatMultMethod(BV bv,BVMatMultType method)
+1064: {
+
+1070:   switch (method) {
+1071:     case BV_MATMULT_VECS:
+1072:     case BV_MATMULT_MAT:
+1073:       bv->vmm = method;
 1074:       break;
-1075:     default:
-1076:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown matmult method");
-1077:   }
-1078:   return(0);
-1079: }
-
-1081: /*@
-1082:    BVGetMatMultMethod - Gets the method used for the BVMatMult() operation.
-
-1084:    Not Collective
-
-1086:    Input Parameter:
-1087: .  bv - basis vectors context
-
-1089:    Output Parameter:
-1090: .  method - the method for the BVMatMult() operation
-
-1092:    Level: advanced
-
-1094: .seealso: BVMatMult(), BVSetMatMultMethod(), BVMatMultType
-1095: @*/
-1096: PetscErrorCode BVGetMatMultMethod(BV bv,BVMatMultType *method)
-1097: {
-1101:   *method = bv->vmm;
-1102:   return(0);
-1103: }
-
-1105: /*@
-1106:    BVGetColumn - Returns a Vec object that contains the entries of the
-1107:    requested column of the basis vectors object.
-
-1109:    Logically Collective on bv
-
-1111:    Input Parameters:
-1112: +  bv - the basis vectors context
-1113: -  j  - the index of the requested column
-
-1115:    Output Parameter:
-1116: .  v  - vector containing the jth column
-
-1118:    Notes:
-1119:    The returned Vec must be seen as a reference (not a copy) of the BV
-1120:    column, that is, modifying the Vec will change the BV entries as well.
-
-1122:    The returned Vec must not be destroyed. BVRestoreColumn() must be
-1123:    called when it is no longer needed. At most, two columns can be fetched,
-1124:    that is, this function can only be called twice before the corresponding
-1125:    BVRestoreColumn() is invoked.
-
-1127:    A negative index j selects the i-th constraint, where i=-j. Constraints
-1128:    should not be modified.
-
-1130:    Level: beginner
-
-1132: .seealso: BVRestoreColumn(), BVInsertConstraints()
-1133: @*/
-1134: PetscErrorCode BVGetColumn(BV bv,PetscInt j,Vec *v)
-1135: {
-1137:   PetscInt       l;
-
-1142:   BVCheckSizes(bv,1);
-1143:   BVCheckOp(bv,1,getcolumn);
-1145:   if (j<0 && -j>bv->nc) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested constraint %D but only %D are available",-j,bv->nc);
-1146:   if (j>=bv->m) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested column %D but only %D are available",j,bv->m);
-1147:   if (j==bv->ci[0] || j==bv->ci[1]) SETERRQ1(PetscObjectComm((PetscObject)bv),PETSC_ERR_SUP,"Column %D already fetched in a previous call to BVGetColumn",j);
-1148:   l = BVAvailableVec;
-1149:   if (l==-1) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_SUP,"Too many requested columns; you must call BVRestoreColumn for one of the previously fetched columns");
-1150:   (*bv->ops->getcolumn)(bv,j,v);
-1151:   bv->ci[l] = j;
-1152:   PetscObjectStateGet((PetscObject)bv->cv[l],&bv->st[l]);
-1153:   PetscObjectGetId((PetscObject)bv->cv[l],&bv->id[l]);
-1154:   *v = bv->cv[l];
-1155:   return(0);
-1156: }
-
-1158: /*@
-1159:    BVRestoreColumn - Restore a column obtained with BVGetColumn().
-
-1161:    Logically Collective on bv
-
-1163:    Input Parameters:
-1164: +  bv - the basis vectors context
-1165: .  j  - the index of the column
-1166: -  v  - vector obtained with BVGetColumn()
-
-1168:    Note:
-1169:    The arguments must match the corresponding call to BVGetColumn().
-
-1171:    Level: beginner
-
-1173: .seealso: BVGetColumn()
-1174: @*/
-1175: PetscErrorCode BVRestoreColumn(BV bv,PetscInt j,Vec *v)
-1176: {
-1177:   PetscErrorCode   ierr;
-1178:   PetscObjectId    id;
-1179:   PetscObjectState st;
-1180:   PetscInt         l;
-
-1185:   BVCheckSizes(bv,1);
-1189:   if (j<0 && -j>bv->nc) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested constraint %D but only %D are available",-j,bv->nc);
-1190:   if (j>=bv->m) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested column %D but only %D are available",j,bv->m);
-1191:   if (j!=bv->ci[0] && j!=bv->ci[1]) SETERRQ1(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Column %D has not been fetched with a call to BVGetColumn",j);
-1192:   l = (j==bv->ci[0])? 0: 1;
-1193:   PetscObjectGetId((PetscObject)*v,&id);
-1194:   if (id!=bv->id[l]) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Argument 3 is not the same Vec that was obtained with BVGetColumn");
-1195:   PetscObjectStateGet((PetscObject)*v,&st);
-1196:   if (st!=bv->st[l]) {
-1197:     PetscObjectStateIncrease((PetscObject)bv);
-1198:   }
-1199:   if (bv->ops->restorecolumn) {
-1200:     (*bv->ops->restorecolumn)(bv,j,v);
-1201:   } else bv->cv[l] = NULL;
-1202:   bv->ci[l] = -bv->nc-1;
-1203:   bv->st[l] = -1;
-1204:   bv->id[l] = 0;
-1205:   *v = NULL;
-1206:   return(0);
-1207: }
-
-1209: /*@C
-1210:    BVGetArray - Returns a pointer to a contiguous array that contains this
-1211:    processor's portion of the BV data.
-
-1213:    Logically Collective on bv
-
-1215:    Input Parameters:
-1216: .  bv - the basis vectors context
-
-1218:    Output Parameter:
-1219: .  a  - location to put pointer to the array
-
-1221:    Notes:
-1222:    BVRestoreArray() must be called when access to the array is no longer needed.
-1223:    This operation may imply a data copy, for BV types that do not store
-1224:    data contiguously in memory.
-
-1226:    The pointer will normally point to the first entry of the first column,
-1227:    but if the BV has constraints then these go before the regular columns.
-
-1229:    Level: advanced
-
-1231: .seealso: BVRestoreArray(), BVInsertConstraints()
-1232: @*/
-1233: PetscErrorCode BVGetArray(BV bv,PetscScalar **a)
-1234: {
-
-1240:   BVCheckSizes(bv,1);
-1241:   BVCheckOp(bv,1,getarray);
-1242:   (*bv->ops->getarray)(bv,a);
-1243:   return(0);
-1244: }
-
-1246: /*@C
-1247:    BVRestoreArray - Restore the BV object after BVGetArray() has been called.
-
-1249:    Logically Collective on bv
-
-1251:    Input Parameters:
-1252: +  bv - the basis vectors context
-1253: -  a  - location of pointer to array obtained from BVGetArray()
-
-1255:    Note:
-1256:    This operation may imply a data copy, for BV types that do not store
-1257:    data contiguously in memory.
-
-1259:    Level: advanced
-
-1261: .seealso: BVGetColumn()
-1262: @*/
-1263: PetscErrorCode BVRestoreArray(BV bv,PetscScalar **a)
-1264: {
-
-1270:   BVCheckSizes(bv,1);
-1271:   if (bv->ops->restorearray) {
-1272:     (*bv->ops->restorearray)(bv,a);
-1273:   }
-1274:   if (a) *a = NULL;
-1275:   PetscObjectStateIncrease((PetscObject)bv);
-1276:   return(0);
-1277: }
-
-1279: /*@C
-1280:    BVGetArrayRead - Returns a read-only pointer to a contiguous array that
-1281:    contains this processor's portion of the BV data.
-
-1283:    Not Collective
-
-1285:    Input Parameters:
-1286: .  bv - the basis vectors context
-
-1288:    Output Parameter:
-1289: .  a  - location to put pointer to the array
-
-1291:    Notes:
-1292:    BVRestoreArrayRead() must be called when access to the array is no
-1293:    longer needed. This operation may imply a data copy, for BV types that
-1294:    do not store data contiguously in memory.
-
-1296:    The pointer will normally point to the first entry of the first column,
-1297:    but if the BV has constraints then these go before the regular columns.
-
-1299:    Level: advanced
-
-1301: .seealso: BVRestoreArray(), BVInsertConstraints()
-1302: @*/
-1303: PetscErrorCode BVGetArrayRead(BV bv,const PetscScalar **a)
-1304: {
-
-1310:   BVCheckSizes(bv,1);
-1311:   BVCheckOp(bv,1,getarrayread);
-1312:   (*bv->ops->getarrayread)(bv,a);
-1313:   return(0);
-1314: }
-
-1316: /*@C
-1317:    BVRestoreArrayRead - Restore the BV object after BVGetArrayRead() has
-1318:    been called.
-
-1320:    Not Collective
-
-1322:    Input Parameters:
-1323: +  bv - the basis vectors context
-1324: -  a  - location of pointer to array obtained from BVGetArrayRead()
-
-1326:    Level: advanced
-
-1328: .seealso: BVGetColumn()
-1329: @*/
-1330: PetscErrorCode BVRestoreArrayRead(BV bv,const PetscScalar **a)
-1331: {
-
-1337:   BVCheckSizes(bv,1);
-1338:   if (bv->ops->restorearrayread) {
-1339:     (*bv->ops->restorearrayread)(bv,a);
-1340:   }
-1341:   if (a) *a = NULL;
-1342:   return(0);
-1343: }
-
-1345: /*@
-1346:    BVCreateVec - Creates a new Vec object with the same type and dimensions
-1347:    as the columns of the basis vectors object.
-
-1349:    Collective on bv
-
-1351:    Input Parameter:
-1352: .  bv - the basis vectors context
-
-1354:    Output Parameter:
-1355: .  v  - the new vector
-
-1357:    Note:
-1358:    The user is responsible of destroying the returned vector.
-
-1360:    Level: beginner
-
-1362: .seealso: BVCreateMat()
-1363: @*/
-1364: PetscErrorCode BVCreateVec(BV bv,Vec *v)
-1365: {
-
-1370:   BVCheckSizes(bv,1);
-1372:   VecDuplicate(bv->t,v);
-1373:   return(0);
-1374: }
-
-1376: /*@
-1377:    BVCreateMat - Creates a new Mat object of dense type and copies the contents
-1378:    of the BV object.
-
-1380:    Collective on bv
-
-1382:    Input Parameter:
-1383: .  bv - the basis vectors context
-
-1385:    Output Parameter:
-1386: .  A  - the new matrix
-
-1388:    Notes:
-1389:    The user is responsible of destroying the returned matrix.
-
-1391:    The matrix contains all columns of the BV, not just the active columns.
-
-1393:    Level: intermediate
-
-1395: .seealso: BVCreateFromMat(), BVCreateVec(), BVGetMat()
-1396: @*/
-1397: PetscErrorCode BVCreateMat(BV bv,Mat *A)
-1398: {
-1399:   PetscErrorCode    ierr;
-1400:   PetscScalar       *aa;
-1401:   const PetscScalar *vv;
-
-1405:   BVCheckSizes(bv,1);
-
-1408:   MatCreateDense(PetscObjectComm((PetscObject)bv->t),bv->n,PETSC_DECIDE,bv->N,bv->m,NULL,A);
-1409:   MatDenseGetArray(*A,&aa);
-1410:   BVGetArrayRead(bv,&vv);
-1411:   PetscArraycpy(aa,vv,bv->m*bv->n);
-1412:   BVRestoreArrayRead(bv,&vv);
-1413:   MatDenseRestoreArray(*A,&aa);
-1414:   MatAssemblyBegin(*A,MAT_FINAL_ASSEMBLY);
-1415:   MatAssemblyEnd(*A,MAT_FINAL_ASSEMBLY);
-1416:   return(0);
-1417: }
-
-1419: /*@
-1420:    BVGetMat - Returns a Mat object of dense type that shares the memory of
-1421:    the BV object.
-
-1423:    Collective on bv
-
-1425:    Input Parameter:
-1426: .  bv - the basis vectors context
-
-1428:    Output Parameter:
-1429: .  A  - the matrix
-
-1431:    Notes:
-1432:    The returned matrix contains only the active columns. If the content of
-1433:    the Mat is modified, these changes are also done in the BV object. The
-1434:    user must call BVRestoreMat() when no longer needed.
-
-1436:    This operation implies a call to BVGetArray(), which may result in data
-1437:    copies.
-
-1439:    Level: advanced
-
-1441: .seealso: BVRestoreMat(), BVCreateMat(), BVGetArray()
-1442: @*/
-1443: PetscErrorCode BVGetMat(BV bv,Mat *A)
-1444: {
-1446:   PetscScalar    *vv,*aa;
-1447:   PetscBool      create=PETSC_FALSE;
-1448:   PetscInt       m,cols;
-
-1452:   BVCheckSizes(bv,1);
-1454:   if (bv->ops->getmat) {
-1455:     (*bv->ops->getmat)(bv,A);
-1456:   } else {
-1457:     m = bv->k-bv->l;
-1458:     if (!bv->Aget) create=PETSC_TRUE;
-1459:     else {
-1460:       MatDenseGetArray(bv->Aget,&aa);
-1461:       if (aa) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"BVGetMat already called on this BV");
-1462:       MatGetSize(bv->Aget,NULL,&cols);
-1463:       if (cols!=m) {
-1464:         MatDestroy(&bv->Aget);
-1465:         create=PETSC_TRUE;
-1466:       }
-1467:     }
-1468:     BVGetArray(bv,&vv);
-1469:     if (create) {
-1470:       MatCreateDense(PetscObjectComm((PetscObject)bv),bv->n,PETSC_DECIDE,bv->N,m,vv,&bv->Aget); /* pass a pointer to avoid allocation of storage */
-1471:       MatDenseReplaceArray(bv->Aget,NULL);  /* replace with a null pointer, the value after BVRestoreMat */
-1472:       PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->Aget);
-1473:     }
-1474:     MatDensePlaceArray(bv->Aget,vv+(bv->nc+bv->l)*bv->n);  /* set the actual pointer */
-1475:     *A = bv->Aget;
-1476:   }
-1477:   return(0);
-1478: }
-
-1480: /*@
-1481:    BVRestoreMat - Restores the Mat obtained with BVGetMat().
-
-1483:    Logically Collective on bv
-
-1485:    Input Parameters:
-1486: +  bv - the basis vectors context
-1487: -  A  - the fetched matrix
-
-1489:    Note:
-1490:    A call to this function must match a previous call of BVGetMat().
-1491:    The effect is that the contents of the Mat are copied back to the
-1492:    BV internal data structures.
-
-1494:    Level: advanced
-
-1496: .seealso: BVGetMat(), BVRestoreArray()
-1497: @*/
-1498: PetscErrorCode BVRestoreMat(BV bv,Mat *A)
-1499: {
-1501:   PetscScalar    *vv,*aa;
-
-1505:   BVCheckSizes(bv,1);
-1507:   if (!bv->Aget) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"BVRestoreMat must match a previous call to BVGetMat");
-1508:   if (bv->Aget!=*A) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Mat argument is not the same as the one obtained with BVGetMat");
-1509:   if (bv->ops->restoremat) {
-1510:     (*bv->ops->restoremat)(bv,A);
-1511:   } else {
-1512:     MatDenseGetArray(bv->Aget,&aa);
-1513:     vv = aa-(bv->nc+bv->l)*bv->n;
-1514:     MatDenseResetArray(bv->Aget);
-1515:     BVRestoreArray(bv,&vv);
-1516:     *A = NULL;
-1517:   }
-1518:   return(0);
-1519: }
-
-1521: /*
-1522:    Copy all user-provided attributes of V to another BV object W
-1523:  */
-1524: PETSC_STATIC_INLINE PetscErrorCode BVDuplicate_Private(BV V,BV W)
-1525: {
-
-1529:   BVSetType(W,((PetscObject)V)->type_name);
-1530:   W->orthog_type  = V->orthog_type;
-1531:   W->orthog_ref   = V->orthog_ref;
-1532:   W->orthog_eta   = V->orthog_eta;
-1533:   W->orthog_block = V->orthog_block;
-1534:   if (V->matrix) { PetscObjectReference((PetscObject)V->matrix); }
-1535:   W->matrix       = V->matrix;
-1536:   W->indef        = V->indef;
-1537:   W->vmm          = V->vmm;
-1538:   W->rrandom      = V->rrandom;
-1539:   if (V->rand) { PetscObjectReference((PetscObject)V->rand); }
-1540:   W->rand         = V->rand;
-1541:   if (V->ops->duplicate) { (*V->ops->duplicate)(V,W); }
-1542:   PetscObjectStateIncrease((PetscObject)W);
-1543:   return(0);
-1544: }
-
-1546: /*@
-1547:    BVDuplicate - Creates a new basis vector object of the same type and
-1548:    dimensions as an existing one.
-
-1550:    Collective on V
-
-1552:    Input Parameter:
-1553: .  V - basis vectors context
-
-1555:    Output Parameter:
-1556: .  W - location to put the new BV
-
-1558:    Notes:
-1559:    The new BV has the same type and dimensions as V, and it shares the same
-1560:    template vector. Also, the inner product matrix and orthogonalization
-1561:    options are copied.
-
-1563:    BVDuplicate() DOES NOT COPY the entries, but rather allocates storage
-1564:    for the new basis vectors. Use BVCopy() to copy the contents.
-
-1566:    Level: intermediate
-
-1568: .seealso: BVDuplicateResize(), BVCreate(), BVSetSizesFromVec(), BVCopy()
-1569: @*/
-1570: PetscErrorCode BVDuplicate(BV V,BV *W)
-1571: {
-
-1577:   BVCheckSizes(V,1);
-1579:   BVCreate(PetscObjectComm((PetscObject)V),W);
-1580:   BVSetSizesFromVec(*W,V->t,V->m);
-1581:   BVDuplicate_Private(V,*W);
-1582:   return(0);
-1583: }
-
-1585: /*@
-1586:    BVDuplicateResize - Creates a new basis vector object of the same type and
-1587:    dimensions as an existing one, but with possibly different number of columns.
-
-1589:    Collective on V
-
-1591:    Input Parameter:
-1592: +  V - basis vectors context
-1593: -  m - the new number of columns
-
-1595:    Output Parameter:
-1596: .  W - location to put the new BV
-
-1598:    Note:
-1599:    This is equivalent of a call to BVDuplicate() followed by BVResize(). The
-1600:    contents of V are not copied to W.
-
-1602:    Level: intermediate
-
-1604: .seealso: BVDuplicate(), BVResize()
-1605: @*/
-1606: PetscErrorCode BVDuplicateResize(BV V,PetscInt m,BV *W)
-1607: {
-
-1613:   BVCheckSizes(V,1);
-1616:   BVCreate(PetscObjectComm((PetscObject)V),W);
-1617:   BVSetSizesFromVec(*W,V->t,m);
-1618:   BVDuplicate_Private(V,*W);
-1619:   return(0);
-1620: }
-
-1622: /*@
-1623:    BVGetCachedBV - Returns a BV object stored internally that holds the
-1624:    result of B*X after a call to BVApplyMatrixBV().
-
-1626:    Not collective
-
-1628:    Input Parameter:
-1629: .  bv    - the basis vectors context
-
-1631:    Output Parameter:
-1632: .  cached - the cached BV
-
-1634:    Note:
-1635:    The cached BV is created if not available previously.
-
-1637:    Level: developer
-
-1639: .seealso: BVApplyMatrixBV()
-1640: @*/
-1641: PetscErrorCode BVGetCachedBV(BV bv,BV *cached)
-1642: {
-
-1648:   BVCheckSizes(bv,1);
-1649:   if (!bv->cached) {
-1650:     BVCreate(PetscObjectComm((PetscObject)bv),&bv->cached);
-1651:     BVSetSizesFromVec(bv->cached,bv->t,bv->m);
-1652:     BVDuplicate_Private(bv,bv->cached);
-1653:     PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->cached);
-1654:   }
-1655:   *cached = bv->cached;
-1656:   return(0);
-1657: }
-
-1659: /*@
-1660:    BVCopy - Copies a basis vector object into another one, W <- V.
-
-1662:    Logically Collective on V
-
-1664:    Input Parameter:
-1665: .  V - basis vectors context
-
-1667:    Output Parameter:
-1668: .  W - the copy
-
-1670:    Note:
-1671:    Both V and W must be distributed in the same manner; local copies are
-1672:    done. Only active columns (excluding the leading ones) are copied.
-1673:    In the destination W, columns are overwritten starting from the leading ones.
-1674:    Constraints are not copied.
-
-1676:    Level: beginner
-
-1678: .seealso: BVCopyVec(), BVCopyColumn(), BVDuplicate(), BVSetActiveColumns()
-1679: @*/
-1680: PetscErrorCode BVCopy(BV V,BV W)
-1681: {
-1682:   PetscErrorCode    ierr;
-1683:   PetscScalar       *womega;
-1684:   const PetscScalar *vomega;
-
-1689:   BVCheckSizes(V,1);
-1690:   BVCheckOp(V,1,copy);
-1693:   BVCheckSizes(W,2);
-1695:   if (V->n!=W->n) SETERRQ2(PetscObjectComm((PetscObject)V),PETSC_ERR_ARG_INCOMP,"Mismatching local dimension V %D, W %D",V->n,W->n);
-1696:   if (V->k-V->l>W->m-W->l) SETERRQ2(PetscObjectComm((PetscObject)V),PETSC_ERR_ARG_SIZ,"W has %D non-leading columns, not enough to store %D columns",W->m-W->l,V->k-V->l);
-1697:   if (V==W || !V->n) return(0);
-
-1699:   PetscLogEventBegin(BV_Copy,V,W,0,0);
-1700:   if (V->indef && V->matrix && V->indef==W->indef && V->matrix==W->matrix) {
-1701:     /* copy signature */
-1702:     BV_AllocateSignature(W);
-1703:     VecGetArrayRead(V->omega,&vomega);
-1704:     VecGetArray(W->omega,&womega);
-1705:     PetscArraycpy(womega+W->nc+W->l,vomega+V->nc+V->l,V->k-V->l);
-1706:     VecRestoreArray(W->omega,&womega);
-1707:     VecRestoreArrayRead(V->omega,&vomega);
-1708:   }
-1709:   (*V->ops->copy)(V,W);
-1710:   PetscLogEventEnd(BV_Copy,V,W,0,0);
-1711:   PetscObjectStateIncrease((PetscObject)W);
-1712:   return(0);
-1713: }
-
-1715: /*@
-1716:    BVCopyVec - Copies one of the columns of a basis vectors object into a Vec.
-
-1718:    Logically Collective on V
-
-1720:    Input Parameter:
-1721: +  V - basis vectors context
-1722: -  j - the column number to be copied
-
-1724:    Output Parameter:
-1725: .  w - the copied column
-
-1727:    Note:
-1728:    Both V and w must be distributed in the same manner; local copies are done.
-
-1730:    Level: beginner
-
-1732: .seealso: BVCopy(), BVCopyColumn(), BVInsertVec()
-1733: @*/
-1734: PetscErrorCode BVCopyVec(BV V,PetscInt j,Vec w)
-1735: {
-1737:   PetscInt       n,N;
-1738:   Vec            z;
-
-1743:   BVCheckSizes(V,1);
-
-1748:   VecGetSize(w,&N);
-1749:   VecGetLocalSize(w,&n);
-1750:   if (N!=V->N || n!=V->n) SETERRQ4(PetscObjectComm((PetscObject)V),PETSC_ERR_ARG_INCOMP,"Vec sizes (global %D, local %D) do not match BV sizes (global %D, local %D)",N,n,V->N,V->n);
-
-1752:   PetscLogEventBegin(BV_Copy,V,w,0,0);
-1753:   BVGetColumn(V,j,&z);
-1754:   VecCopy(z,w);
-1755:   BVRestoreColumn(V,j,&z);
-1756:   PetscLogEventEnd(BV_Copy,V,w,0,0);
-1757:   return(0);
-1758: }
-
-1760: /*@
-1761:    BVCopyColumn - Copies the values from one of the columns to another one.
-
-1763:    Logically Collective on V
-
-1765:    Input Parameter:
-1766: +  V - basis vectors context
-1767: .  j - the number of the source column
-1768: -  i - the number of the destination column
-
-1770:    Level: beginner
-
-1772: .seealso: BVCopy(), BVCopyVec()
-1773: @*/
-1774: PetscErrorCode BVCopyColumn(BV V,PetscInt j,PetscInt i)
-1775: {
-1777:   Vec            z,w;
-1778:   PetscScalar    *omega;
-
-1783:   BVCheckSizes(V,1);
-1786:   if (j==i) return(0);
-
-1788:   PetscLogEventBegin(BV_Copy,V,0,0,0);
-1789:   if (V->omega) {
-1790:     VecGetArray(V->omega,&omega);
-1791:     omega[i] = omega[j];
-1792:     VecRestoreArray(V->omega,&omega);
-1793:   }
-1794:   if (V->ops->copycolumn) {
-1795:     (*V->ops->copycolumn)(V,j,i);
-1796:   } else {
-1797:     BVGetColumn(V,j,&z);
-1798:     BVGetColumn(V,i,&w);
-1799:     VecCopy(z,w);
-1800:     BVRestoreColumn(V,j,&z);
-1801:     BVRestoreColumn(V,i,&w);
-1802:   }
-1803:   PetscLogEventEnd(BV_Copy,V,0,0,0);
-1804:   PetscObjectStateIncrease((PetscObject)V);
-1805:   return(0);
-1806: }
-
-1808: static PetscErrorCode BVGetSplit_Private(BV bv,PetscBool left,BV *split)
-1809: {
-1811:   PetscInt       ncols;
-
-1814:   ncols = left? bv->nc+bv->l: bv->m-bv->l;
-1815:   if (*split && ncols!=(*split)->m) { BVDestroy(split); }
-1816:   if (!*split) {
-1817:     BVCreate(PetscObjectComm((PetscObject)bv),split);
-1818:     PetscLogObjectParent((PetscObject)bv,(PetscObject)*split);
-1819:     (*split)->issplit = left? 1: 2;
-1820:     (*split)->splitparent = bv;
-1821:     BVSetSizesFromVec(*split,bv->t,ncols);
-1822:     BVDuplicate_Private(bv,*split);
-1823:   }
-1824:   (*split)->l  = 0;
-1825:   (*split)->k  = left? bv->l: bv->k-bv->l;
-1826:   (*split)->nc = left? bv->nc: 0;
-1827:   (*split)->m  = ncols-(*split)->nc;
-1828:   if ((*split)->nc) {
-1829:     (*split)->ci[0] = -(*split)->nc-1;
-1830:     (*split)->ci[1] = -(*split)->nc-1;
-1831:   }
-1832:   if (left) {
-1833:     PetscObjectStateGet((PetscObject)*split,&bv->lstate);
-1834:   } else {
-1835:     PetscObjectStateGet((PetscObject)*split,&bv->rstate);
-1836:   }
-1837:   return(0);
-1838: }
-
-1840: /*@
-1841:    BVGetSplit - Splits the BV object into two BV objects that share the
-1842:    internal data, one of them containing the leading columns and the other
-1843:    one containing the remaining columns.
-
-1845:    Logically Collective on bv
-
-1847:    Input Parameters:
-1848: .  bv - the basis vectors context
-
-1850:    Output Parameters:
-1851: +  L - left BV containing leading columns (can be NULL)
-1852: -  R - right BV containing remaining columns (can be NULL)
-
-1854:    Notes:
-1855:    The columns are split in two sets. The leading columns (including the
-1856:    constraints) are assigned to the left BV and the remaining columns
-1857:    are assigned to the right BV. The number of leading columns, as
-1858:    specified with BVSetActiveColumns(), must be between 1 and m-1 (to
-1859:    guarantee that both L and R have at least one column).
-
-1861:    The returned BV's must be seen as references (not copies) of the input
-1862:    BV, that is, modifying them will change the entries of bv as well.
-1863:    The returned BV's must not be destroyed. BVRestoreSplit() must be called
-1864:    when they are no longer needed.
-
-1866:    Pass NULL for any of the output BV's that is not needed.
-
-1868:    Level: advanced
-
-1870: .seealso: BVRestoreSplit(), BVSetActiveColumns(), BVSetNumConstraints()
-1871: @*/
-1872: PetscErrorCode BVGetSplit(BV bv,BV *L,BV *R)
-1873: {
-
-1879:   BVCheckSizes(bv,1);
-1880:   if (!bv->l) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Must indicate the number of leading columns with BVSetActiveColumns()");
-1881:   if (bv->lsplit) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Cannot get the split BV's twice before restoring them with BVRestoreSplit()");
-1882:   bv->lsplit = bv->nc+bv->l;
-1883:   BVGetSplit_Private(bv,PETSC_TRUE,&bv->L);
-1884:   BVGetSplit_Private(bv,PETSC_FALSE,&bv->R);
-1885:   if (L) *L = bv->L;
-1886:   if (R) *R = bv->R;
-1887:   return(0);
-1888: }
-
-1890: /*@
-1891:    BVRestoreSplit - Restore the BV objects obtained with BVGetSplit().
-
-1893:    Logically Collective on bv
-
-1895:    Input Parameters:
-1896: +  bv - the basis vectors context
-1897: .  L  - left BV obtained with BVGetSplit()
-1898: -  R  - right BV obtained with BVGetSplit()
-
-1900:    Note:
-1901:    The arguments must match the corresponding call to BVGetSplit().
-
-1903:    Level: advanced
-
-1905: .seealso: BVGetSplit()
-1906: @*/
-1907: PetscErrorCode BVRestoreSplit(BV bv,BV *L,BV *R)
-1908: {
-
-1914:   BVCheckSizes(bv,1);
-1915:   if (!bv->lsplit) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Must call BVGetSplit first");
-1916:   if (L && *L!=bv->L) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Argument 2 is not the same BV that was obtained with BVGetSplit");
-1917:   if (R && *R!=bv->R) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Argument 3 is not the same BV that was obtained with BVGetSplit");
-1918:   if (L && ((*L)->ci[0]>(*L)->nc-1 || (*L)->ci[1]>(*L)->nc-1)) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Argument 2 has unrestored columns, use BVRestoreColumn()");
-1919:   if (R && ((*R)->ci[0]>(*R)->nc-1 || (*R)->ci[1]>(*R)->nc-1)) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Argument 3 has unrestored columns, use BVRestoreColumn()");
-
-1921:   if (bv->ops->restoresplit) {
-1922:     (*bv->ops->restoresplit)(bv,L,R);
-1923:   }
-1924:   bv->lsplit = 0;
-1925:   if (L) *L = NULL;
-1926:   if (R) *R = NULL;
-1927:   return(0);
-1928: }
+1075:     case BV_MATMULT_MAT_SAVE:
+1076:       PetscInfo(bv,"BV_MATMULT_MAT_SAVE is deprecated, using BV_MATMULT_MAT\n");
+1077:       bv->vmm = BV_MATMULT_MAT;
+1078:       break;
+1079:     default:
+1080:       SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Unknown matmult method");
+1081:   }
+1082:   return(0);
+1083: }
+
+1085: /*@
+1086:    BVGetMatMultMethod - Gets the method used for the BVMatMult() operation.
+
+1088:    Not Collective
+
+1090:    Input Parameter:
+1091: .  bv - basis vectors context
+
+1093:    Output Parameter:
+1094: .  method - the method for the BVMatMult() operation
+
+1096:    Level: advanced
+
+1098: .seealso: BVMatMult(), BVSetMatMultMethod(), BVMatMultType
+1099: @*/
+1100: PetscErrorCode BVGetMatMultMethod(BV bv,BVMatMultType *method)
+1101: {
+1105:   *method = bv->vmm;
+1106:   return(0);
+1107: }
+
+1109: /*@
+1110:    BVGetColumn - Returns a Vec object that contains the entries of the
+1111:    requested column of the basis vectors object.
+
+1113:    Logically Collective on bv
+
+1115:    Input Parameters:
+1116: +  bv - the basis vectors context
+1117: -  j  - the index of the requested column
+
+1119:    Output Parameter:
+1120: .  v  - vector containing the jth column
+
+1122:    Notes:
+1123:    The returned Vec must be seen as a reference (not a copy) of the BV
+1124:    column, that is, modifying the Vec will change the BV entries as well.
+
+1126:    The returned Vec must not be destroyed. BVRestoreColumn() must be
+1127:    called when it is no longer needed. At most, two columns can be fetched,
+1128:    that is, this function can only be called twice before the corresponding
+1129:    BVRestoreColumn() is invoked.
+
+1131:    A negative index j selects the i-th constraint, where i=-j. Constraints
+1132:    should not be modified.
+
+1134:    Level: beginner
+
+1136: .seealso: BVRestoreColumn(), BVInsertConstraints()
+1137: @*/
+1138: PetscErrorCode BVGetColumn(BV bv,PetscInt j,Vec *v)
+1139: {
+1141:   PetscInt       l;
+
+1146:   BVCheckSizes(bv,1);
+1147:   BVCheckOp(bv,1,getcolumn);
+1149:   if (j<0 && -j>bv->nc) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested constraint %D but only %D are available",-j,bv->nc);
+1150:   if (j>=bv->m) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested column %D but only %D are available",j,bv->m);
+1151:   if (j==bv->ci[0] || j==bv->ci[1]) SETERRQ1(PetscObjectComm((PetscObject)bv),PETSC_ERR_SUP,"Column %D already fetched in a previous call to BVGetColumn",j);
+1152:   l = BVAvailableVec;
+1153:   if (l==-1) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_SUP,"Too many requested columns; you must call BVRestoreColumn for one of the previously fetched columns");
+1154:   (*bv->ops->getcolumn)(bv,j,v);
+1155:   bv->ci[l] = j;
+1156:   PetscObjectStateGet((PetscObject)bv->cv[l],&bv->st[l]);
+1157:   PetscObjectGetId((PetscObject)bv->cv[l],&bv->id[l]);
+1158:   *v = bv->cv[l];
+1159:   return(0);
+1160: }
+
+1162: /*@
+1163:    BVRestoreColumn - Restore a column obtained with BVGetColumn().
+
+1165:    Logically Collective on bv
+
+1167:    Input Parameters:
+1168: +  bv - the basis vectors context
+1169: .  j  - the index of the column
+1170: -  v  - vector obtained with BVGetColumn()
+
+1172:    Note:
+1173:    The arguments must match the corresponding call to BVGetColumn().
+
+1175:    Level: beginner
+
+1177: .seealso: BVGetColumn()
+1178: @*/
+1179: PetscErrorCode BVRestoreColumn(BV bv,PetscInt j,Vec *v)
+1180: {
+1181:   PetscErrorCode   ierr;
+1182:   PetscObjectId    id;
+1183:   PetscObjectState st;
+1184:   PetscInt         l;
+
+1189:   BVCheckSizes(bv,1);
+1193:   if (j<0 && -j>bv->nc) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested constraint %D but only %D are available",-j,bv->nc);
+1194:   if (j>=bv->m) SETERRQ2(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_OUTOFRANGE,"You requested column %D but only %D are available",j,bv->m);
+1195:   if (j!=bv->ci[0] && j!=bv->ci[1]) SETERRQ1(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Column %D has not been fetched with a call to BVGetColumn",j);
+1196:   l = (j==bv->ci[0])? 0: 1;
+1197:   PetscObjectGetId((PetscObject)*v,&id);
+1198:   if (id!=bv->id[l]) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Argument 3 is not the same Vec that was obtained with BVGetColumn");
+1199:   PetscObjectStateGet((PetscObject)*v,&st);
+1200:   if (st!=bv->st[l]) {
+1201:     PetscObjectStateIncrease((PetscObject)bv);
+1202:   }
+1203:   if (bv->ops->restorecolumn) {
+1204:     (*bv->ops->restorecolumn)(bv,j,v);
+1205:   } else bv->cv[l] = NULL;
+1206:   bv->ci[l] = -bv->nc-1;
+1207:   bv->st[l] = -1;
+1208:   bv->id[l] = 0;
+1209:   *v = NULL;
+1210:   return(0);
+1211: }
+
+1213: /*@C
+1214:    BVGetArray - Returns a pointer to a contiguous array that contains this
+1215:    processor's portion of the BV data.
+
+1217:    Logically Collective on bv
+
+1219:    Input Parameters:
+1220: .  bv - the basis vectors context
+
+1222:    Output Parameter:
+1223: .  a  - location to put pointer to the array
+
+1225:    Notes:
+1226:    BVRestoreArray() must be called when access to the array is no longer needed.
+1227:    This operation may imply a data copy, for BV types that do not store
+1228:    data contiguously in memory.
+
+1230:    The pointer will normally point to the first entry of the first column,
+1231:    but if the BV has constraints then these go before the regular columns.
+
+1233:    Level: advanced
+
+1235: .seealso: BVRestoreArray(), BVInsertConstraints()
+1236: @*/
+1237: PetscErrorCode BVGetArray(BV bv,PetscScalar **a)
+1238: {
+
+1244:   BVCheckSizes(bv,1);
+1245:   BVCheckOp(bv,1,getarray);
+1246:   (*bv->ops->getarray)(bv,a);
+1247:   return(0);
+1248: }
+
+1250: /*@C
+1251:    BVRestoreArray - Restore the BV object after BVGetArray() has been called.
+
+1253:    Logically Collective on bv
+
+1255:    Input Parameters:
+1256: +  bv - the basis vectors context
+1257: -  a  - location of pointer to array obtained from BVGetArray()
+
+1259:    Note:
+1260:    This operation may imply a data copy, for BV types that do not store
+1261:    data contiguously in memory.
+
+1263:    Level: advanced
+
+1265: .seealso: BVGetColumn()
+1266: @*/
+1267: PetscErrorCode BVRestoreArray(BV bv,PetscScalar **a)
+1268: {
+
+1274:   BVCheckSizes(bv,1);
+1275:   if (bv->ops->restorearray) {
+1276:     (*bv->ops->restorearray)(bv,a);
+1277:   }
+1278:   if (a) *a = NULL;
+1279:   PetscObjectStateIncrease((PetscObject)bv);
+1280:   return(0);
+1281: }
+
+1283: /*@C
+1284:    BVGetArrayRead - Returns a read-only pointer to a contiguous array that
+1285:    contains this processor's portion of the BV data.
+
+1287:    Not Collective
+
+1289:    Input Parameters:
+1290: .  bv - the basis vectors context
+
+1292:    Output Parameter:
+1293: .  a  - location to put pointer to the array
+
+1295:    Notes:
+1296:    BVRestoreArrayRead() must be called when access to the array is no
+1297:    longer needed. This operation may imply a data copy, for BV types that
+1298:    do not store data contiguously in memory.
+
+1300:    The pointer will normally point to the first entry of the first column,
+1301:    but if the BV has constraints then these go before the regular columns.
+
+1303:    Level: advanced
+
+1305: .seealso: BVRestoreArray(), BVInsertConstraints()
+1306: @*/
+1307: PetscErrorCode BVGetArrayRead(BV bv,const PetscScalar **a)
+1308: {
+
+1314:   BVCheckSizes(bv,1);
+1315:   BVCheckOp(bv,1,getarrayread);
+1316:   (*bv->ops->getarrayread)(bv,a);
+1317:   return(0);
+1318: }
+
+1320: /*@C
+1321:    BVRestoreArrayRead - Restore the BV object after BVGetArrayRead() has
+1322:    been called.
+
+1324:    Not Collective
+
+1326:    Input Parameters:
+1327: +  bv - the basis vectors context
+1328: -  a  - location of pointer to array obtained from BVGetArrayRead()
+
+1330:    Level: advanced
+
+1332: .seealso: BVGetColumn()
+1333: @*/
+1334: PetscErrorCode BVRestoreArrayRead(BV bv,const PetscScalar **a)
+1335: {
+
+1341:   BVCheckSizes(bv,1);
+1342:   if (bv->ops->restorearrayread) {
+1343:     (*bv->ops->restorearrayread)(bv,a);
+1344:   }
+1345:   if (a) *a = NULL;
+1346:   return(0);
+1347: }
+
+1349: /*@
+1350:    BVCreateVec - Creates a new Vec object with the same type and dimensions
+1351:    as the columns of the basis vectors object.
+
+1353:    Collective on bv
+
+1355:    Input Parameter:
+1356: .  bv - the basis vectors context
+
+1358:    Output Parameter:
+1359: .  v  - the new vector
+
+1361:    Note:
+1362:    The user is responsible of destroying the returned vector.
+
+1364:    Level: beginner
+
+1366: .seealso: BVCreateMat()
+1367: @*/
+1368: PetscErrorCode BVCreateVec(BV bv,Vec *v)
+1369: {
+
+1374:   BVCheckSizes(bv,1);
+1376:   VecDuplicate(bv->t,v);
+1377:   return(0);
+1378: }
+
+1380: /*@
+1381:    BVCreateMat - Creates a new Mat object of dense type and copies the contents
+1382:    of the BV object.
+
+1384:    Collective on bv
+
+1386:    Input Parameter:
+1387: .  bv - the basis vectors context
+
+1389:    Output Parameter:
+1390: .  A  - the new matrix
+
+1392:    Notes:
+1393:    The user is responsible of destroying the returned matrix.
+
+1395:    The matrix contains all columns of the BV, not just the active columns.
+
+1397:    Level: intermediate
+
+1399: .seealso: BVCreateFromMat(), BVCreateVec(), BVGetMat()
+1400: @*/
+1401: PetscErrorCode BVCreateMat(BV bv,Mat *A)
+1402: {
+1403:   PetscErrorCode    ierr;
+1404:   PetscScalar       *aa;
+1405:   const PetscScalar *vv;
+
+1409:   BVCheckSizes(bv,1);
+
+1412:   MatCreateDense(PetscObjectComm((PetscObject)bv->t),bv->n,PETSC_DECIDE,bv->N,bv->m,NULL,A);
+1413:   MatDenseGetArray(*A,&aa);
+1414:   BVGetArrayRead(bv,&vv);
+1415:   PetscArraycpy(aa,vv,bv->m*bv->n);
+1416:   BVRestoreArrayRead(bv,&vv);
+1417:   MatDenseRestoreArray(*A,&aa);
+1418:   MatAssemblyBegin(*A,MAT_FINAL_ASSEMBLY);
+1419:   MatAssemblyEnd(*A,MAT_FINAL_ASSEMBLY);
+1420:   return(0);
+1421: }
+
+1423: /*@
+1424:    BVGetMat - Returns a Mat object of dense type that shares the memory of
+1425:    the BV object.
+
+1427:    Collective on bv
+
+1429:    Input Parameter:
+1430: .  bv - the basis vectors context
+
+1432:    Output Parameter:
+1433: .  A  - the matrix
+
+1435:    Notes:
+1436:    The returned matrix contains only the active columns. If the content of
+1437:    the Mat is modified, these changes are also done in the BV object. The
+1438:    user must call BVRestoreMat() when no longer needed.
+
+1440:    This operation implies a call to BVGetArray(), which may result in data
+1441:    copies.
+
+1443:    Level: advanced
+
+1445: .seealso: BVRestoreMat(), BVCreateMat(), BVGetArray()
+1446: @*/
+1447: PetscErrorCode BVGetMat(BV bv,Mat *A)
+1448: {
+1450:   PetscScalar    *vv,*aa;
+1451:   PetscBool      create=PETSC_FALSE;
+1452:   PetscInt       m,cols;
+
+1456:   BVCheckSizes(bv,1);
+1458:   if (bv->ops->getmat) {
+1459:     (*bv->ops->getmat)(bv,A);
+1460:   } else {
+1461:     m = bv->k-bv->l;
+1462:     if (!bv->Aget) create=PETSC_TRUE;
+1463:     else {
+1464:       MatDenseGetArray(bv->Aget,&aa);
+1465:       if (aa) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"BVGetMat already called on this BV");
+1466:       MatGetSize(bv->Aget,NULL,&cols);
+1467:       if (cols!=m) {
+1468:         MatDestroy(&bv->Aget);
+1469:         create=PETSC_TRUE;
+1470:       }
+1471:     }
+1472:     BVGetArray(bv,&vv);
+1473:     if (create) {
+1474:       MatCreateDense(PetscObjectComm((PetscObject)bv),bv->n,PETSC_DECIDE,bv->N,m,vv,&bv->Aget); /* pass a pointer to avoid allocation of storage */
+1475:       MatDenseReplaceArray(bv->Aget,NULL);  /* replace with a null pointer, the value after BVRestoreMat */
+1476:       PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->Aget);
+1477:     }
+1478:     MatDensePlaceArray(bv->Aget,vv+(bv->nc+bv->l)*bv->n);  /* set the actual pointer */
+1479:     *A = bv->Aget;
+1480:   }
+1481:   return(0);
+1482: }
+
+1484: /*@
+1485:    BVRestoreMat - Restores the Mat obtained with BVGetMat().
+
+1487:    Logically Collective on bv
+
+1489:    Input Parameters:
+1490: +  bv - the basis vectors context
+1491: -  A  - the fetched matrix
+
+1493:    Note:
+1494:    A call to this function must match a previous call of BVGetMat().
+1495:    The effect is that the contents of the Mat are copied back to the
+1496:    BV internal data structures.
+
+1498:    Level: advanced
+
+1500: .seealso: BVGetMat(), BVRestoreArray()
+1501: @*/
+1502: PetscErrorCode BVRestoreMat(BV bv,Mat *A)
+1503: {
+1505:   PetscScalar    *vv,*aa;
+
+1509:   BVCheckSizes(bv,1);
+1511:   if (!bv->Aget) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"BVRestoreMat must match a previous call to BVGetMat");
+1512:   if (bv->Aget!=*A) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Mat argument is not the same as the one obtained with BVGetMat");
+1513:   if (bv->ops->restoremat) {
+1514:     (*bv->ops->restoremat)(bv,A);
+1515:   } else {
+1516:     MatDenseGetArray(bv->Aget,&aa);
+1517:     vv = aa-(bv->nc+bv->l)*bv->n;
+1518:     MatDenseResetArray(bv->Aget);
+1519:     BVRestoreArray(bv,&vv);
+1520:     *A = NULL;
+1521:   }
+1522:   return(0);
+1523: }
+
+1525: /*
+1526:    Copy all user-provided attributes of V to another BV object W
+1527:  */
+1528: PETSC_STATIC_INLINE PetscErrorCode BVDuplicate_Private(BV V,BV W)
+1529: {
+
+1533:   BVSetType(W,((PetscObject)V)->type_name);
+1534:   W->orthog_type  = V->orthog_type;
+1535:   W->orthog_ref   = V->orthog_ref;
+1536:   W->orthog_eta   = V->orthog_eta;
+1537:   W->orthog_block = V->orthog_block;
+1538:   if (V->matrix) { PetscObjectReference((PetscObject)V->matrix); }
+1539:   W->matrix       = V->matrix;
+1540:   W->indef        = V->indef;
+1541:   W->vmm          = V->vmm;
+1542:   W->rrandom      = V->rrandom;
+1543:   if (V->rand) { PetscObjectReference((PetscObject)V->rand); }
+1544:   W->rand         = V->rand;
+1545:   if (V->ops->duplicate) { (*V->ops->duplicate)(V,W); }
+1546:   PetscObjectStateIncrease((PetscObject)W);
+1547:   return(0);
+1548: }
+
+1550: /*@
+1551:    BVDuplicate - Creates a new basis vector object of the same type and
+1552:    dimensions as an existing one.
+
+1554:    Collective on V
+
+1556:    Input Parameter:
+1557: .  V - basis vectors context
+
+1559:    Output Parameter:
+1560: .  W - location to put the new BV
+
+1562:    Notes:
+1563:    The new BV has the same type and dimensions as V, and it shares the same
+1564:    template vector. Also, the inner product matrix and orthogonalization
+1565:    options are copied.
+
+1567:    BVDuplicate() DOES NOT COPY the entries, but rather allocates storage
+1568:    for the new basis vectors. Use BVCopy() to copy the contents.
+
+1570:    Level: intermediate
+
+1572: .seealso: BVDuplicateResize(), BVCreate(), BVSetSizesFromVec(), BVCopy()
+1573: @*/
+1574: PetscErrorCode BVDuplicate(BV V,BV *W)
+1575: {
+
+1581:   BVCheckSizes(V,1);
+1583:   BVCreate(PetscObjectComm((PetscObject)V),W);
+1584:   BVSetSizesFromVec(*W,V->t,V->m);
+1585:   BVDuplicate_Private(V,*W);
+1586:   return(0);
+1587: }
+
+1589: /*@
+1590:    BVDuplicateResize - Creates a new basis vector object of the same type and
+1591:    dimensions as an existing one, but with possibly different number of columns.
+
+1593:    Collective on V
+
+1595:    Input Parameter:
+1596: +  V - basis vectors context
+1597: -  m - the new number of columns
+
+1599:    Output Parameter:
+1600: .  W - location to put the new BV
+
+1602:    Note:
+1603:    This is equivalent of a call to BVDuplicate() followed by BVResize(). The
+1604:    contents of V are not copied to W.
+
+1606:    Level: intermediate
+
+1608: .seealso: BVDuplicate(), BVResize()
+1609: @*/
+1610: PetscErrorCode BVDuplicateResize(BV V,PetscInt m,BV *W)
+1611: {
+
+1617:   BVCheckSizes(V,1);
+1620:   BVCreate(PetscObjectComm((PetscObject)V),W);
+1621:   BVSetSizesFromVec(*W,V->t,m);
+1622:   BVDuplicate_Private(V,*W);
+1623:   return(0);
+1624: }
+
+1626: /*@
+1627:    BVGetCachedBV - Returns a BV object stored internally that holds the
+1628:    result of B*X after a call to BVApplyMatrixBV().
+
+1630:    Not collective
+
+1632:    Input Parameter:
+1633: .  bv    - the basis vectors context
+
+1635:    Output Parameter:
+1636: .  cached - the cached BV
+
+1638:    Note:
+1639:    The cached BV is created if not available previously.
+
+1641:    Level: developer
+
+1643: .seealso: BVApplyMatrixBV()
+1644: @*/
+1645: PetscErrorCode BVGetCachedBV(BV bv,BV *cached)
+1646: {
+
+1652:   BVCheckSizes(bv,1);
+1653:   if (!bv->cached) {
+1654:     BVCreate(PetscObjectComm((PetscObject)bv),&bv->cached);
+1655:     BVSetSizesFromVec(bv->cached,bv->t,bv->m);
+1656:     BVDuplicate_Private(bv,bv->cached);
+1657:     PetscLogObjectParent((PetscObject)bv,(PetscObject)bv->cached);
+1658:   }
+1659:   *cached = bv->cached;
+1660:   return(0);
+1661: }
+
+1663: /*@
+1664:    BVCopy - Copies a basis vector object into another one, W <- V.
+
+1666:    Logically Collective on V
+
+1668:    Input Parameter:
+1669: .  V - basis vectors context
+
+1671:    Output Parameter:
+1672: .  W - the copy
+
+1674:    Note:
+1675:    Both V and W must be distributed in the same manner; local copies are
+1676:    done. Only active columns (excluding the leading ones) are copied.
+1677:    In the destination W, columns are overwritten starting from the leading ones.
+1678:    Constraints are not copied.
+
+1680:    Level: beginner
+
+1682: .seealso: BVCopyVec(), BVCopyColumn(), BVDuplicate(), BVSetActiveColumns()
+1683: @*/
+1684: PetscErrorCode BVCopy(BV V,BV W)
+1685: {
+1686:   PetscErrorCode    ierr;
+1687:   PetscScalar       *womega;
+1688:   const PetscScalar *vomega;
+
+1693:   BVCheckSizes(V,1);
+1694:   BVCheckOp(V,1,copy);
+1697:   BVCheckSizes(W,2);
+1699:   if (V->n!=W->n) SETERRQ2(PetscObjectComm((PetscObject)V),PETSC_ERR_ARG_INCOMP,"Mismatching local dimension V %D, W %D",V->n,W->n);
+1700:   if (V->k-V->l>W->m-W->l) SETERRQ2(PetscObjectComm((PetscObject)V),PETSC_ERR_ARG_SIZ,"W has %D non-leading columns, not enough to store %D columns",W->m-W->l,V->k-V->l);
+1701:   if (V==W || !V->n) return(0);
+
+1703:   PetscLogEventBegin(BV_Copy,V,W,0,0);
+1704:   if (V->indef && V->matrix && V->indef==W->indef && V->matrix==W->matrix) {
+1705:     /* copy signature */
+1706:     BV_AllocateSignature(W);
+1707:     VecGetArrayRead(V->omega,&vomega);
+1708:     VecGetArray(W->omega,&womega);
+1709:     PetscArraycpy(womega+W->nc+W->l,vomega+V->nc+V->l,V->k-V->l);
+1710:     VecRestoreArray(W->omega,&womega);
+1711:     VecRestoreArrayRead(V->omega,&vomega);
+1712:   }
+1713:   (*V->ops->copy)(V,W);
+1714:   PetscLogEventEnd(BV_Copy,V,W,0,0);
+1715:   PetscObjectStateIncrease((PetscObject)W);
+1716:   return(0);
+1717: }
+
+1719: /*@
+1720:    BVCopyVec - Copies one of the columns of a basis vectors object into a Vec.
+
+1722:    Logically Collective on V
+
+1724:    Input Parameter:
+1725: +  V - basis vectors context
+1726: -  j - the column number to be copied
+
+1728:    Output Parameter:
+1729: .  w - the copied column
+
+1731:    Note:
+1732:    Both V and w must be distributed in the same manner; local copies are done.
+
+1734:    Level: beginner
+
+1736: .seealso: BVCopy(), BVCopyColumn(), BVInsertVec()
+1737: @*/
+1738: PetscErrorCode BVCopyVec(BV V,PetscInt j,Vec w)
+1739: {
+1741:   PetscInt       n,N;
+1742:   Vec            z;
+
+1747:   BVCheckSizes(V,1);
+
+1752:   VecGetSize(w,&N);
+1753:   VecGetLocalSize(w,&n);
+1754:   if (N!=V->N || n!=V->n) SETERRQ4(PetscObjectComm((PetscObject)V),PETSC_ERR_ARG_INCOMP,"Vec sizes (global %D, local %D) do not match BV sizes (global %D, local %D)",N,n,V->N,V->n);
+
+1756:   PetscLogEventBegin(BV_Copy,V,w,0,0);
+1757:   BVGetColumn(V,j,&z);
+1758:   VecCopy(z,w);
+1759:   BVRestoreColumn(V,j,&z);
+1760:   PetscLogEventEnd(BV_Copy,V,w,0,0);
+1761:   return(0);
+1762: }
+
+1764: /*@
+1765:    BVCopyColumn - Copies the values from one of the columns to another one.
+
+1767:    Logically Collective on V
+
+1769:    Input Parameter:
+1770: +  V - basis vectors context
+1771: .  j - the number of the source column
+1772: -  i - the number of the destination column
+
+1774:    Level: beginner
+
+1776: .seealso: BVCopy(), BVCopyVec()
+1777: @*/
+1778: PetscErrorCode BVCopyColumn(BV V,PetscInt j,PetscInt i)
+1779: {
+1781:   Vec            z,w;
+1782:   PetscScalar    *omega;
+
+1787:   BVCheckSizes(V,1);
+1790:   if (j==i) return(0);
+
+1792:   PetscLogEventBegin(BV_Copy,V,0,0,0);
+1793:   if (V->omega) {
+1794:     VecGetArray(V->omega,&omega);
+1795:     omega[i] = omega[j];
+1796:     VecRestoreArray(V->omega,&omega);
+1797:   }
+1798:   if (V->ops->copycolumn) {
+1799:     (*V->ops->copycolumn)(V,j,i);
+1800:   } else {
+1801:     BVGetColumn(V,j,&z);
+1802:     BVGetColumn(V,i,&w);
+1803:     VecCopy(z,w);
+1804:     BVRestoreColumn(V,j,&z);
+1805:     BVRestoreColumn(V,i,&w);
+1806:   }
+1807:   PetscLogEventEnd(BV_Copy,V,0,0,0);
+1808:   PetscObjectStateIncrease((PetscObject)V);
+1809:   return(0);
+1810: }
+
+1812: static PetscErrorCode BVGetSplit_Private(BV bv,PetscBool left,BV *split)
+1813: {
+1815:   PetscInt       ncols;
+
+1818:   ncols = left? bv->nc+bv->l: bv->m-bv->l;
+1819:   if (*split && ncols!=(*split)->m) { BVDestroy(split); }
+1820:   if (!*split) {
+1821:     BVCreate(PetscObjectComm((PetscObject)bv),split);
+1822:     PetscLogObjectParent((PetscObject)bv,(PetscObject)*split);
+1823:     (*split)->issplit = left? 1: 2;
+1824:     (*split)->splitparent = bv;
+1825:     BVSetSizesFromVec(*split,bv->t,ncols);
+1826:     BVDuplicate_Private(bv,*split);
+1827:   }
+1828:   (*split)->l  = 0;
+1829:   (*split)->k  = left? bv->l: bv->k-bv->l;
+1830:   (*split)->nc = left? bv->nc: 0;
+1831:   (*split)->m  = ncols-(*split)->nc;
+1832:   if ((*split)->nc) {
+1833:     (*split)->ci[0] = -(*split)->nc-1;
+1834:     (*split)->ci[1] = -(*split)->nc-1;
+1835:   }
+1836:   if (left) {
+1837:     PetscObjectStateGet((PetscObject)*split,&bv->lstate);
+1838:   } else {
+1839:     PetscObjectStateGet((PetscObject)*split,&bv->rstate);
+1840:   }
+1841:   return(0);
+1842: }
+
+1844: /*@
+1845:    BVGetSplit - Splits the BV object into two BV objects that share the
+1846:    internal data, one of them containing the leading columns and the other
+1847:    one containing the remaining columns.
+
+1849:    Logically Collective on bv
+
+1851:    Input Parameters:
+1852: .  bv - the basis vectors context
+
+1854:    Output Parameters:
+1855: +  L - left BV containing leading columns (can be NULL)
+1856: -  R - right BV containing remaining columns (can be NULL)
+
+1858:    Notes:
+1859:    The columns are split in two sets. The leading columns (including the
+1860:    constraints) are assigned to the left BV and the remaining columns
+1861:    are assigned to the right BV. The number of leading columns, as
+1862:    specified with BVSetActiveColumns(), must be between 1 and m-1 (to
+1863:    guarantee that both L and R have at least one column).
+
+1865:    The returned BV's must be seen as references (not copies) of the input
+1866:    BV, that is, modifying them will change the entries of bv as well.
+1867:    The returned BV's must not be destroyed. BVRestoreSplit() must be called
+1868:    when they are no longer needed.
+
+1870:    Pass NULL for any of the output BV's that is not needed.
+
+1872:    Level: advanced
+
+1874: .seealso: BVRestoreSplit(), BVSetActiveColumns(), BVSetNumConstraints()
+1875: @*/
+1876: PetscErrorCode BVGetSplit(BV bv,BV *L,BV *R)
+1877: {
+
+1883:   BVCheckSizes(bv,1);
+1884:   if (!bv->l) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Must indicate the number of leading columns with BVSetActiveColumns()");
+1885:   if (bv->lsplit) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Cannot get the split BV's twice before restoring them with BVRestoreSplit()");
+1886:   bv->lsplit = bv->nc+bv->l;
+1887:   BVGetSplit_Private(bv,PETSC_TRUE,&bv->L);
+1888:   BVGetSplit_Private(bv,PETSC_FALSE,&bv->R);
+1889:   if (L) *L = bv->L;
+1890:   if (R) *R = bv->R;
+1891:   return(0);
+1892: }
+
+1894: /*@
+1895:    BVRestoreSplit - Restore the BV objects obtained with BVGetSplit().
+
+1897:    Logically Collective on bv
+
+1899:    Input Parameters:
+1900: +  bv - the basis vectors context
+1901: .  L  - left BV obtained with BVGetSplit()
+1902: -  R  - right BV obtained with BVGetSplit()
+
+1904:    Note:
+1905:    The arguments must match the corresponding call to BVGetSplit().
+
+1907:    Level: advanced
+
+1909: .seealso: BVGetSplit()
+1910: @*/
+1911: PetscErrorCode BVRestoreSplit(BV bv,BV *L,BV *R)
+1912: {
+
+1918:   BVCheckSizes(bv,1);
+1919:   if (!bv->lsplit) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Must call BVGetSplit first");
+1920:   if (L && *L!=bv->L) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Argument 2 is not the same BV that was obtained with BVGetSplit");
+1921:   if (R && *R!=bv->R) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONG,"Argument 3 is not the same BV that was obtained with BVGetSplit");
+1922:   if (L && ((*L)->ci[0]>(*L)->nc-1 || (*L)->ci[1]>(*L)->nc-1)) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Argument 2 has unrestored columns, use BVRestoreColumn()");
+1923:   if (R && ((*R)->ci[0]>(*R)->nc-1 || (*R)->ci[1]>(*R)->nc-1)) SETERRQ(PetscObjectComm((PetscObject)bv),PETSC_ERR_ARG_WRONGSTATE,"Argument 3 has unrestored columns, use BVRestoreColumn()");
+
+1925:   if (bv->ops->restoresplit) {
+1926:     (*bv->ops->restoresplit)(bv,L,R);
+1927:   }
+1928:   bv->lsplit = 0;
+1929:   if (L) *L = NULL;
+1930:   if (R) *R = NULL;
+1931:   return(0);
+1932: }
 
 
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvbiorthog.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvbiorthog.c.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvbiorthog.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvbiorthog.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvblas.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvblas.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvblas.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvblas.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvfunc.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvglobal.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvkrylov.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvkrylov.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvkrylov.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvkrylov.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvlapack.c slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvlapack.c
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvlapack.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvlapack.c	2021-02-01 14:43:03.000000000 +0000
@@ -304,7 +304,7 @@
   ierr = PetscMalloc4(n,&eig,n,&D,lwork,&work,PetscMax(1,3*n-2),&rwork);CHKERRQ(ierr);
 #else
   PetscStackCallBLAS("LAPACKsyev",LAPACKsyev_("V","L",&n_,pS,&lds_,&dummy,&a,&lwork,&info));
-  ierr = PetscBLASIntCast((PetscInt)PetscRealPart(a),&lwork);CHKERRQ(ierr);
+  ierr = PetscBLASIntCast((PetscInt)a,&lwork);CHKERRQ(ierr);
   ierr = PetscMalloc3(n,&eig,n,&D,lwork,&work);CHKERRQ(ierr);
 #endif
 
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvlapack.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -306,7 +306,7 @@
 304:   PetscMalloc4(n,&eig,n,&D,lwork,&work,PetscMax(1,3*n-2),&rwork);
 305: #else
 306:   PetscStackCallBLAS("LAPACKsyev",LAPACKsyev_("V","L",&n_,pS,&lds_,&dummy,&a,&lwork,&info));
-307:   PetscBLASIntCast((PetscInt)PetscRealPart(a),&lwork);
+307:   PetscBLASIntCast((PetscInt)a,&lwork);
 308:   PetscMalloc3(n,&eig,n,&D,lwork,&work);
 309: #endif
 
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvops.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvops.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvops.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvops.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvorthog.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvregis.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvregis.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/bvregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/bvregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/cuda/bvorthogcuda.cu.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/cuda/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/cuda/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/cuda/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/cuda/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/cuda/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/index.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Basis Vectors - BV

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test10.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test10.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test10.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test10.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test11.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test11.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test11.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test11.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test12.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test12.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test12.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test12.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test13.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test13.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test13.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test13.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test14.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test14.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test14.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test14.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test15.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test15.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test15.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test15.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test16.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test16.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test16.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test16.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test17.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test17.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test17.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test17.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test18.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test18.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test18.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test18.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test1f.F90.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test1f.F90.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test1f.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test1f.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test2.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test3.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test4.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test5.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test6.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test7.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test7.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test7.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test7.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test8.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test8.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test8.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test8.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test9.c.html slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test9.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/bv/tests/test9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/bv/tests/test9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/ftn-auto-interfaces/slepcds.h90 slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/ftn-auto-interfaces/slepcds.h90
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/ftn-auto-interfaces/slepcds.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/ftn-auto-interfaces/slepcds.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,35 +1,35 @@
-      subroutine DSNEPSetFN(a,b,c,z)
+      subroutine DSPEPSetDegree(a,b,z)
       use slepcdsdef
        DS a ! DS
        PetscInt b ! PetscInt
-       FN c (*) ! FN
         PetscErrorCode z
-       end subroutine DSNEPSetFN
-      subroutine DSNEPGetFN(a,b,c,z)
+       end subroutine DSPEPSetDegree
+      subroutine DSPEPGetDegree(a,b,z)
       use slepcdsdef
        DS a ! DS
        PetscInt b ! PetscInt
-       FN c ! FN
         PetscErrorCode z
-       end subroutine DSNEPGetFN
-      subroutine DSNEPGetNumFN(a,b,z)
+       end subroutine DSPEPGetDegree
+      subroutine DSNEPSetFN(a,b,c,z)
       use slepcdsdef
        DS a ! DS
        PetscInt b ! PetscInt
+       FN c (*) ! FN
         PetscErrorCode z
-       end subroutine DSNEPGetNumFN
-      subroutine DSPEPSetDegree(a,b,z)
+       end subroutine DSNEPSetFN
+      subroutine DSNEPGetFN(a,b,c,z)
       use slepcdsdef
        DS a ! DS
        PetscInt b ! PetscInt
+       FN c ! FN
         PetscErrorCode z
-       end subroutine DSPEPSetDegree
-      subroutine DSPEPGetDegree(a,b,z)
+       end subroutine DSNEPGetFN
+      subroutine DSNEPGetNumFN(a,b,z)
       use slepcdsdef
        DS a ! DS
        PetscInt b ! PetscInt
         PetscErrorCode z
-       end subroutine DSPEPGetDegree
+       end subroutine DSNEPGetNumFN
       subroutine DSSetIdentity(a,b,z)
       use slepcdsdef
        DS a ! DS
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/f90-mod/slepcds.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghep/dsghep.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghep/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghep/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghep/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/dsghiep.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/hz.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/invit.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/ghiep/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/gnhep/dsgnhep.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/gnhep/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/gnhep/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/gnhep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/gnhep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/gnhep/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dibtdc.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dlaed3m.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dmerg2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsbtdc.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/dsrtdf.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/bdc/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/dshep.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/hep/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/hep/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nep/dsnep.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nep/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nep/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nep/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nep/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nep/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nep/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nhep/dsnhep.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nhep/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nhep/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nhep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nhep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/nhep/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/pep/dspep.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/pep/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/pep/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/pep/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/pep/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/pep/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/pep/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/pep/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/pep/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/svd/dssvd.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/svd/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/svd/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/svd/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/svd/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/svd/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/svd/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/impls/svd/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/impls/svd/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/dsbasic.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/dsops.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/dsops.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/dsops.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/dsops.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/dspriv.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/dspriv.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/dspriv.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/dspriv.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/index.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Direct Solver (or Dense System) - DS

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test12.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test12.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test12.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test12.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test13.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test13.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test13.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test13.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test14f.F90.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test14f.F90.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test14f.F90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test14f.F90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test15.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test15.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test15.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test15.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test16.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test16.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test16.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test16.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test17.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test17.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test17.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test17.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test18.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test18.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test18.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test18.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test19.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test19.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test19.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test19.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test20.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test20.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test20.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test20.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test2.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test3.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test4.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test5.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test6.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test7.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test7.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test7.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test7.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test8.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test8.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test8.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test8.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test9.c.html slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test9.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/ds/tests/test9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/ds/tests/test9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90 slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/ftn-auto-interfaces/slepcfn.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,3 +1,31 @@
+      subroutine FNPhiSetIndex(a,b,z)
+      use slepcfndef
+       FN a ! FN
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine FNPhiSetIndex
+      subroutine FNPhiGetIndex(a,b,z)
+      use slepcfndef
+       FN a ! FN
+       PetscInt b ! PetscInt
+        PetscErrorCode z
+       end subroutine FNPhiGetIndex
+      subroutine FNCombineSetChildren(a,b,c,d,z)
+      use slepcfndef
+       FN a ! FN
+       FNCombineType b ! FNCombineType
+       FN c ! FN
+       FN d ! FN
+        PetscErrorCode z
+       end subroutine FNCombineSetChildren
+      subroutine FNCombineGetChildren(a,b,c,d,z)
+      use slepcfndef
+       FN a ! FN
+       FNCombineType b ! FNCombineType
+       FN c ! FN
+       FN d ! FN
+        PetscErrorCode z
+       end subroutine FNCombineGetChildren
       subroutine FNCreate(a,b,z)
       use slepcfndef
       MPI_Comm a ! MPI_Comm
@@ -87,31 +115,3 @@
        FN a ! FN
         PetscErrorCode z
        end subroutine FNDestroy
-      subroutine FNPhiSetIndex(a,b,z)
-      use slepcfndef
-       FN a ! FN
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine FNPhiSetIndex
-      subroutine FNPhiGetIndex(a,b,z)
-      use slepcfndef
-       FN a ! FN
-       PetscInt b ! PetscInt
-        PetscErrorCode z
-       end subroutine FNPhiGetIndex
-      subroutine FNCombineSetChildren(a,b,c,d,z)
-      use slepcfndef
-       FN a ! FN
-       FNCombineType b ! FNCombineType
-       FN c ! FN
-       FN d ! FN
-        PetscErrorCode z
-       end subroutine FNCombineSetChildren
-      subroutine FNCombineGetChildren(a,b,c,d,z)
-      use slepcfndef
-       FN a ! FN
-       FNCombineType b ! FNCombineType
-       FN c ! FN
-       FN d ! FN
-        PetscErrorCode z
-       end subroutine FNCombineGetChildren
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/f90-mod/slepcfn.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/combine/fncombine.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/combine/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/combine/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/combine/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/combine/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/combine/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/combine/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/combine/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/combine/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c	2021-02-01 14:43:03.000000000 +0000
@@ -449,7 +449,7 @@
 #if !defined(PETSC_USE_COMPLEX)
   PetscStackCallBLAS("LAPACKgeev",LAPACKgeev_("N","N",&n,sMaux,&n,wr,wi,NULL,&n,NULL,&n,&work1,&query,&info));
   SlepcCheckLapackInfo("geev",info);
-  ierr = PetscBLASIntCast((PetscInt)PetscRealPart(work1),&lwork);CHKERRQ(ierr);
+  ierr = PetscBLASIntCast((PetscInt)work1,&lwork);CHKERRQ(ierr);
   ierr = PetscMalloc1(lwork,&work);CHKERRQ(ierr);
   PetscStackCallBLAS("LAPACKgeev",LAPACKgeev_("N","N",&n,sMaux,&n,wr,wi,NULL,&n,NULL,&n,work,&lwork,&info));
   ierr = PetscFree(work);CHKERRQ(ierr);
@@ -822,11 +822,11 @@
   const PetscScalar c3[4]   = { 120, 60, 12, 1 };
   const PetscScalar c5[6]   = { 30240, 15120, 3360, 420, 30, 1 };
   const PetscScalar c7[8]   = { 17297280, 8648640, 1995840, 277200, 25200, 1512, 56, 1 };
-  const PetscScalar c9[10]  = { 17643225600, 8821612800, 2075673600, 302702400, 30270240,
+  const PetscScalar c9[10]  = { 17643225600.0, 8821612800.0, 2075673600, 302702400, 30270240,
                                 2162160, 110880, 3960, 90, 1 };
-  const PetscScalar c13[14] = { 64764752532480000, 32382376266240000, 7771770303897600,
-                                1187353796428800,  129060195264000,   10559470521600,
-                                670442572800,      33522128640,       1323241920,
+  const PetscScalar c13[14] = { 64764752532480000.0, 32382376266240000.0, 7771770303897600.0,
+                                1187353796428800.0,  129060195264000.0,   10559470521600.0,
+                                670442572800.0,      33522128640.0,       1323241920.0,
                                 40840800,          960960,            16380,  182,  1 };
 
   PetscFunctionBegin;
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/fnexp.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -451,7 +451,7 @@
 449: #if !defined(PETSC_USE_COMPLEX)
 450:   PetscStackCallBLAS("LAPACKgeev",LAPACKgeev_("N","N",&n,sMaux,&n,wr,wi,NULL,&n,NULL,&n,&work1,&query,&info));
 451:   SlepcCheckLapackInfo("geev",info);
-452:   PetscBLASIntCast((PetscInt)PetscRealPart(work1),&lwork);
+452:   PetscBLASIntCast((PetscInt)work1,&lwork);
 453:   PetscMalloc1(lwork,&work);
 454:   PetscStackCallBLAS("LAPACKgeev",LAPACKgeev_("N","N",&n,sMaux,&n,wr,wi,NULL,&n,NULL,&n,work,&lwork,&info));
 455:   PetscFree(work);
@@ -821,11 +821,11 @@
 822:   const PetscScalar c3[4]   = { 120, 60, 12, 1 };
 823:   const PetscScalar c5[6]   = { 30240, 15120, 3360, 420, 30, 1 };
 824:   const PetscScalar c7[8]   = { 17297280, 8648640, 1995840, 277200, 25200, 1512, 56, 1 };
-825:   const PetscScalar c9[10]  = { 17643225600, 8821612800, 2075673600, 302702400, 30270240,
+825:   const PetscScalar c9[10]  = { 17643225600.0, 8821612800.0, 2075673600, 302702400, 30270240,
 826:                                 2162160, 110880, 3960, 90, 1 };
-827:   const PetscScalar c13[14] = { 64764752532480000, 32382376266240000, 7771770303897600,
-828:                                 1187353796428800,  129060195264000,   10559470521600,
-829:                                 670442572800,      33522128640,       1323241920,
+827:   const PetscScalar c13[14] = { 64764752532480000.0, 32382376266240000.0, 7771770303897600.0,
+828:                                 1187353796428800.0,  129060195264000.0,   10559470521600.0,
+829:                                 670442572800.0,      33522128640.0,       1323241920.0,
 830:                                 40840800,          960960,            16380,  182,  1 };
 
 833:   MatDenseGetArray(A,&Aa);
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/exp/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/exp/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/fnutil.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/fnutil.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/fnutil.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/fnutil.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/invsqrt/fninvsqrt.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/invsqrt/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/invsqrt/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/fnlog.c slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/fnlog.c
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/fnlog.c	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/fnlog.c	2021-02-01 14:43:03.000000000 +0000
@@ -416,7 +416,7 @@
   ierr = PetscMalloc3(n,&eig,lwork,&work,PetscMax(1,3*n-2),&rwork);CHKERRQ(ierr);
 #else
   PetscStackCallBLAS("LAPACKsyev",LAPACKsyev_("V","L",&n,Q,&ld,&dummy,&a,&lwork,&info));
-  ierr = PetscBLASIntCast((PetscInt)PetscRealPart(a),&lwork);CHKERRQ(ierr);
+  ierr = PetscBLASIntCast((PetscInt)a,&lwork);CHKERRQ(ierr);
   ierr = PetscMalloc2(n,&eig,lwork,&work);CHKERRQ(ierr);
 #endif
 
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/fnlog.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -417,7 +417,7 @@
 416:   PetscMalloc3(n,&eig,lwork,&work,PetscMax(1,3*n-2),&rwork);
 417: #else
 418:   PetscStackCallBLAS("LAPACKsyev",LAPACKsyev_("V","L",&n,Q,&ld,&dummy,&a,&lwork,&info));
-419:   PetscBLASIntCast((PetscInt)PetscRealPart(a),&lwork);
+419:   PetscBLASIntCast((PetscInt)a,&lwork);
 420:   PetscMalloc2(n,&eig,lwork,&work);
 421: #endif
 
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/log/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/log/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/phi/fnphi.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/phi/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/phi/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/phi/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/phi/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/phi/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/phi/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/phi/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/phi/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/rational/fnrational.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/rational/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/rational/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/rational/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/rational/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/rational/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/rational/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/rational/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/rational/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/sqrt/fnsqrt.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/sqrt/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/sqrt/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/sqrt/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/sqrt/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/impls/sqrt/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/fnbasic.c slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/fnbasic.c --- slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/fnbasic.c 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/fnbasic.c 2021-02-01 14:43:03.000000000 +0000 @@ -551,7 +551,7 @@ ierr = PetscMalloc5(m,&eig,m*m,&Q,m*k,&W,lwork,&work,PetscMax(1,3*m-2),&rwork);CHKERRQ(ierr); #else PetscStackCallBLAS("LAPACKsyev",LAPACKsyev_("V","L",&n,As,&ld,&dummy,&a,&lwork,&info)); - ierr = PetscBLASIntCast((PetscInt)PetscRealPart(a),&lwork);CHKERRQ(ierr); + ierr = PetscBLASIntCast((PetscInt)a,&lwork);CHKERRQ(ierr); ierr = PetscMalloc4(m,&eig,m*m,&Q,m*k,&W,lwork,&work);CHKERRQ(ierr); #endif diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/fnbasic.c.html 2021-02-01 14:43:03.000000000 +0000 @@ -4,12 +4,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -511,7 +511,7 @@
 551:   PetscMalloc5(m,&eig,m*m,&Q,m*k,&W,lwork,&work,PetscMax(1,3*m-2),&rwork);
 552: #else
 553:   PetscStackCallBLAS("LAPACKsyev",LAPACKsyev_("V","L",&n,As,&ld,&dummy,&a,&lwork,&info));
-554:   PetscBLASIntCast((PetscInt)PetscRealPart(a),&lwork);
+554:   PetscBLASIntCast((PetscInt)a,&lwork);
 555:   PetscMalloc4(m,&eig,m*m,&Q,m*k,&W,lwork,&work);
 556: #endif
 
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/fnregis.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/fnregis.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/fnregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/fnregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/index.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Mathematical Function - FN

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test10.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test10.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test10.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test10.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test11.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test11.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test11.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test11.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test12.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test12.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test12.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test12.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test13.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test13.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test13.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test13.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test1f.F.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test1f.F.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test1f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test1f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test2.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test3.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test4.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test5.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test6.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test7.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test7.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test7.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test7.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test7f.F.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test7f.F.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test7f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test7f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test8.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test8.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test8.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test8.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test9.c.html slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test9.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/fn/tests/test9.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/fn/tests/test9.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/index.html slepc-3.14.2+dfsg1/src/sys/classes/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90 slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/ftn-auto-interfaces/slepcrg.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,3 +1,20 @@
+      subroutine RGPolygonSetVertices(a,b,c,d,z)
+      use slepcrgdef
+       RG a ! RG
+       PetscInt b ! PetscInt
+       PetscScalar c (*) ! PetscScalar
+       PetscScalar d (*) ! PetscScalar
+        PetscErrorCode z
+       end subroutine RGPolygonSetVertices
+      subroutine RGIntervalSetEndpoints(a,b,c,d,e,z)
+      use slepcrgdef
+       RG a ! RG
+       PetscReal b ! PetscReal
+       PetscReal c ! PetscReal
+       PetscReal d ! PetscReal
+       PetscReal e ! PetscReal
+        PetscErrorCode z
+       end subroutine RGIntervalSetEndpoints
       subroutine RGRingSetParameters(a,b,c,d,e,f,g,z)
       use slepcrgdef
        RG a ! RG
@@ -20,15 +37,14 @@
        PetscReal g ! PetscReal
         PetscErrorCode z
        end subroutine RGRingGetParameters
-      subroutine RGIntervalSetEndpoints(a,b,c,d,e,z)
+      subroutine RGEllipseSetParameters(a,b,c,d,z)
       use slepcrgdef
        RG a ! RG
-       PetscReal b ! PetscReal
+       PetscScalar b ! PetscScalar
        PetscReal c ! PetscReal
        PetscReal d ! PetscReal
-       PetscReal e ! PetscReal
         PetscErrorCode z
-       end subroutine RGIntervalSetEndpoints
+       end subroutine RGEllipseSetParameters
       subroutine RGCreate(a,b,z)
       use slepcrgdef
       MPI_Comm a ! MPI_Comm
@@ -112,19 +128,3 @@
        RG a ! RG
         PetscErrorCode z
        end subroutine RGDestroy
-      subroutine RGEllipseSetParameters(a,b,c,d,z)
-      use slepcrgdef
-       RG a ! RG
-       PetscScalar b ! PetscScalar
-       PetscReal c ! PetscReal
-       PetscReal d ! PetscReal
-        PetscErrorCode z
-       end subroutine RGEllipseSetParameters
-      subroutine RGPolygonSetVertices(a,b,c,d,z)
-      use slepcrgdef
-       RG a ! RG
-       PetscInt b ! PetscInt
-       PetscScalar c (*) ! PetscScalar
-       PetscScalar d (*) ! PetscScalar
-        PetscErrorCode z
-       end subroutine RGPolygonSetVertices
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/f90-mod/slepcrg.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ellipse/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ellipse/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ellipse/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ellipse/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ellipse/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ellipse/rgellipse.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/interval/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/interval/index.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/interval/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/interval/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/interval/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/interval/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/interval/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/interval/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/interval/rginterval.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/polygon/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/polygon/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/polygon/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/polygon/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/polygon/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/polygon/rgpolygon.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ring/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ring/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ring/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ring/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ring/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ring/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ring/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ring/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/impls/ring/rgring.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/index.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/rgbasic.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/rgregis.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/rgregis.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/interface/rgregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/interface/rgregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/index.html slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Region - RG

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/test1f.F.html slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/test1f.F.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/test1f.F.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/test1f.F.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/test2.c.html slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/rg/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/rg/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90 slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90
--- slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/ftn-auto-interfaces/slepcst.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,27 +1,3 @@
-      subroutine STPrecondGetMatForPC(a,b,z)
-      use slepcstdef
-       ST a ! ST
-       Mat b ! Mat
-        PetscErrorCode z
-       end subroutine STPrecondGetMatForPC
-      subroutine STPrecondSetMatForPC(a,b,z)
-      use slepcstdef
-       ST a ! ST
-       Mat b ! Mat
-        PetscErrorCode z
-       end subroutine STPrecondSetMatForPC
-      subroutine STPrecondSetKSPHasMat(a,b,z)
-      use slepcstdef
-       ST a ! ST
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine STPrecondSetKSPHasMat
-      subroutine STPrecondGetKSPHasMat(a,b,z)
-      use slepcstdef
-       ST a ! ST
-       PetscBool b ! PetscBool
-        PetscErrorCode z
-       end subroutine STPrecondGetKSPHasMat
       subroutine STReset(a,z)
       use slepcstdef
        ST a ! ST
@@ -311,6 +287,30 @@
        PetscScalar b ! PetscScalar
         PetscErrorCode z
        end subroutine STCayleyGetAntishift
+      subroutine STPrecondGetMatForPC(a,b,z)
+      use slepcstdef
+       ST a ! ST
+       Mat b ! Mat
+        PetscErrorCode z
+       end subroutine STPrecondGetMatForPC
+      subroutine STPrecondSetMatForPC(a,b,z)
+      use slepcstdef
+       ST a ! ST
+       Mat b ! Mat
+        PetscErrorCode z
+       end subroutine STPrecondSetMatForPC
+      subroutine STPrecondSetKSPHasMat(a,b,z)
+      use slepcstdef
+       ST a ! ST
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine STPrecondSetKSPHasMat
+      subroutine STPrecondGetKSPHasMat(a,b,z)
+      use slepcstdef
+       ST a ! ST
+       PetscBool b ! PetscBool
+        PetscErrorCode z
+       end subroutine STPrecondGetKSPHasMat
       subroutine STFilterSetInterval(a,b,c,z)
       use slepcstdef
        ST a ! ST
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h90.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/f90-mod/slepcst.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: !
   2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/cayley/cayley.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/cayley/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/cayley/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/cayley/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/cayley/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/cayley/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/cayley/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/cayley/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/cayley/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/filter.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/filter.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/filter.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/filter.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/filter.h.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/filter.h.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/filter.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/filter.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/filtlan.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/filter/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/filter/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/precond/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/precond/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/precond/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/precond/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/precond/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/precond/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/precond/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/precond/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/precond/precond.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/precond/precond.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/precond/precond.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/precond/precond.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shell/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shell/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shell/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shell/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shell/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shell/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shell/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shell/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shell/shell.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shell/shell.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shell/shell.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shell/shell.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shift/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shift/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shift/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shift/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shift/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shift/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shift/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shift/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shift/shift.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shift/shift.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/shift/shift.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/shift/shift.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/sinvert/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/sinvert/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/sinvert/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/sinvert/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/sinvert/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/impls/sinvert/sinvert.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/index.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/index.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/index.html 2021-02-01 14:43:03.000000000 +0000 @@ -5,8 +5,8 @@ -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stfunc.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stfunc.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stfunc.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stfunc.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stregis.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stregis.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stregis.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stregis.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stset.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stset.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stset.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stset.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stshellmat.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stshellmat.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stshellmat.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stshellmat.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stsles.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stsles.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stsles.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stsles.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stsolve.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stsolve.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/interface/stsolve.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/interface/stsolve.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/makefile.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/makefile.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/makefile.html	2021-02-01 14:43:03.000000000 +0000
@@ -3,12 +3,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/index.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

Spectral Transformation - ST

diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test2.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test3.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test3.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test3.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test3.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test4.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test4.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test4.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test4.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test5.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test5.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test5.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test5.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test6.c.html slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test6.c.html
--- slepc-3.14.1+dfsg1/src/sys/classes/st/tests/test6.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/classes/st/tests/test6.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/dlregisslepc.c.html slepc-3.14.2+dfsg1/src/sys/dlregisslepc.c.html
--- slepc-3.14.1+dfsg1/src/sys/dlregisslepc.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/dlregisslepc.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90 slepc-3.14.2+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90
--- slepc-3.14.1+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/f90-mod/ftn-auto-interfaces/slepcsys.h90	2021-02-01 14:43:03.000000000 +0000
@@ -1,3 +1,16 @@
+      subroutine MatCreateTile(a,b,c,d,e,f,g,h,i,z)
+      use slepcsysdef
+       PetscScalar a ! PetscScalar
+       Mat b ! Mat
+       PetscScalar c ! PetscScalar
+       Mat d ! Mat
+       PetscScalar e ! PetscScalar
+       Mat f ! Mat
+       PetscScalar g ! PetscScalar
+       Mat h ! Mat
+       Mat i ! Mat
+        PetscErrorCode z
+       end subroutine MatCreateTile
       subroutine SlepcSCCompare(a,b,c,d,e,f,z)
       use slepcsysdef
        SlepcSC a ! SlepcSC
@@ -58,16 +71,3 @@
        Vec b ! Vec
         PetscErrorCode z
        end subroutine VecDuplicateEmpty
-      subroutine MatCreateTile(a,b,c,d,e,f,g,h,i,z)
-      use slepcsysdef
-       PetscScalar a ! PetscScalar
-       Mat b ! Mat
-       PetscScalar c ! PetscScalar
-       Mat d ! Mat
-       PetscScalar e ! PetscScalar
-       Mat f ! Mat
-       PetscScalar g ! PetscScalar
-       Mat h ! Mat
-       Mat i ! Mat
-        PetscErrorCode z
-       end subroutine MatCreateTile
diff -Nru slepc-3.14.1+dfsg1/src/sys/f90-mod/index.html slepc-3.14.2+dfsg1/src/sys/f90-mod/index.html
--- slepc-3.14.1+dfsg1/src/sys/f90-mod/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/f90-mod/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/f90-mod/makefile.html slepc-3.14.2+dfsg1/src/sys/f90-mod/makefile.html --- slepc-3.14.1+dfsg1/src/sys/f90-mod/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/f90-mod/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/index.html slepc-3.14.2+dfsg1/src/sys/index.html
--- slepc-3.14.1+dfsg1/src/sys/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/makefile.html slepc-3.14.2+dfsg1/src/sys/makefile.html --- slepc-3.14.1+dfsg1/src/sys/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/mat/index.html slepc-3.14.2+dfsg1/src/sys/mat/index.html
--- slepc-3.14.1+dfsg1/src/sys/mat/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/mat/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/mat/makefile.html slepc-3.14.2+dfsg1/src/sys/mat/makefile.html --- slepc-3.14.1+dfsg1/src/sys/mat/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/mat/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/mat/matutil.c.html slepc-3.14.2+dfsg1/src/sys/mat/matutil.c.html
--- slepc-3.14.1+dfsg1/src/sys/mat/matutil.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/mat/matutil.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/mat/tests/index.html slepc-3.14.2+dfsg1/src/sys/mat/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/mat/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/mat/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/mat/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/mat/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/mat/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/mat/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/mat/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/mat/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/mat/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/mat/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/slepcinit.c.html slepc-3.14.2+dfsg1/src/sys/slepcinit.c.html
--- slepc-3.14.1+dfsg1/src/sys/slepcinit.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/slepcinit.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/slepcsc.c.html slepc-3.14.2+dfsg1/src/sys/slepcsc.c.html
--- slepc-3.14.1+dfsg1/src/sys/slepcsc.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/slepcsc.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/slepcutil.c.html slepc-3.14.2+dfsg1/src/sys/slepcutil.c.html
--- slepc-3.14.1+dfsg1/src/sys/slepcutil.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/slepcutil.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/tests/index.html slepc-3.14.2+dfsg1/src/sys/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/tests/test2.c.html slepc-3.14.2+dfsg1/src/sys/tests/test2.c.html
--- slepc-3.14.1+dfsg1/src/sys/tests/test2.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/tests/test2.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/tutorials/ex33.c.html slepc-3.14.2+dfsg1/src/sys/tutorials/ex33.c.html
--- slepc-3.14.1+dfsg1/src/sys/tutorials/ex33.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/tutorials/ex33.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/tutorials/index.html slepc-3.14.2+dfsg1/src/sys/tutorials/index.html
--- slepc-3.14.1+dfsg1/src/sys/tutorials/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/tutorials/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/tutorials/makefile.html slepc-3.14.2+dfsg1/src/sys/tutorials/makefile.html --- slepc-3.14.1+dfsg1/src/sys/tutorials/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/tutorials/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/index.html slepc-3.14.2+dfsg1/src/sys/vec/index.html
--- slepc-3.14.1+dfsg1/src/sys/vec/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/vec/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/makefile.html slepc-3.14.2+dfsg1/src/sys/vec/makefile.html --- slepc-3.14.1+dfsg1/src/sys/vec/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/vec/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/pool.c.html slepc-3.14.2+dfsg1/src/sys/vec/pool.c.html
--- slepc-3.14.1+dfsg1/src/sys/vec/pool.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/vec/pool.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/tests/index.html slepc-3.14.2+dfsg1/src/sys/vec/tests/index.html
--- slepc-3.14.1+dfsg1/src/sys/vec/tests/index.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/vec/tests/index.html	2021-02-01 14:43:03.000000000 +0000
@@ -5,8 +5,8 @@
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+

SLEPc System routines

diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/tests/makefile.html slepc-3.14.2+dfsg1/src/sys/vec/tests/makefile.html --- slepc-3.14.1+dfsg1/src/sys/vec/tests/makefile.html 2020-12-08 18:21:33.000000000 +0000 +++ slepc-3.14.2+dfsg1/src/sys/vec/tests/makefile.html 2021-02-01 14:43:03.000000000 +0000 @@ -3,12 +3,12 @@ - + -
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
#
 #  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 #  SLEPc - Scalable Library for Eigenvalue Problem Computations
diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/tests/test1.c.html slepc-3.14.2+dfsg1/src/sys/vec/tests/test1.c.html
--- slepc-3.14.1+dfsg1/src/sys/vec/tests/test1.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/vec/tests/test1.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/veccomp0.h.html slepc-3.14.2+dfsg1/src/sys/vec/veccomp0.h.html
--- slepc-3.14.1+dfsg1/src/sys/vec/veccomp0.h.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/vec/veccomp0.h.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/veccomp.c.html slepc-3.14.2+dfsg1/src/sys/vec/veccomp.c.html
--- slepc-3.14.1+dfsg1/src/sys/vec/veccomp.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/vec/veccomp.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/src/sys/vec/vecutil.c.html slepc-3.14.2+dfsg1/src/sys/vec/vecutil.c.html
--- slepc-3.14.1+dfsg1/src/sys/vec/vecutil.c.html	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/src/sys/vec/vecutil.c.html	2021-02-01 14:43:03.000000000 +0000
@@ -4,12 +4,12 @@
  
 
 
-
+
 
 
 
-   
slepc-3.14.1 2020-12-08
- +
slepc-3.14.2 2021-02-01
+
   1: /*
   2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff -Nru slepc-3.14.1+dfsg1/TAGS slepc-3.14.2+dfsg1/TAGS
--- slepc-3.14.1+dfsg1/TAGS	2020-12-08 18:21:33.000000000 +0000
+++ slepc-3.14.2+dfsg1/TAGS	2021-02-01 14:43:03.000000000 +0000
@@ -1,32 +1,27 @@
 
-.gitlab-ci.yml,1667
+.gitlab-ci.yml,1259
 .gitlab-ci.yml:^?.gitlab-ci.yml^A,1
-    - echo PETSC_CONFIG_OPTS=54,1632
-    - export SLEPC_DIR=56,1692
-    - export PETSC_DIR=72,2380
-    - ${PYTHON} ./configure --with-debugging=debugging73,2408
-    - make CFLAGS=75,2592
-    - make CFLAGS=81,2879
-    PETSC_CONFIG_OPTS: --with-mpi-dir=dir109,3720
-    - export PETSC_DIR=152,5182
-          then git checkout origin/release;release188,6441
-          else git checkout origin/master;master189,6485
-    - export PETSC_DIR=194,6601
-    - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=199,6903
-    - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=199,6903
-    - if [ ! -z ${SLEPC4PY+x} ]; then export PYTHONPATH=200,6984
-    - if [ ! -z ${SLEPC4PY+x} ]; then export PYTHONPATH=$PETSC_DIR/$PETSC_ARCH/lib; echo $PYTHONPATH;200,6984
-    - make CFLAGS=205,7300
-    - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=205,7300
-    - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=205,7300
-    - make CFLAGS=206,7381
-    - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=206,7381
-    - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=206,7381
-    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=209,7602
-    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=209,7602
-    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=209,7602
-    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=${MAKE_FFLAGS} cleantest allgtests-tap TIMEOUT=209,7602
-    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=${MAKE_FFLAGS} cleantest allgtests-tap TIMEOUT=${TIMEOUT} ${$209,7602
+    - export SLEPC_DIR=56,1702
+          then git checkout origin/release;release66,2112
+          else git checkout origin/master;master67,2156
+    - export PETSC_DIR=72,2272
+    - make CFLAGS=80,2750
+        make checkbadSource SHELL=84,2921
+        make check_output SHELL=85,2961
+        make check_ascii SHELL=86,2999
+    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=90,3179
+    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=-Werror CXXFLAGS=-Werror FFLAGS=-Werror cleantest allgtests-tap TIMEOUT=${TIMEOUT} ${$90,3179
+    - linux-ubuntu,ubuntu114,3847
+    PETSC_CONFIG_OPTS: --with-fc=fc116,3891
+    - export SLEPC_DIR=156,5087
+          then git checkout origin/release;release166,5497
+          else git checkout origin/master;master167,5541
+    - export PETSC_DIR=172,5657
+    - if [ ! -z ${SLEPC4PY+x} ]; then export PYTHONPATH=176,5974
+    - if [ ! -z ${SLEPC4PY+x} ]; then export PYTHONPATH=$PETSC_DIR/$PETSC_ARCH/lib; echo $PYTHONPATH;176,5974
+    - make CFLAGS=181,6290
+    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=185,6604
+    - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS="${MAKE_CFLAGS}" CXXFLAGS="${MAKE_CXXFLAGS}" FFLAGS="${MAKE_FFLAGS}" cleantest allgtests-tap TIMEOUT=${TIMEOUT} ${$185,6604
 
 CHANGELOG.md,1023
 CHANGELOG.md:^?CHANGELOG.md^A,1
@@ -147,21 +142,21 @@
   def Process(109,3836
   def Precondition(140,5148
   def MissingTarball(158,6076
-  def Download(168,6474
-  def ShowHelp(270,10970
-  def ShowInfo(286,12183
-  def Link(296,12624
-  def FortranLink(358,14890
-  def GenerateGuesses(383,15614
-  def FortranLib(402,16253
+  def Download(168,6502
+  def ShowHelp(270,10998
+  def ShowInfo(286,12211
+  def Link(300,12778
+  def FortranLink(362,15044
+  def GenerateGuesses(387,15768
+  def FortranLib(406,16407
 
-config/packages/arpack.py,123
+config/packages/arpack.py,124
 arpack.py:^?arpack.py^A,1
 class Arpack(13,424
   def __init__(15,456
-  def Functions(28,969
-  def Check(54,1793
-  def DownloadAndInstall(71,2436
+  def Functions(29,1059
+  def Check(55,1883
+  def DownloadAndInstall(72,2564
 
 config/packages/blopex.py,124
 blopex.py:^?blopex.py^A,1
@@ -187,10 +182,10 @@
 elpa.py:^?elpa.py^A,1
 class Elpa(13,424
   def __init__(15,454
-  def Precondition(29,976
-  def SampleCode(38,1358
-  def Check(53,1854
-  def DownloadAndInstall(91,3124
+  def Precondition(29,961
+  def SampleCode(38,1343
+  def Check(53,1839
+  def DownloadAndInstall(91,3147
 
 config/packages/feast.py,63
 feast.py:^?feast.py^A,1
@@ -202,8 +197,8 @@
 hpddm.py:^?hpddm.py^A,1
 class HPDDM(17,528
   def __init__(19,559
-  def Precondition(31,1055
-  def DownloadAndInstall(41,1461
+  def Precondition(31,1043
+  def DownloadAndInstall(41,1449
 
 config/packages/lapack.py,163
 lapack.py:^?lapack.py^A,1
@@ -229,10 +224,10 @@
 primme.py:^?primme.py^A,1
 class Primme(13,432
   def __init__(15,464
-  def SampleCode(30,1027
-  def Check(62,1963
-  def DownloadAndInstall(101,3366
-  def LoadVersion(166,6026
+  def SampleCode(30,1025
+  def Check(62,1961
+  def DownloadAndInstall(101,3402
+  def LoadVersion(166,6066
 
 config/packages/scalapack.py,92
 scalapack.py:^?scalapack.py^A,1
@@ -246,64 +241,67 @@
 class SLEPc(14,469
   def __init__(16,500
   def ShowHelp(24,859
-  def InitDir(34,1462
-  def LoadVersion(46,2030
-  def CreateFile(84,3527
-  def CreateDir(93,3807
-  def CreateDirTwo(103,4131
-  def CreateDirTest(119,4667
-  def CreatePrefixDirs(132,5077
+  def InitDir(34,1478
+  def LoadVersion(46,2046
+  def CreateFile(84,3543
+  def CreateDir(93,3823
+  def CreateDirTwo(103,4147
+  def CreateDirTest(119,4683
+  def CreatePrefixDirs(132,5093
 
 config/packages/slepc4py.py,100
 slepc4py.py:^?slepc4py.py^A,1
 class Slepc4py(13,424
   def __init__(15,458
-  def DownloadOnly(24,734
-  def SkipInstall(84,3670
+  def DownloadOnly(26,822
+  def SkipInstall(87,3850
 
 config/packages/slicot.py,98
 slicot.py:^?slicot.py^A,1
 class Slicot(13,424
   def __init__(15,456
-  def Check(28,892
-  def DownloadAndInstall(43,1294
+  def Check(28,890
+  def DownloadAndInstall(43,1330
 
-config/packages/sowing.py,100
+config/packages/sowing.py,101
 sowing.py:^?sowing.py^A,1
 class Sowing(13,429
   def __init__(15,461
-  def ShowHelp(22,698
-  def DownloadAndInstall(27,952
+  def ShowHelp(25,872
+  def DownloadAndInstall(30,1126
 
 config/packages/trlan.py,97
 trlan.py:^?trlan.py^A,1
 class Trlan(13,424
   def __init__(15,455
-  def Check(28,969
-  def DownloadAndInstall(46,1431
+  def Check(28,953
+  def DownloadAndInstall(46,1453
 
 configure,18
 configure:^?configure^A,1
 import os,12,329
 
-gmakefile,121
+gmakefile,145
 gmakefile:^?gmakefile^A,1
 OBJDIR 5,74
-  $(96,4112
-  $(call quiet,CLINKER) $(sl_linker_args) -o $@ @dllcmd.${PETSC_ARCH} $(96,4112
-  $(101,4288
+  $(109,4371
+  $(call quiet,CLINKER) $(sl_linker_args) -o $@ @dllcmd.${PETSC_ARCH} $(109,4371
+  $(114,4547
+	${RM} -r $(246,9988
 
-gmakefile.test,344
+gmakefile.test,556
 gmakefile.test:^?gmakefile.test^A,1
-mkfile_path 5,114
-  quiet = @printf $(quiet_HELP)$(eval quiet_HELP:=)"  %10s %s\n" "$1$2" "$@"; $(37,1193
-    mv $(166,6367
-.PHONY: $(205,7645
-	${RM} -r $(249,9364
-	-@if test ${PRINTONLY} -ne ne312,11874
-	-@if test ${PRINTONLY} -ne 1; then elapsed_time=312,11874
-	$(317,12090
-	-@grep ^[a-z] ${makefile} | grep : | grep -v v347,12930
+mkfile_path 7,289
+  quiet = @printf $(quiet_HELP)$(eval quiet_HELP:=)"  %10s %s\n" "$1$2" "$@"; $(39,1368
+    mv $(187,7838
+      if ! sudo -n true 2>/dev/null; then echo "Asking for sudo password to add new firewall rule for\n  $$APP:"; fi;205,8482
+      sudo $$FW --blockapp $$APP;207,8635
+      echo $$ANS;209,8682
+  $(213,8741
+.PHONY: $(252,10088
+	${RM} -r $(296,11807
+	$(PYTHON) $(PETSCCONFIGDIR)/report_tests.py -m $(MAKE) -d $(TESTDIR)/counts -t 5 -e $${elapsed_time} $(364,14676
+	-@grep ^[a-z] ${makefile} | grep : | grep -v v397,15647
 
 include/makefile,137
 makefile:^?makefile^A,1
@@ -2347,7 +2345,7 @@
 SLEPC_EXTERNAL_LIB 53,2957
 SHLIBS 56,3139
 
-makefile,2444
+makefile,2549
 makefile:^?makefile^A,1
 ALL:ALL14,507
 LOCDIR 15,516
@@ -2362,52 +2360,51 @@
 info:info56,2847
 check_install:check_install99,4972
 check:check100,4993
-check_build:check_build102,5230
-         ${OMAKE_SELF} PETSC_ARCH=${OMAKE_SELF} PETSC_ARCH106,5423
-           ${OMAKE_SELF} PETSC_ARCH=${OMAKE_SELF} PETSC_ARCH109,5655
-           ${OMAKE_SELF} PETSC_ARCH=${OMAKE_SELF} PETSC_ARCH112,5836
-           ${OMAKE_SELF} PETSC_ARCH=${OMAKE_SELF} PETSC_ARCH115,6005
-abitest:abitest120,6272
-deletelibs:deletelibs139,7675
-deletemods:deletemods141,7727
-allclean:allclean144,7797
-clean:clean147,7839
-reconfigure:reconfigure149,7857
-install:install155,8013
-alldoc:alldoc166,8499
-allcite:allcite169,8573
-allpdf:allpdf175,8906
-allmanpages:allmanpages179,9030
-allmanexamples:allmanexamples183,9168
-alldoc1:alldoc1187,9332
-alldoc2:alldoc2201,10100
-docsetdate:docsetdate206,10340
-        version_release=208,10451
-        version_major=209,10571
-        version_minor=210,10687
-        version_subminor=211,10803
-        if  [ $${version_release} if  [ $${version_release}212,10925
-          slepcversion=213,10973
-        elif [ $${version_release} elif [ $${version_release}215,11045
-          slepcversion=216,11094
-          echo "Unknown SLEPC_VERSION_RELEASE:echo "Unknown SLEPC_VERSION_RELEASE219,11231
-        datestr=222,11334
-        gitver=224,11430
-          -exec perl -pi -e 's^()^$$1\n   
)^$$1\n
)^$$1 )^$$1 /dev/null; ${OMAKE_SELF} PETSC_ARCH=cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH108,5836 + cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH=cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH111,6042 + cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH=cd src/eps/tests >/dev/null; ${OMAKE_SELF} PETSC_ARCH114,6238 +abitest:abitest119,6534 +deletelibs:deletelibs138,7937 +deletemods:deletemods140,7989 +allclean:allclean143,8059 +clean:clean146,8101 +reconfigure:reconfigure148,8119 +install:install154,8275 +alldoc:alldoc165,8761 +allcite:allcite168,8835 +allpdf:allpdf174,9168 +allmanpages:allmanpages178,9292 +allmanexamples:allmanexamples182,9430 +alldoc1:alldoc1186,9594 +alldoc2:alldoc2200,10362 +docsetdate:docsetdate205,10602 + version_release=207,10713 + version_major=208,10833 + version_minor=209,10949 + version_subminor=210,11065 + if [ $${version_release} if [ $${version_release}211,11187 + slepcversion=212,11235 + elif [ $${version_release} elif [ $${version_release}214,11307 + slepcversion=215,11356 + echo "Unknown SLEPC_VERSION_RELEASE:echo "Unknown SLEPC_VERSION_RELEASE218,11493 + datestr=221,11596 + gitver=223,11692 + -exec perl -pi -e 's^()^$$1\n
)^$$1\n
)^$$1 )^$$1