History log of /petsc/src/sys/objects/ (Results 2026 – 2050 of 2473)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
88674aba17-Jan-2011 Jed Brown <jed@59A2.org>

fix cross-reference

Hg-commit: ce095d8ee4c5fcbeb664d2b0800f04a3936ad43f

b770b1f613-Jan-2011 Satish Balay <balay@mcs.anl.gov>

syntax fix [win32]

Hg-commit: cdc8436de423f9a80990d01c45aa1368d4bde741

dec9a92e08-Jan-2011 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: 7f920fb4767878a9a81b154cb819a172a4b0a4b4

dbc8283e08-Jan-2011 Barry Smith <bsmith@mcs.anl.gov>

do not attempt to free all undestroyed PETSc objects in PetscFinalize() instead just optional print them
if the Petsc_InnerComm_keyval is attached to PETSC_COMM_SELF or PETSC_COMM_WORLD then free inn

do not attempt to free all undestroyed PETSc objects in PetscFinalize() instead just optional print them
if the Petsc_InnerComm_keyval is attached to PETSC_COMM_SELF or PETSC_COMM_WORLD then free inner communicator and delete attribute from outter communicator
Subject: Re: [petsc-maint #60571] DMDestroy crashes if I don't carefully destroy every vector that was created with it
From: Barry Smith <bsmith@mcs.anl.gov>
Date: January 7, 2011 5:51:17 PM CST
To: petsc-maint <petsc-maint@mcs.anl.gov>, Jason Sarich <sarich@mcs.anl.gov>
Reply-To: petsc-maint <petsc-maint@mcs.anl.gov>

Jason,

Thanks for reporting this with a reproduceble example.

This is big trouble and I don't have a good solution yet. The problem comes because I keep a list of ALL outstanding objects and just loop over them deleting them. The problem is if one object has a reference to another object (the ISLocalToGlobalMapping is referenced by the Vec) but the referenced object is destroyed, then when the referencer is destroyed it tries to destroy the previously destroyed object (hence the crash).

The reason I want to destroy all objects before existing PetscFinalize() is to make PETSc reentrant (so you can call PetscInitialize() more than once, which is normal to do in a scripting language like Python or MATLAB). If I don't destroy all objects then the extra MPI communicators and attributes in the MPI communicators are not destroyed and next time you enter PETSc and use one of those attributes it points to something that is not valid and gives trouble. Destroying all objects insures proper cleanup, otherwise we'd need some other way in PetscFinalize() to cleanup which appears like extra infrastructure I don't want to have. In a scripting environment (unlike a real language :-) it is unrealistic to expect users to cleanup all objects themselves.


Barry

On Jan 7, 2011, at 4:37 PM, Jason Sarich wrote:

Using petsc-dev changeset: 18100:5f2967045bc2 (1/07/2011 15:34)

PETSc is throwing some errors when I don't destroy my dm-created vectors
before destroying the DM. I can reproduce this with
snes/examples/tutorials/ex5.c by removing the VecDestroy(x):

sarich@franklin:~/software/petsc-dev/src/snes/examples/tutorials> ./ex5
Number of Newton iterations = 4
[0]PETSC ERROR: --------------------- Error Message
------------------------------------
[0]PETSC ERROR: Invalid argument!
[0]PETSC ERROR: Wrong type of object: Parameter # 1!
[0]PETSC ERROR:
------------------------------------------------------------------------
[0]PETSC ERROR: Petsc Development HG revision:
c082370134d6559807fdad65fb712d89017dee8f HG Date: Mon Jan 03 22:01:17 2011
-0600
[0]PETSC ERROR: See docs/changes/index.html for recent updates.
[0]PETSC ERROR: See docs/faq.html for hints about trouble shooting.
[0]PETSC ERROR: See docs/index.html for manual pages.
[0]PETSC ERROR:
------------------------------------------------------------------------
[0]PETSC ERROR: ./ex5 on a linux-gnu named franklin by sarich Fri Jan 7
16:35:50 2011
[0]PETSC ERROR: Libraries linked from
/home/sarich/software/petsc-dev/linux-gnu-cxx-debug/lib
[0]PETSC ERROR: Configure run at Tue Jan 4 09:55:51 2011
[0]PETSC ERROR: Configure options --download-mpich=1 --with-shared=1
--download-sowing=1 --with-dynamic=1 PETSC_ARCH=linux-gnu-cxx-debug

Hg-commit: cdec62f65ff5d1a817cd2a47c5f6f27c0b729322

show more ...

c02637df07-Jan-2011 Satish Balay <balay@mcs.anl.gov>

more doc fix

Hg-commit: 4de6eef97229657dd9194a2fdcf400e3747c8c4e

8f8fadbe07-Jan-2011 Satish Balay <balay@mcs.anl.gov>

doc fix

Hg-commit: 5f2967045bc239dae0a104e7f52941e7d9653d50

0f11a79205-Jan-2011 Barry Smith <bsmith@mcs.anl.gov>

updates to MATLAB interface
fix for Pastix fix

Hg-commit: 128f4b9629ba436a67a36180ed2f73c5394ad502

be6adb1101-Jan-2011 Barry Smith <bsmith@mcs.anl.gov>

fixed some unitialized variables warnings with MPI-uni

Hg-commit: 925a462303ee56a402b0355f3680130c52d4c99c

0a1571b326-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

improved formating of student projects
added option -objects_left shows all objects the user forgot to free

Hg-commit: 30fe547dc89bffa3675fdb56217d3de20202a0d8

e3c5b3ba26-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

changed Matlab spelling to MATLAB some general MATLAB cleanup

Hg-commit: efcb24f191dfedc98b283d9e63e7859032e8ef35


/petsc/bin/matlab/classes/PETSC_COMM_SELF.m
/petsc/bin/matlab/classes/Petsc.m
/petsc/bin/matlab/classes/PetscDM.m
/petsc/bin/matlab/classes/PetscDMDACreate1d.m
/petsc/bin/matlab/classes/PetscIS.m
/petsc/bin/matlab/classes/PetscInitialize.m
/petsc/bin/matlab/classes/PetscKSP.m
/petsc/bin/matlab/classes/PetscMat.m
/petsc/bin/matlab/classes/PetscObject.m
/petsc/bin/matlab/classes/PetscPC.m
/petsc/bin/matlab/classes/PetscSNES.m
/petsc/bin/matlab/classes/PetscTS.m
/petsc/bin/matlab/classes/PetscVec.m
/petsc/bin/matlab/classes/PetscViewer.m
/petsc/bin/matlab/classes/examples/tutorials/demo.m
/petsc/bin/matlab/classes/examples/tutorials/exKSP.m
/petsc/bin/matlab/classes/examples/tutorials/exKSPDM.m
/petsc/bin/matlab/classes/examples/tutorials/exKSP_PetscMat.m
/petsc/bin/matlab/classes/examples/tutorials/exSNES.m
/petsc/bin/matlab/classes/examples/tutorials/exSNES_DVI.m
/petsc/bin/matlab/classes/examples/tutorials/exSNES_DVI2.m
/petsc/bin/matlab/classes/examples/tutorials/odejacobian.m
/petsc/bin/matlab/classes/examples/tutorials/snesdvi_monitor.m
/petsc/bin/matlab/classes/matlabheader.h
/petsc/include/petscmatlab.h
/petsc/include/petscsys.h
/petsc/include/petscviewer.h
/petsc/src/dm/examples/tests/ex12.c
/petsc/src/dm/examples/tutorials/ex1.c
/petsc/src/dm/examples/tutorials/ex10.c
/petsc/src/dm/impls/da/dalocal.c
/petsc/src/dm/impls/da/daview.c
/petsc/src/dm/impls/da/utils/binaryMatlab.c
/petsc/src/dm/interface/dm.c
/petsc/src/docs/tex/manual/abstract.tex
/petsc/src/docs/tex/manual/acknowl.tex
/petsc/src/docs/tex/manual/part2.tex
/petsc/src/docs/website/documentation/faq.html
/petsc/src/docs/website/documentation/linearsolvertable.html
/petsc/src/docs/website/miscellaneous/external.html
/petsc/src/ksp/pc/impls/factor/factor.c
/petsc/src/ksp/pc/impls/mg/mg.c
/petsc/src/mat/examples/tests/ex140.c
/petsc/src/mat/examples/tests/ex71.c
/petsc/src/mat/examples/tests/ex78.c
/petsc/src/mat/impls/adj/mpi/mpiadj.c
/petsc/src/mat/impls/aij/seq/matlab/aijmatlab.c
/petsc/src/mat/order/amd/amd.c
/petsc/src/snes/examples/tutorials/ex29.c
/petsc/src/snes/examples/tutorials/ex48.c
/petsc/src/snes/examples/tutorials/ex5.c
/petsc/src/snes/interface/snes.c
/petsc/src/sys/fileio/smatlab.c
/petsc/src/sys/matlabengine/matlab.c
pinit.c
pname.c
/petsc/src/sys/viewer/impls/binary/binv.c
/petsc/src/sys/viewer/impls/matlab/vmatlab.c
/petsc/src/sys/viewer/impls/socket/matlab/bread.c
/petsc/src/sys/viewer/impls/socket/matlab/makefile
/petsc/src/sys/viewer/impls/socket/matlab/sopen.c
/petsc/src/sys/viewer/impls/socket/matlab/sread.c
/petsc/src/sys/viewer/impls/socket/matlab/swrite.c
/petsc/src/sys/viewer/impls/socket/send.c
/petsc/src/sys/viewer/interface/viewa.c
/petsc/src/ts/examples/tutorials/ex14.c
/petsc/src/ts/examples/tutorials/ex9.c
/petsc/src/ts/interface/ts.c
/petsc/src/vec/pf/impls/matlab/cmatlab.c
/petsc/src/vec/vec/impls/mpi/pdvec.c
/petsc/src/vec/vec/impls/seq/bvec2.c
/petsc/src/vec/vec/interface/dlregisvec.c
/petsc/src/vec/vec/interface/vector.c
/petsc/src/vec/vec/utils/matlab/gcreatev.c
2eff7a5124-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

automatically free all created objects that have not been freed during run in PetscFinalize

Hg-commit: 2aad0a0317aabf395b96783e2383b8b5e0222e16


/petsc/bin/maint/generateetags.py
/petsc/bin/matlab/classes/Petsc.m
/petsc/bin/matlab/classes/PetscMat.m
/petsc/bin/matlab/classes/PetscSNES.m
/petsc/bin/matlab/classes/PetscVec.m
/petsc/bin/matlab/classes/examples/tutorials/exKSP_PetscMat.m
/petsc/bin/matlab/classes/matlabheader.h
/petsc/config/PETSc/packages/SuperLU.py
/petsc/config/PETSc/packages/SuperLU_DIST.py
/petsc/include/petscmat.h
/petsc/include/petscvec.h
/petsc/include/petscversion.h
/petsc/include/private/matimpl.h
/petsc/include/private/snesimpl.h
/petsc/include/private/vecimpl.h
/petsc/makefile
/petsc/src/docs/tex/manual/part2.tex
/petsc/src/docs/website/documentation/faq.html
/petsc/src/docs/website/download/index.html
/petsc/src/docs/website/features/gpus.html
/petsc/src/ksp/ksp/examples/tutorials/ex52.c
/petsc/src/ksp/ksp/examples/tutorials/makefile
/petsc/src/ksp/ksp/examples/tutorials/output/ex45_2.out
/petsc/src/ksp/ksp/examples/tutorials/output/ex52_1.out
/petsc/src/ksp/ksp/interface/itfunc.c
/petsc/src/mat/examples/tests/ex125.c
/petsc/src/mat/examples/tests/ex130.c
/petsc/src/mat/impls/aij/mpi/mpiaij.c
/petsc/src/mat/impls/aij/mpi/mumps/mumps.c
/petsc/src/mat/impls/aij/seq/matlab/aijmatlab.c
/petsc/src/mat/impls/aij/seq/seqcuda/aijcuda.cu
/petsc/src/mat/impls/aij/seq/superlu/superlu.c
/petsc/src/mat/impls/baij/mpi/mpibaij.c
/petsc/src/mat/interface/dlregismat.c
/petsc/src/mat/interface/matrix.c
/petsc/src/snes/examples/tests/ex14f.F
/petsc/src/snes/impls/vi/vi.c
/petsc/src/snes/interface/snes.c
/petsc/src/snes/interface/snesj2.c
inherit.c
pinit.c
/petsc/src/ts/examples/tutorials/ex15.c
/petsc/src/ts/examples/tutorials/ex17.c
/petsc/src/ts/examples/tutorials/makefile
/petsc/src/ts/examples/tutorials/output/ex15_1.out
/petsc/src/ts/examples/tutorials/output/ex15_3.out
/petsc/src/vec/vec/examples/tutorials/ex1.c
/petsc/src/vec/vec/examples/tutorials/ex1e.c
/petsc/src/vec/vec/examples/tutorials/ex1f.F
/petsc/src/vec/vec/examples/tutorials/ex1f90.F
/petsc/src/vec/vec/examples/tutorials/ex20f90.F90
/petsc/src/vec/vec/interface/vector.c
8a45c41117-Dec-2010 Hong Zhang <hzhang@mcs.anl.gov>

bugfix of PetscHeaderDestroy_Private()

Hg-commit: fd33648f6752d55de39a88807dc1dd50b821d3f5

c139c21f17-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

Matlab interface now supports accessing any PetscObject in memory interactively by name

Hg-commit: c5ee540abbb26ee9d96d18e59c27a542cabf1ead

2e82e6d116-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

added object retention into creation

Hg-commit: 6859ddb753fc259929da9baca11a28a27673361b

33f85c2f16-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

fixed converting of SeqAIJ to Matlab matrix to work for 64 bit ints in Matlab
moved PetscLogDestroy() to after objects are destroyed because cookies are needed until all objects are destroyed

Hg-com

fixed converting of SeqAIJ to Matlab matrix to work for 64 bit ints in Matlab
moved PetscLogDestroy() to after objects are destroyed because cookies are needed until all objects are destroyed

Hg-commit: 7ce1802937be80f7a305aff5cc37ede3d49baad6

show more ...

10463e7416-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

changed closing of dynamic libraries until after PetscLogView() is called

Hg-commit: db6fcb242c3bf64d78c402af53688f0c0092307a

91eabc4313-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

changed PetscLogPrintSummary() to PetscLogView() eventually it will accept different formats for displaying the log information in different styles like JSON.

Hg-commit: 478f9bccbd0b01965d3436aedfe6

changed PetscLogPrintSummary() to PetscLogView() eventually it will accept different formats for displaying the log information in different styles like JSON.

Hg-commit: 478f9bccbd0b01965d3436aedfe683634d519952

show more ...

88c2915412-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

added PetscPC interface for Matlab
added PetscOptionsSetValue(), PetscOptionsClearValue() and PetscOptionsView() for Matlab
changed PetscOptionsPrint() to PetscOptionsView()
PetscXXX.View() in Matlab

added PetscPC interface for Matlab
added PetscOptionsSetValue(), PetscOptionsClearValue() and PetscOptionsView() for Matlab
changed PetscOptionsPrint() to PetscOptionsView()
PetscXXX.View() in Matlab interface now supports passing in no viewer and having it use the default

Hg-commit: b9153949782ef6b5312a19ce28b5aaa863f787b8

show more ...

df41390312-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

fixed problem with Matlab being nonresponsive when run with -nodisplay and built with MPI

Hg-commit: 55309f421b5c4a165bbbd6dac4ef585d34254524

f0865b0810-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

updated PETSc Matlab interface to work with a real MPI, not just MPIuni

Hg-commit: f755ceb94ef757e0ed7bbb6db63b51ed6d84393c


/petsc/bin/matlab/classes/PETSC_COMM_SELF.m
/petsc/bin/matlab/classes/PetscDM.m
/petsc/bin/matlab/classes/PetscIS.m
/petsc/bin/matlab/classes/PetscInitialize.m
/petsc/bin/matlab/classes/PetscKSP.m
/petsc/bin/matlab/classes/PetscMat.m
/petsc/bin/matlab/classes/PetscSNES.m
/petsc/bin/matlab/classes/PetscTS.m
/petsc/bin/matlab/classes/PetscVec.m
/petsc/bin/matlab/classes/PetscViewer.m
/petsc/bin/matlab/classes/matlabheader.h
/petsc/config/PETSc/packages/cuda.py
/petsc/config/PETSc/packages/fftw.py
/petsc/config/PETSc/packages/sowing.py
/petsc/include/petscmath.h
/petsc/include/petscmesh.hh
/petsc/include/petscsys.h
/petsc/include/petscviewer.h
/petsc/include/sieve/ParallelMapping.hh
/petsc/makefile
/petsc/src/dm/impls/da/da2.c
/petsc/src/dm/mesh/examples/tests/distribution1.cxx
/petsc/src/dm/mesh/examples/tests/idistribution1.cxx
/petsc/src/dm/mesh/examples/tests/imesh1.cxx
/petsc/src/dm/mesh/examples/tests/isection1.cxx
/petsc/src/dm/mesh/examples/tests/isieve1.cxx
/petsc/src/dm/mesh/examples/tests/section1.cxx
/petsc/src/dm/mesh/examples/tests/sieve1.cxx
/petsc/src/dm/mesh/examples/tests/sieveTests.cxx
/petsc/src/dm/mesh/examples/tutorials/ex1.c
/petsc/src/dm/mesh/examples/tutorials/ex5.c
/petsc/src/dm/mesh/examples/tutorials/ex_coarsen.h
/petsc/src/dm/mesh/mesh.c
/petsc/src/dm/mesh/meshpylith.c
/petsc/src/docs/tex/manual/developers.tex
/petsc/src/docs/website/documentation/installation.html
/petsc/src/ksp/ksp/examples/tests/ex27.c
/petsc/src/ksp/ksp/examples/tutorials/makefile
/petsc/src/ksp/ksp/examples/tutorials/output/ex8g_1.out
/petsc/src/ksp/ksp/examples/tutorials/output/ex8g_2.out
/petsc/src/ksp/ksp/examples/tutorials/output/ex8g_3.out
/petsc/src/ksp/pc/impls/gasm/gasm.c
/petsc/src/ksp/pc/impls/svd/svd.c
/petsc/src/ksp/pc/interface/pcregis.c
/petsc/src/mat/impls/aij/mpi/mpiov.c
/petsc/src/mat/impls/nest/matnest.c
/petsc/src/snes/examples/tutorials/ex28.c
/petsc/src/snes/examples/tutorials/ex48.c
/petsc/src/snes/interface/snes.c
/petsc/src/snes/utils/damgsnes.c
/petsc/src/sys/error/err.c
/petsc/src/sys/error/ftn-custom/zerrf.c
pinit.c
/petsc/src/sys/viewer/impls/binary/binv.c
/petsc/src/ts/examples/tutorials/ex13.c
/petsc/src/ts/examples/tutorials/ex15.c
/petsc/src/ts/examples/tutorials/makefile
/petsc/src/ts/impls/implicit/alpha/alpha.c
/petsc/src/vec/is/interface/index.c
/petsc/src/vec/is/utils/isltog.c
/petsc/src/vec/vec/examples/tutorials/ex7.c
/petsc/src/vec/vec/impls/mpi/pdvec.c
/petsc/src/vec/vec/impls/seq/seqcuda/cudavecimpl.h
/petsc/src/vec/vec/impls/seq/seqcuda/makefile
7087cfbe05-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

moved definition of PETSC_STDCALL to private/fortranimpl.h where it belongs
removed all DLL export/import stuff since it was never used and never will be
removed MatPermuteSparsify() since it sucked.

moved definition of PETSC_STDCALL to private/fortranimpl.h where it belongs
removed all DLL export/import stuff since it was never used and never will be
removed MatPermuteSparsify() since it sucked.

Hg-commit: 72f7a5e60333f6c9780d56fcce45657940d16b13

show more ...


/petsc/bin/maint/generatefortranstubs.py
/petsc/bin/maint/getinterfaces.py
/petsc/include/petscadic.h
/petsc/include/petscao.h
/petsc/include/petscasa.h
/petsc/include/petscbag.h
/petsc/include/petscblaslapack_stdcall.h
/petsc/include/petscbt.h
/petsc/include/petscctable.h
/petsc/include/petscdm.h
/petsc/include/petscdmmg.h
/petsc/include/petscdraw.h
/petsc/include/petscerror.h
/petsc/include/petscfwk.h
/petsc/include/petscis.h
/petsc/include/petscksp.h
/petsc/include/petsclog.h
/petsc/include/petscmat.h
/petsc/include/petscmath.h
/petsc/include/petscmatlab.h
/petsc/include/petscmesh.h
/petsc/include/petscmesh.hh
/petsc/include/petscmg.h
/petsc/include/petscoptions.h
/petsc/include/petscpc.h
/petsc/include/petscpf.h
/petsc/include/petscsnes.h
/petsc/include/petscsys.h
/petsc/include/petsctime.h
/petsc/include/petscts.h
/petsc/include/petscvec.h
/petsc/include/petscviewer.h
/petsc/include/private/daimpl.h
/petsc/include/private/fortranimpl.h
/petsc/include/private/matimpl.h
/petsc/include/private/petscimpl.h
/petsc/include/private/vecimpl.h
/petsc/makefile
/petsc/src/contrib/fun3d/comp/user.h
/petsc/src/contrib/fun3d/incomp/user.h
/petsc/src/dm/ao/impls/basic/aobasic.c
/petsc/src/dm/ao/impls/mapping/aomapping.c
/petsc/src/dm/ao/interface/ao.c
/petsc/src/dm/ao/interface/dlregisdm.c
/petsc/src/dm/dd/matdd/matdd.c
/petsc/src/dm/dd/matdd/matddaij.c
/petsc/src/dm/impls/adda/adda.c
/petsc/src/dm/impls/composite/pack.c
/petsc/src/dm/impls/composite/packm.c
/petsc/src/dm/impls/da/da.c
/petsc/src/dm/impls/da/da1.c
/petsc/src/dm/impls/da/da2.c
/petsc/src/dm/impls/da/da3.c
/petsc/src/dm/impls/da/dacorn.c
/petsc/src/dm/impls/da/dacreate.c
/petsc/src/dm/impls/da/dadestroy.c
/petsc/src/dm/impls/da/dadist.c
/petsc/src/dm/impls/da/dagetarray.c
/petsc/src/dm/impls/da/dagetelem.c
/petsc/src/dm/impls/da/daghost.c
/petsc/src/dm/impls/da/dagtol.c
/petsc/src/dm/impls/da/dagtona.c
/petsc/src/dm/impls/da/daindex.c
/petsc/src/dm/impls/da/dainterp.c
/petsc/src/dm/impls/da/daload.c
/petsc/src/dm/impls/da/dalocal.c
/petsc/src/dm/impls/da/daltog.c
/petsc/src/dm/impls/da/daltol.c
/petsc/src/dm/impls/da/dapf.c
/petsc/src/dm/impls/da/dareg.c
/petsc/src/dm/impls/da/dascatter.c
/petsc/src/dm/impls/da/dasub.c
/petsc/src/dm/impls/da/daview.c
/petsc/src/dm/impls/da/fdda.c
/petsc/src/dm/impls/da/gr1.c
/petsc/src/dm/impls/da/gr2.c
/petsc/src/dm/impls/da/mhyp.c
/petsc/src/dm/impls/da/usfft/matusfft.c
/petsc/src/dm/impls/sliced/sliced.c
/petsc/src/dm/interface/dm.c
/petsc/src/dm/interface/dmregall.c
/petsc/src/dm/mesh/examples/tutorials/bratu_ufc.cxx
/petsc/src/dm/mesh/examples/tutorials/ex1.c
/petsc/src/dm/mesh/examples/tutorials/ex2.c
/petsc/src/dm/mesh/examples/tutorials/ex3.c
/petsc/src/dm/mesh/examples/tutorials/ex5.c
/petsc/src/dm/mesh/examples/tutorials/ex6.c
/petsc/src/dm/mesh/examples/tutorials/ex7.c
/petsc/src/dm/mesh/examples/tutorials/ex_coarsen.c
/petsc/src/dm/mesh/examples/tutorials/ex_coarsen.h
/petsc/src/dm/mesh/examples/tutorials/ex_coarsen_3.c
/petsc/src/dm/mesh/examples/tutorials/fetidp.cxx
/petsc/src/dm/mesh/impls/cartesian/cartesian.c
/petsc/src/dm/mesh/mesh.c
/petsc/src/dm/mesh/meshpcice.c
/petsc/src/dm/mesh/section.c
/petsc/src/ksp/ksp/impls/bcgs/bcgs.c
/petsc/src/ksp/ksp/impls/bcgsl/bcgsl.c
/petsc/src/ksp/ksp/impls/bicg/bicg.c
/petsc/src/ksp/ksp/impls/broyden/broyden.c
/petsc/src/ksp/ksp/impls/cg/cg.c
/petsc/src/ksp/ksp/impls/cg/cgne/cgne.c
/petsc/src/ksp/ksp/impls/cg/cgtype.c
/petsc/src/ksp/ksp/impls/cg/gltr/gltr.c
/petsc/src/ksp/ksp/impls/cg/nash/nash.c
/petsc/src/ksp/ksp/impls/cg/stcg/stcg.c
/petsc/src/ksp/ksp/impls/cgs/cgs.c
/petsc/src/ksp/ksp/impls/cheby/cheby.c
/petsc/src/ksp/ksp/impls/cr/cr.c
/petsc/src/ksp/ksp/impls/gcr/gcr.c
/petsc/src/ksp/ksp/impls/gmres/borthog.c
/petsc/src/ksp/ksp/impls/gmres/borthog2.c
/petsc/src/ksp/ksp/impls/gmres/fgmres/fgmres.c
/petsc/src/ksp/ksp/impls/gmres/fgmres/modpcf.c
/petsc/src/ksp/ksp/impls/gmres/gmpre.c
/petsc/src/ksp/ksp/impls/gmres/gmres.c
/petsc/src/ksp/ksp/impls/gmres/gmres2.c
/petsc/src/ksp/ksp/impls/gmres/lgmres/lgmres.c
/petsc/src/ksp/ksp/impls/ibcgs/ibcgs.c
/petsc/src/ksp/ksp/impls/lsqr/lsqr.c
/petsc/src/ksp/ksp/impls/lsqr/lsqr.h
/petsc/src/ksp/ksp/impls/lsqr/lsqr_converged.c
/petsc/src/ksp/ksp/impls/lsqr/lsqr_monitor.c
/petsc/src/ksp/ksp/impls/minres/minres.c
/petsc/src/ksp/ksp/impls/ngmres/ngmres.c
/petsc/src/ksp/ksp/impls/preonly/preonly.c
/petsc/src/ksp/ksp/impls/python/pythonK.c
/petsc/src/ksp/ksp/impls/qcg/qcg.c
/petsc/src/ksp/ksp/impls/rich/rich.c
/petsc/src/ksp/ksp/impls/rich/richscale.c
/petsc/src/ksp/ksp/impls/specest/specest.c
/petsc/src/ksp/ksp/impls/symmlq/symmlq.c
/petsc/src/ksp/ksp/impls/tcqmr/tcqmr.c
/petsc/src/ksp/ksp/impls/tfqmr/tfqmr.c
/petsc/src/ksp/ksp/interface/dlregisksp.c
/petsc/src/ksp/ksp/interface/eige.c
/petsc/src/ksp/ksp/interface/iguess.c
/petsc/src/ksp/ksp/interface/itcl.c
/petsc/src/ksp/ksp/interface/itcreate.c
/petsc/src/ksp/ksp/interface/iterativ.c
/petsc/src/ksp/ksp/interface/itfunc.c
/petsc/src/ksp/ksp/interface/itregis.c
/petsc/src/ksp/ksp/interface/itres.c
/petsc/src/ksp/ksp/interface/xmon.c
/petsc/src/ksp/ksp/utils/schurm.c
/petsc/src/ksp/pc/impls/asa/asa.c
/petsc/src/ksp/pc/impls/asm/asm.c
/petsc/src/ksp/pc/impls/bfbt/bfbt.c
/petsc/src/ksp/pc/impls/bjacobi/bjacobi.c
/petsc/src/ksp/pc/impls/composite/composite.c
/petsc/src/ksp/pc/impls/cp/cp.c
/petsc/src/ksp/pc/impls/eisens/eisen.c
/petsc/src/ksp/pc/impls/factor/cholesky/cholesky.c
/petsc/src/ksp/pc/impls/factor/factimpl.c
/petsc/src/ksp/pc/impls/factor/factor.c
/petsc/src/ksp/pc/impls/factor/factor.h
/petsc/src/ksp/pc/impls/factor/icc/icc.c
/petsc/src/ksp/pc/impls/factor/ilu/ilu.c
/petsc/src/ksp/pc/impls/factor/lu/lu.c
/petsc/src/ksp/pc/impls/fieldsplit/fieldsplit.c
/petsc/src/ksp/pc/impls/galerkin/galerkin.c
/petsc/src/ksp/pc/impls/gasm/gasm.c
/petsc/src/ksp/pc/impls/hypre/hypre.c
/petsc/src/ksp/pc/impls/is/nn/nn.c
/petsc/src/ksp/pc/impls/is/pcis.c
/petsc/src/ksp/pc/impls/is/pcis.h
/petsc/src/ksp/pc/impls/jacobi/jacobi.c
/petsc/src/ksp/pc/impls/ksp/pcksp.c
/petsc/src/ksp/pc/impls/lsc/lsc.c
/petsc/src/ksp/pc/impls/mat/pcmat.c
/petsc/src/ksp/pc/impls/mg/mg.c
/petsc/src/ksp/pc/impls/mg/mgfunc.c
/petsc/src/ksp/pc/impls/ml/ml.c
/petsc/src/ksp/pc/impls/none/none.c
/petsc/src/ksp/pc/impls/openmp/openmp.c
/petsc/src/ksp/pc/impls/pbjacobi/pbjacobi.c
/petsc/src/ksp/pc/impls/prometheus/petscprom.c
/petsc/src/ksp/pc/impls/python/pythonP.c
/petsc/src/ksp/pc/impls/redistribute/redistribute.c
/petsc/src/ksp/pc/impls/redundant/redundant.c
/petsc/src/ksp/pc/impls/sacuda/sacuda.cu
/petsc/src/ksp/pc/impls/shell/shellpc.c
/petsc/src/ksp/pc/impls/sor/sor.c
/petsc/src/ksp/pc/impls/spai/dspai.c
/petsc/src/ksp/pc/impls/spai/ispai.c
/petsc/src/ksp/pc/impls/spai/petscspai.h
/petsc/src/ksp/pc/impls/supportgraph/supportgraph.c
/petsc/src/ksp/pc/impls/svd/svd.c
/petsc/src/ksp/pc/impls/tfs/tfs.c
/petsc/src/ksp/pc/impls/wb/wb.c
/petsc/src/ksp/pc/interface/pcregis.c
/petsc/src/ksp/pc/interface/pcset.c
/petsc/src/ksp/pc/interface/precon.c
/petsc/src/mat/color/color.c
/petsc/src/mat/color/scolor.c
/petsc/src/mat/impls/adic/matadic.c
/petsc/src/mat/impls/adic/nladic.c
/petsc/src/mat/impls/adj/mpi/mpiadj.c
/petsc/src/mat/impls/aij/aij/aijtype.c
/petsc/src/mat/impls/aij/mpi/crl/mcrl.c
/petsc/src/mat/impls/aij/mpi/csrperm/mpicsrperm.c
/petsc/src/mat/impls/aij/mpi/mmaij.c
/petsc/src/mat/impls/aij/mpi/mpiaij.c
/petsc/src/mat/impls/aij/mpi/mpiaij.h
/petsc/src/mat/impls/aij/mpi/mpiaijpc.c
/petsc/src/mat/impls/aij/mpi/mpicuda/mpiaijcuda.cu
/petsc/src/mat/impls/aij/mpi/mpiptap.c
/petsc/src/mat/impls/aij/seq/aij.c
/petsc/src/mat/impls/aij/seq/aij.h
/petsc/src/mat/impls/aij/seq/aijfact.c
/petsc/src/mat/impls/aij/seq/crl/crl.c
/petsc/src/mat/impls/aij/seq/csrperm/csrperm.c
/petsc/src/mat/impls/aij/seq/inode.c
/petsc/src/mat/impls/aij/seq/inode2.c
/petsc/src/mat/impls/aij/seq/matlab/aijmatlab.c
/petsc/src/mat/impls/aij/seq/seqcuda/aijcuda.cu
/petsc/src/mat/impls/baij/mpi/mmbaij.c
/petsc/src/mat/impls/baij/mpi/mpibaij.c
/petsc/src/mat/impls/baij/seq/aijbaij.c
/petsc/src/mat/impls/baij/seq/baij.c
/petsc/src/mat/impls/blockmat/seq/blockmat.c
/petsc/src/mat/impls/composite/mcomposite.c
/petsc/src/mat/impls/cufft/cufft.cu
/petsc/src/mat/impls/dense/mpi/mpidense.c
/petsc/src/mat/impls/dense/seq/dense.c
/petsc/src/mat/impls/fftw/fftw.c
/petsc/src/mat/impls/im/matim.c
/petsc/src/mat/impls/is/matis.c
/petsc/src/mat/impls/localref/mlocalref.c
/petsc/src/mat/impls/lrc/lrc.c
/petsc/src/mat/impls/maij/maij.c
/petsc/src/mat/impls/mffd/mffd.c
/petsc/src/mat/impls/mffd/mffddef.c
/petsc/src/mat/impls/mffd/mfregis.c
/petsc/src/mat/impls/mffd/wp.c
/petsc/src/mat/impls/nest/matnest.c
/petsc/src/mat/impls/normal/normm.c
/petsc/src/mat/impls/python/pythonmat.c
/petsc/src/mat/impls/sbaij/mpi/mpiaijsbaij.c
/petsc/src/mat/impls/sbaij/mpi/mpisbaij.c
/petsc/src/mat/impls/sbaij/seq/aijsbaij.c
/petsc/src/mat/impls/sbaij/seq/cholmod/cholmodimpl.h
/petsc/src/mat/impls/sbaij/seq/cholmod/sbaijcholmod.c
/petsc/src/mat/impls/sbaij/seq/sbaij.c
/petsc/src/mat/impls/sbaij/seq/sro.c
/petsc/src/mat/impls/scatter/mscatter.c
/petsc/src/mat/impls/shell/shell.c
/petsc/src/mat/impls/submat/submat.c
/petsc/src/mat/impls/transpose/transm.c
/petsc/src/mat/interface/dlregismat.c
/petsc/src/mat/interface/matnull.c
/petsc/src/mat/interface/matreg.c
/petsc/src/mat/interface/matregis.c
/petsc/src/mat/interface/matrix.c
/petsc/src/mat/interface/mhas.c
/petsc/src/mat/matfd/fdmatrix.c
/petsc/src/mat/order/amd/amd.c
/petsc/src/mat/order/sorder.c
/petsc/src/mat/order/sp1wd.c
/petsc/src/mat/order/spnd.c
/petsc/src/mat/order/spqmd.c
/petsc/src/mat/order/sprcm.c
/petsc/src/mat/order/sregis.c
/petsc/src/mat/partition/impls/chaco/chaco.c
/petsc/src/mat/partition/impls/jostle/jostle.c
/petsc/src/mat/partition/impls/party/party.c
/petsc/src/mat/partition/impls/pmetis/pmetis.c
/petsc/src/mat/partition/impls/scotch/scotch.c
/petsc/src/mat/partition/partition.c
/petsc/src/mat/partition/spartition.c
/petsc/src/mat/utils/axpy.c
/petsc/src/mat/utils/gcreate.c
/petsc/src/mat/utils/getcolv.c
/petsc/src/mat/utils/multequal.c
/petsc/src/mat/utils/zerodiag.c
/petsc/src/snes/examples/tutorials/ex43-44.h
/petsc/src/snes/impls/ksponly/ksponly.c
/petsc/src/snes/impls/ls/ls.c
/petsc/src/snes/impls/ls/lsparams.c
/petsc/src/snes/impls/picard/picard.c
/petsc/src/snes/impls/python/pythonsnes.c
/petsc/src/snes/impls/test/snestest.c
/petsc/src/snes/impls/tr/tr.c
/petsc/src/snes/impls/vi/vi.c
/petsc/src/snes/interface/dlregissnes.c
/petsc/src/snes/interface/noise/snesmfj2.c
/petsc/src/snes/interface/snes.c
/petsc/src/snes/interface/snesj.c
/petsc/src/snes/interface/snesj2.c
/petsc/src/snes/interface/snesregi.c
/petsc/src/snes/interface/snesut.c
/petsc/src/snes/mf/snesmfj.c
/petsc/src/snes/utils/adutils/damgsnesad.c
/petsc/src/snes/utils/damg.c
/petsc/src/snes/utils/damgsnes.c
/petsc/src/snes/utils/sieve/meshmgsnes.c
/petsc/src/sys/adic/Gradient/ad_utils.c
/petsc/src/sys/adic/utils/petscglobal.c
/petsc/src/sys/ams/pams.c
/petsc/src/sys/bag/bag.c
/petsc/src/sys/dll/dl.c
/petsc/src/sys/dll/dlimpl.c
/petsc/src/sys/dll/dlimpl.h
/petsc/src/sys/dll/reg.c
/petsc/src/sys/draw/impls/win32/win32draw.c
/petsc/src/sys/draw/impls/x/drawopenx.c
/petsc/src/sys/draw/impls/x/xops.c
/petsc/src/sys/draw/interface/dbuff.c
/petsc/src/sys/draw/interface/dclear.c
/petsc/src/sys/draw/interface/dcoor.c
/petsc/src/sys/draw/interface/dellipse.c
/petsc/src/sys/draw/interface/dflush.c
/petsc/src/sys/draw/interface/dgcoor.c
/petsc/src/sys/draw/interface/dgpause.c
/petsc/src/sys/draw/interface/dline.c
/petsc/src/sys/draw/interface/dlinegw.c
/petsc/src/sys/draw/interface/dlinew.c
/petsc/src/sys/draw/interface/dmouse.c
/petsc/src/sys/draw/interface/dpause.c
/petsc/src/sys/draw/interface/dpoint.c
/petsc/src/sys/draw/interface/dpoints.c
/petsc/src/sys/draw/interface/draw.c
/petsc/src/sys/draw/interface/drawreg.c
/petsc/src/sys/draw/interface/drawregall.c
/petsc/src/sys/draw/interface/drect.c
/petsc/src/sys/draw/interface/dsclear.c
/petsc/src/sys/draw/interface/dsetpause.c
/petsc/src/sys/draw/interface/dsflush.c
/petsc/src/sys/draw/interface/dtext.c
/petsc/src/sys/draw/interface/dtextgs.c
/petsc/src/sys/draw/interface/dtexts.c
/petsc/src/sys/draw/interface/dtextv.c
/petsc/src/sys/draw/interface/dtri.c
/petsc/src/sys/draw/interface/dviewp.c
/petsc/src/sys/draw/utils/axis.c
/petsc/src/sys/draw/utils/axisc.c
/petsc/src/sys/draw/utils/dscatter.c
/petsc/src/sys/draw/utils/hists.c
/petsc/src/sys/draw/utils/hue.c
/petsc/src/sys/draw/utils/lg.c
/petsc/src/sys/draw/utils/lgc.c
/petsc/src/sys/draw/utils/zoom.c
/petsc/src/sys/error/adebug.c
/petsc/src/sys/error/err.c
/petsc/src/sys/error/errabort.c
/petsc/src/sys/error/errstop.c
/petsc/src/sys/error/errtrace.c
/petsc/src/sys/error/fp.c
/petsc/src/sys/error/pstack.c
/petsc/src/sys/error/signal.c
/petsc/src/sys/f90-src/f90_cwrap.c
/petsc/src/sys/f90-src/f90impl.h
/petsc/src/sys/fileio/ffpath.c
/petsc/src/sys/fileio/fpath.c
/petsc/src/sys/fileio/fretrieve.c
/petsc/src/sys/fileio/ftest.c
/petsc/src/sys/fileio/fwd.c
/petsc/src/sys/fileio/ghome.c
/petsc/src/sys/fileio/grpath.c
/petsc/src/sys/fileio/mpiuopen.c
/petsc/src/sys/fileio/mprint.c
/petsc/src/sys/fileio/rpath.c
/petsc/src/sys/fileio/smatlab.c
/petsc/src/sys/fileio/sysio.c
/petsc/src/sys/ftn-custom/zstart.c
/petsc/src/sys/fwk/examples/tests/test1.c
/petsc/src/sys/fwk/examples/tests/testcomponentsI.c
/petsc/src/sys/fwk/examples/tests/testcomponentsII.c
/petsc/src/sys/fwk/interface/fwk.c
/petsc/src/sys/matlabengine/matlab.c
/petsc/src/sys/memory/mal.c
/petsc/src/sys/memory/mem.c
/petsc/src/sys/memory/mtr.c
aoptions.c
destroy.c
gcomm.c
gcookie.c
gtype.c
inherit.c
init.c
mpinit.c
olist.c
options.c
pgname.c
pinit.c
pname.c
prefix.c
ptype.c
state.c
subcomm.c
tagm.c
/petsc/src/sys/plog/logimpl.h
/petsc/src/sys/plog/plog.c
/petsc/src/sys/plog/plogmpe.c
/petsc/src/sys/plog/utils/eventLog.c
/petsc/src/sys/plog/utils/stageLog.c
/petsc/src/sys/python/pythonsys.c
/petsc/src/sys/random/impls/rand/rand.c
/petsc/src/sys/random/impls/rand48/rand48.c
/petsc/src/sys/random/impls/sprng/sprng.c
/petsc/src/sys/random/interface/dlregisrand.c
/petsc/src/sys/random/interface/random.c
/petsc/src/sys/random/interface/randomc.c
/petsc/src/sys/random/interface/randreg.c
/petsc/src/sys/random/randomimpl.h
/petsc/src/sys/time/cputime.c
/petsc/src/sys/time/fdate.c
/petsc/src/sys/time/nt_time/nt_time.c
/petsc/src/sys/time/ptime.c
/petsc/src/sys/time/rs6000_time/rs6000_time.c
/petsc/src/sys/utils/arch.c
/petsc/src/sys/utils/ctable.c
/petsc/src/sys/utils/fhost.c
/petsc/src/sys/utils/fuser.c
/petsc/src/sys/utils/memc.c
/petsc/src/sys/utils/mpimesg.c
/petsc/src/sys/utils/mpitr.c
/petsc/src/sys/utils/mpiu.c
/petsc/src/sys/utils/pbarrier.c
/petsc/src/sys/utils/pdisplay.c
/petsc/src/sys/utils/psleep.c
/petsc/src/sys/utils/psplit.c
/petsc/src/sys/utils/select.c
/petsc/src/sys/utils/sortd.c
/petsc/src/sys/utils/sorti.c
/petsc/src/sys/utils/sortip.c
/petsc/src/sys/utils/sseenabled.c
/petsc/src/sys/utils/str.c
/petsc/src/sys/verbose/verboseinfo.c
/petsc/src/sys/viewer/impls/ascii/asciiimpl.h
/petsc/src/sys/viewer/impls/ascii/filev.c
/petsc/src/sys/viewer/impls/ascii/vcreatea.c
/petsc/src/sys/viewer/impls/binary/binv.c
/petsc/src/sys/viewer/impls/draw/drawv.c
/petsc/src/sys/viewer/impls/hdf5/hdf5v.c
/petsc/src/sys/viewer/impls/mathematica/mathematica.c
/petsc/src/sys/viewer/impls/matlab/vmatlab.c
/petsc/src/sys/viewer/impls/socket/send.c
/petsc/src/sys/viewer/impls/string/stringv.c
/petsc/src/sys/viewer/impls/vu/petscvu.c
/petsc/src/sys/viewer/interface/dlregispetsc.c
/petsc/src/sys/viewer/interface/dupl.c
/petsc/src/sys/viewer/interface/flush.c
/petsc/src/sys/viewer/interface/view.c
/petsc/src/sys/viewer/interface/viewa.c
/petsc/src/sys/viewer/interface/viewers.c
/petsc/src/sys/viewer/interface/viewreg.c
/petsc/src/sys/viewer/interface/viewregall.c
/petsc/src/ts/impls/explicit/euler/euler.c
/petsc/src/ts/impls/explicit/rk/rk.c
/petsc/src/ts/impls/explicit/ssp/ssp.c
/petsc/src/ts/impls/implicit/alpha/alpha.c
/petsc/src/ts/impls/implicit/beuler/beuler.c
/petsc/src/ts/impls/implicit/cn/cn.c
/petsc/src/ts/impls/implicit/gl/gl.c
/petsc/src/ts/impls/implicit/gl/gladapt.c
/petsc/src/ts/impls/implicit/sundials/sundials.c
/petsc/src/ts/impls/implicit/theta/theta.c
/petsc/src/ts/impls/pseudo/posindep.c
/petsc/src/ts/impls/python/pythonts.c
/petsc/src/ts/interface/dlregists.c
/petsc/src/ts/interface/ts.c
/petsc/src/ts/interface/tscreate.c
/petsc/src/ts/interface/tsfd.c
/petsc/src/ts/interface/tsreg.c
/petsc/src/ts/interface/tsregall.c
/petsc/src/vec/is/impls/block/block.c
/petsc/src/vec/is/impls/general/general.c
/petsc/src/vec/is/impls/stride/stride.c
/petsc/src/vec/is/interface/index.c
/petsc/src/vec/is/interface/isreg.c
/petsc/src/vec/is/interface/isregall.c
/petsc/src/vec/is/utils/isblock.c
/petsc/src/vec/is/utils/iscoloring.c
/petsc/src/vec/is/utils/iscomp.c
/petsc/src/vec/is/utils/isdiff.c
/petsc/src/vec/is/utils/isltog.c
/petsc/src/vec/pf/impls/constant/const.c
/petsc/src/vec/pf/impls/matlab/cmatlab.c
/petsc/src/vec/pf/impls/string/cstring.c
/petsc/src/vec/pf/interface/pf.c
/petsc/src/vec/pf/interface/pfall.c
/petsc/src/vec/vec/impls/dvecimpl.h
/petsc/src/vec/vec/impls/mpi/commonmpvec.c
/petsc/src/vec/vec/impls/mpi/mpicuda/mpicuda.cu
/petsc/src/vec/vec/impls/mpi/pbvec.c
/petsc/src/vec/vec/impls/mpi/pdvec.c
/petsc/src/vec/vec/impls/mpi/pmap.c
/petsc/src/vec/vec/impls/mpi/pvec2.c
/petsc/src/vec/vec/impls/mpi/vmpicr.c
/petsc/src/vec/vec/impls/nest/vecnest.c
/petsc/src/vec/vec/impls/seq/bvec2.c
/petsc/src/vec/vec/impls/seq/bvec3.c
/petsc/src/vec/vec/impls/seq/seqcuda/cudavecimpl.h
/petsc/src/vec/vec/impls/seq/seqcuda/veccuda.cu
/petsc/src/vec/vec/impls/seq/vseqcr.c
/petsc/src/vec/vec/impls/shared/shvec.c
/petsc/src/vec/vec/interface/dlregisvec.c
/petsc/src/vec/vec/interface/rvector.c
/petsc/src/vec/vec/interface/veccreate.c
/petsc/src/vec/vec/interface/vecreg.c
/petsc/src/vec/vec/interface/vecregall.c
/petsc/src/vec/vec/interface/vector.c
/petsc/src/vec/vec/utils/cmesh.c
/petsc/src/vec/vec/utils/comb.c
/petsc/src/vec/vec/utils/matlab/gcreatev.c
/petsc/src/vec/vec/utils/vecio.c
/petsc/src/vec/vec/utils/vecmpitoseq.c
/petsc/src/vec/vec/utils/vinv.c
/petsc/src/vec/vec/utils/vscat.c
09573ac705-Dec-2010 Barry Smith <bsmith@mcs.anl.gov>

changed all EXTERN to extern the CAPS served no purpose

Hg-commit: cdf5985509992c2237dbbe07f14278cccee0306c


/petsc/bin/adprocess.py
/petsc/bin/maint/generatefortranstubs.py
/petsc/bin/maint/getinterfaces.py
/petsc/bin/matlab/classes/PetscSNES.m
/petsc/bin/matlab/classes/examples/tutorials/exSNES_DVI.m
/petsc/config/PETSc/packages/Matlab.py
/petsc/config/PETSc/packages/MatlabEngine.py
/petsc/config/PETSc/packages/sowing.py
/petsc/config/cmakegen.py
/petsc/include/characteristic.h
/petsc/include/petscadic.h
/petsc/include/petscao.h
/petsc/include/petscasa.h
/petsc/include/petscbag.h
/petsc/include/petscblaslapack.h
/petsc/include/petscblaslapack_stdcall.h
/petsc/include/petscctable.h
/petsc/include/petscdm.h
/petsc/include/petscdmmg.h
/petsc/include/petscdraw.h
/petsc/include/petscerror.h
/petsc/include/petscfwk.h
/petsc/include/petscis.h
/petsc/include/petscksp.h
/petsc/include/petsclog.h
/petsc/include/petscmat.h
/petsc/include/petscmath.h
/petsc/include/petscmatlab.h
/petsc/include/petscmesh.h
/petsc/include/petscmg.h
/petsc/include/petscoptions.h
/petsc/include/petscpc.h
/petsc/include/petscpf.h
/petsc/include/petscsnes.h
/petsc/include/petscsys.h
/petsc/include/petsctime.h
/petsc/include/petscts.h
/petsc/include/petscvec.h
/petsc/include/petscviewer.h
/petsc/include/private/daimpl.h
/petsc/include/private/fortranimpl.h
/petsc/include/private/kspimpl.h
/petsc/include/private/matimpl.h
/petsc/include/private/petscimpl.h
/petsc/include/private/tsimpl.h
/petsc/include/private/vecimpl.h
/petsc/makefile
/petsc/src/characteristic/characteristicimpl.h
/petsc/src/characteristic/interface/mocregis.c
/petsc/src/dm/ao/interface/dlregisdm.c
/petsc/src/dm/dd/vecdd/ddlayout.h
/petsc/src/dm/dd/vecdd/vecdd.c
/petsc/src/dm/examples/tests/ex36.c
/petsc/src/dm/examples/tests/makefile
/petsc/src/dm/examples/tests/output/ex36_1d.out
/petsc/src/dm/examples/tests/output/ex36_2d.out
/petsc/src/dm/examples/tests/output/ex36_2dp1.out
/petsc/src/dm/examples/tests/output/ex36_2dp2.out
/petsc/src/dm/examples/tests/output/ex36_3d.out
/petsc/src/dm/examples/tests/output/ex36_3dp1.out
/petsc/src/dm/impls/composite/makefile
/petsc/src/dm/impls/composite/packimpl.h
/petsc/src/dm/impls/da/da.c
/petsc/src/dm/impls/da/dagtol.c
/petsc/src/dm/impls/da/dainterp.c
/petsc/src/dm/impls/da/dascatter.c
/petsc/src/dm/impls/da/fdda.c
/petsc/src/dm/impls/da/gr2.c
/petsc/src/dm/impls/da/mhyp.h
/petsc/src/dm/interface/dmregall.c
/petsc/src/dm/mesh/examples/tutorials/ex1.c
/petsc/src/dm/mesh/examples/tutorials/ex2.c
/petsc/src/dm/mesh/examples/tutorials/ex3.c
/petsc/src/dm/mesh/examples/tutorials/ex5.c
/petsc/src/dm/mesh/examples/tutorials/ex6.c
/petsc/src/dm/mesh/examples/tutorials/ex7.c
/petsc/src/dm/mesh/examples/tutorials/ex_coarsen.h
/petsc/src/dm/mesh/mesh.c
/petsc/src/inline/dot.h
/petsc/src/ksp/ksp/examples/tests/ex27.c
/petsc/src/ksp/ksp/examples/tutorials/ex12.c
/petsc/src/ksp/ksp/examples/tutorials/ex8.c
/petsc/src/ksp/ksp/examples/tutorials/ex8g.c
/petsc/src/ksp/ksp/examples/tutorials/makefile
/petsc/src/ksp/ksp/examples/tutorials/output/ex6f_1.out
/petsc/src/ksp/ksp/impls/cg/cg.c
/petsc/src/ksp/ksp/impls/cg/cgne/cgne.c
/petsc/src/ksp/ksp/impls/gmres/fgmres/fgmres.c
/petsc/src/ksp/ksp/impls/gmres/gmres.c
/petsc/src/ksp/ksp/impls/gmres/lgmres/lgmres.c
/petsc/src/ksp/ksp/interface/itregis.c
/petsc/src/ksp/pc/impls/gasm/gasm.c
/petsc/src/ksp/pc/impls/is/nn/nn.h
/petsc/src/ksp/pc/impls/is/pcis.h
/petsc/src/ksp/pc/impls/makefile
/petsc/src/ksp/pc/impls/mg/fmg.c
/petsc/src/ksp/pc/impls/mg/mg.c
/petsc/src/ksp/pc/impls/spai/ispai.c
/petsc/src/ksp/pc/impls/supportgraph/supportgraph.c
/petsc/src/ksp/pc/impls/svd/makefile
/petsc/src/ksp/pc/impls/svd/svd.c
/petsc/src/ksp/pc/impls/tfs/tfs.h
/petsc/src/ksp/pc/interface/pcregis.c
/petsc/src/ksp/pc/interface/pcset.c
/petsc/src/mat/blockinvert.h
/petsc/src/mat/color/color.h
/petsc/src/mat/color/scolor.c
/petsc/src/mat/examples/tests/ex12.c
/petsc/src/mat/examples/tests/output/ex101.out
/petsc/src/mat/examples/tests/output/ex93_1.out
/petsc/src/mat/ftn-kernels/sgemv.h
/petsc/src/mat/impls/aij/mpi/fdmpiaij.c
/petsc/src/mat/impls/aij/mpi/mpiaij.c
/petsc/src/mat/impls/aij/mpi/mpiaij.h
/petsc/src/mat/impls/aij/mpi/mpimatmatmult.c
/petsc/src/mat/impls/aij/mpi/mpiov.c
/petsc/src/mat/impls/aij/mpi/mpiptap.c
/petsc/src/mat/impls/aij/mpi/mumps/mumps.c
/petsc/src/mat/impls/aij/mpi/pastix/pastix.c
/petsc/src/mat/impls/aij/mpi/spooles/mpispooles.c
/petsc/src/mat/impls/aij/seq/aij.c
/petsc/src/mat/impls/aij/seq/aij.h
/petsc/src/mat/impls/aij/seq/aijfact.c
/petsc/src/mat/impls/aij/seq/crl/ftn-kernels/fmultcrl.h
/petsc/src/mat/impls/aij/seq/ftn-kernels/fmult.h
/petsc/src/mat/impls/aij/seq/ftn-kernels/fmultadd.h
/petsc/src/mat/impls/aij/seq/ftn-kernels/frelax.h
/petsc/src/mat/impls/aij/seq/ftn-kernels/fsolve.h
/petsc/src/mat/impls/aij/seq/inode2.c
/petsc/src/mat/impls/aij/seq/lusol/lusol.c
/petsc/src/mat/impls/aij/seq/seqcuda/cudamatimpl.h
/petsc/src/mat/impls/aij/seq/spooles/spooles.h
/petsc/src/mat/impls/aij/seq/superlu/superlu.c
/petsc/src/mat/impls/baij/mpi/baijov.c
/petsc/src/mat/impls/baij/mpi/dscpack/dscpack.c
/petsc/src/mat/impls/baij/mpi/mmbaij.c
/petsc/src/mat/impls/baij/mpi/mpibaij.c
/petsc/src/mat/impls/baij/mpi/mpibaij.h
/petsc/src/mat/impls/baij/seq/baij.c
/petsc/src/mat/impls/baij/seq/baij.h
/petsc/src/mat/impls/baij/seq/baij2.c
/petsc/src/mat/impls/baij/seq/baijfact2.c
/petsc/src/mat/impls/baij/seq/ftn-kernels/fsolvebaij.h
/petsc/src/mat/impls/blockmat/seq/blockmat.c
/petsc/src/mat/impls/dense/mpi/mmdense.c
/petsc/src/mat/impls/dense/mpi/mpidense.h
/petsc/src/mat/impls/dense/seq/dense.h
/petsc/src/mat/impls/mffd/mffdimpl.h
/petsc/src/mat/impls/mffd/mfregis.c
/petsc/src/mat/impls/nest/matnest.c
/petsc/src/mat/impls/sbaij/mpi/mmsbaij.c
/petsc/src/mat/impls/sbaij/mpi/mpisbaij.c
/petsc/src/mat/impls/sbaij/mpi/mpisbaij.h
/petsc/src/mat/impls/sbaij/seq/cholmod/cholmodimpl.h
/petsc/src/mat/impls/sbaij/seq/relax.h
/petsc/src/mat/impls/sbaij/seq/sbaij.c
/petsc/src/mat/impls/sbaij/seq/sbaij.h
/petsc/src/mat/impls/sbaij/seq/sbaij2.c
/petsc/src/mat/impls/sbaij/seq/sbaijfact2.c
/petsc/src/mat/impls/shell/shell.c
/petsc/src/mat/interface/dlregismat.c
/petsc/src/mat/interface/matregis.c
/petsc/src/mat/interface/matrix.c
/petsc/src/mat/order/fn1wd.c
/petsc/src/mat/order/fndsep.c
/petsc/src/mat/order/fnroot.c
/petsc/src/mat/order/gen1wd.c
/petsc/src/mat/order/gennd.c
/petsc/src/mat/order/genqmd.c
/petsc/src/mat/order/genrcm.c
/petsc/src/mat/order/order.h
/petsc/src/mat/order/qmdupd.c
/petsc/src/mat/order/rcm.c
/petsc/src/mat/order/sorder.c
/petsc/src/mat/order/sregis.c
/petsc/src/mat/partition/spartition.c
/petsc/src/mat/utils/zerodiag.c
/petsc/src/snes/examples/tutorials/ex53.c
/petsc/src/snes/impls/vi/vi.c
/petsc/src/snes/impls/vi/viimpl.h
/petsc/src/snes/interface/noise/snesmfj2.c
/petsc/src/snes/interface/noise/snesnoise.c
/petsc/src/snes/interface/snes.c
/petsc/src/snes/interface/snesregi.c
/petsc/src/snes/utils/adutils/damgsnesad.c
/petsc/src/snes/utils/damgsnes.c
/petsc/src/sys/dll/dlimpl.h
/petsc/src/sys/draw/impls/x/frame.c
/petsc/src/sys/draw/impls/x/xcolor.c
/petsc/src/sys/draw/impls/x/xinit.c
/petsc/src/sys/draw/impls/x/xops.c
/petsc/src/sys/draw/interface/drawregall.c
/petsc/src/sys/draw/utils/axisimpl.h
/petsc/src/sys/f90-src/f90impl.h
/petsc/src/sys/ftn-custom/zstart.c
/petsc/src/sys/matlabengine/ftn-custom/zmatlabf.c
/petsc/src/sys/memory/mtr.c
inherit.c
init.c
pinit.c
/petsc/src/sys/plog/logimpl.h
/petsc/src/sys/random/interface/randreg.c
/petsc/src/sys/time/fdate.c
/petsc/src/sys/viewer/impls/ascii/asciiimpl.h
/petsc/src/sys/viewer/impls/binary/binv.c
/petsc/src/sys/viewer/impls/mathematica/mathematica.h
/petsc/src/sys/viewer/interface/viewregall.c
/petsc/src/ts/impls/implicit/alpha/alpha.c
/petsc/src/ts/interface/tsregall.c
/petsc/src/vec/is/interface/isregall.c
/petsc/src/vec/pf/interface/pfall.c
/petsc/src/vec/vec/examples/tutorials/ex7.c
/petsc/src/vec/vec/examples/tutorials/makefile
/petsc/src/vec/vec/examples/tutorials/output/ex4f_1.out
/petsc/src/vec/vec/impls/dvecimpl.h
/petsc/src/vec/vec/impls/mpi/pbvec.c
/petsc/src/vec/vec/impls/mpi/pvecimpl.h
/petsc/src/vec/vec/impls/seq/ftn-kernels/fmaxpy.h
/petsc/src/vec/vec/impls/seq/ftn-kernels/fmdot.h
/petsc/src/vec/vec/impls/seq/ftn-kernels/fnorm.h
/petsc/src/vec/vec/impls/seq/ftn-kernels/fxtimesy.h
/petsc/src/vec/vec/impls/seq/seqcuda/cudavecimpl.h
/petsc/src/vec/vec/impls/shared/shvec.c
/petsc/src/vec/vec/interface/vecregall.c
/petsc/src/vec/vec/interface/vector.c
/petsc/src/vec/vec/utils/vscat.c
e5ea902f01-Dec-2010 Jed Brown <jed@59A2.org>

Replace _XOPEN_SOURCE feature test macro with _POSIX_C_SOURCE to avoid also getting C99 definitions which OpenSolaris does not like

Hg-commit: 05a7115cef30a00452b01a0ea40526200a7199d9

84c105d730-Nov-2010 Barry Smith <bsmith@mcs.anl.gov>

convert VI bounds from Matlab infinity to PETSc infinity
fix SuperLU so it doesn't crash viewing the matrix

Hg-commit: 06fe53680194c3b993bd2f60cd8ecec721aa2542


/petsc/bin/matlab/classes/PetscCHKERRQ.m
/petsc/bin/matlab/classes/PetscDM.m
/petsc/bin/matlab/classes/PetscFinalize.m
/petsc/bin/matlab/classes/PetscIS.m
/petsc/bin/matlab/classes/PetscInitialize.m
/petsc/bin/matlab/classes/PetscKSP.m
/petsc/bin/matlab/classes/PetscMat.m
/petsc/bin/matlab/classes/PetscMatCreateSeqAIJ.m
/petsc/bin/matlab/classes/PetscSNES.m
/petsc/bin/matlab/classes/PetscTS.m
/petsc/bin/matlab/classes/PetscVec.m
/petsc/bin/matlab/classes/PetscViewer.m
/petsc/bin/matlab/classes/examples/tutorials/exKSP_MatCreateSeqAIJ.m
/petsc/bin/matlab/classes/examples/tutorials/exSNES_DVI.m
/petsc/bin/matlab/classes/matlabheader.h
/petsc/config/cmakegen.py
/petsc/include/finclude/petscsys.h
/petsc/include/petscerror.h
/petsc/include/petsclog.h
/petsc/include/petscmat.h
/petsc/include/petscsys.h
/petsc/include/petscvec.h
/petsc/include/petscviewer.h
/petsc/include/private/fortranimpl.h
/petsc/include/private/vecimpl.h
/petsc/src/dm/impls/composite/makefile
/petsc/src/dm/impls/composite/pack.c
/petsc/src/dm/impls/composite/packimpl.h
/petsc/src/dm/impls/composite/packm.c
/petsc/src/dm/impls/da/fdda.c
/petsc/src/dm/impls/da/usfft/matusfft.c
/petsc/src/dm/interface/dm.c
/petsc/src/dm/mesh/examples/tutorials/ex1.c
/petsc/src/ksp/ksp/examples/tests/ex22.c
/petsc/src/ksp/ksp/examples/tests/makefile
/petsc/src/ksp/ksp/examples/tests/output/ex22_1.out
/petsc/src/ksp/ksp/examples/tests/output/ex22_2.out
/petsc/src/ksp/ksp/impls/specest/specest.c
/petsc/src/mat/examples/tests/ex126f.F
/petsc/src/mat/examples/tests/makefile
/petsc/src/mat/impls/adj/mpi/mpiadj.c
/petsc/src/mat/impls/aij/seq/aij.c
/petsc/src/mat/impls/aij/seq/matlab/aijmatlab.c
/petsc/src/mat/impls/aij/seq/superlu/superlu.c
/petsc/src/mat/impls/baij/mpi/mpibaij.c
/petsc/src/mat/impls/baij/seq/baij.c
/petsc/src/mat/impls/dense/seq/dense.c
/petsc/src/mat/impls/makefile
/petsc/src/mat/impls/mffd/mffd.c
/petsc/src/mat/impls/nest/makefile
/petsc/src/mat/impls/nest/matnest.c
/petsc/src/mat/impls/nest/matnestimpl.h
/petsc/src/mat/impls/sbaij/seq/sbaij.c
/petsc/src/mat/interface/matrix.c
/petsc/src/snes/examples/tests/ex17.c
/petsc/src/snes/examples/tests/makefile
/petsc/src/snes/examples/tests/output/ex17_1.out
/petsc/src/snes/examples/tutorials/ex21.c
/petsc/src/snes/examples/tutorials/ex28.c
/petsc/src/snes/examples/tutorials/makefile
/petsc/src/snes/examples/tutorials/output/ex28_0.out
/petsc/src/snes/examples/tutorials/output/ex28_1.out
/petsc/src/snes/examples/tutorials/output/ex28_2.out
/petsc/src/snes/impls/vi/vi.c
/petsc/src/sys/f90-src/f90impl.h
tagm.c
/petsc/src/sys/viewer/impls/ascii/filev.c
/petsc/src/sys/viewer/impls/matlab/vmatlab.c
/petsc/src/ts/examples/tutorials/ex14.c
/petsc/src/vec/is/impls/general/general.c
/petsc/src/vec/vec/examples/tests/ex37.c
/petsc/src/vec/vec/examples/tests/makefile
/petsc/src/vec/vec/impls/dvecimpl.h
/petsc/src/vec/vec/impls/mpi/mpicuda/mpicuda.cu
/petsc/src/vec/vec/impls/mpi/pbvec.c
/petsc/src/vec/vec/impls/mpi/pdvec.c
/petsc/src/vec/vec/impls/nest/vecnest.c
/petsc/src/vec/vec/impls/seq/bvec1.c
/petsc/src/vec/vec/impls/seq/bvec2.c
/petsc/src/vec/vec/impls/seq/dvec2.c
/petsc/src/vec/vec/impls/seq/seqcuda/cudavecimpl.h
/petsc/src/vec/vec/impls/seq/seqcuda/veccuda.cu
/petsc/src/vec/vec/interface/rvector.c
/petsc/src/vec/vec/interface/vector.c
238ccf2824-Nov-2010 Shri Abhyankar <abhyshr@mcs.anl.gov>

Added support for displaying petsc stdout output in Matlab desktop.

Hg-commit: 2830475fe0623c8883617b99b5e3af9ebc441f05


/petsc/.dir-locals.el
/petsc/bin/maint/generateetags.py
/petsc/bin/matlab/classes/PetscDM.m
/petsc/bin/matlab/classes/PetscInitialize.m
/petsc/bin/matlab/classes/PetscMat.m
/petsc/bin/matlab/classes/PetscSNESMonitorInternal.m
/petsc/bin/matlab/classes/PetscVec.m
/petsc/bin/matlab/classes/examples/tutorials/MSA_InitialGuess.m
/petsc/bin/matlab/classes/examples/tutorials/MSA_Plate.m
/petsc/bin/matlab/classes/examples/tutorials/exKSPDM.m
/petsc/bin/matlab/classes/examples/tutorials/exSNES_DVI.m
/petsc/bin/matlab/classes/examples/tutorials/exSNES_DVI2.m
/petsc/bin/matlab/classes/examples/tutorials/jacobian.m
/petsc/bin/matlab/classes/examples/tutorials/snesdvi_function.m
/petsc/bin/matlab/classes/examples/tutorials/snesdvi_jacobian.m
/petsc/bin/matlab/classes/examples/tutorials/snesdvi_monitor.m
/petsc/bin/matlab/classes/matlabheader.h
/petsc/conf/rules
/petsc/conf/variables
/petsc/config/PETSc/Configure.py
/petsc/config/PETSc/packages/Matlab.py
/petsc/config/PETSc/packages/TetGen.py
/petsc/config/PETSc/packages/blopex.py
/petsc/config/PETSc/utilities/scalarTypes.py
/petsc/include/finclude/petscmat.h
/petsc/include/petscdm.h
/petsc/include/petscis.h
/petsc/include/petscmat.h
/petsc/include/petscmesh.hh
/petsc/include/petscmg.h
/petsc/include/petscsys.h
/petsc/include/petscvec.h
/petsc/include/private/daimpl.h
/petsc/include/private/dmimpl.h
/petsc/include/private/isimpl.h
/petsc/include/private/matimpl.h
/petsc/include/private/vecimpl.h
/petsc/include/sieve/Mesh.hh
/petsc/src/contrib/fun3d/comp/flow.c
/petsc/src/contrib/fun3d/incomp/flow.c
/petsc/src/dm/examples/tests/ex16.c
/petsc/src/dm/examples/tests/ex18.c
/petsc/src/dm/examples/tests/ex2.c
/petsc/src/dm/examples/tests/makefile
/petsc/src/dm/examples/tests/output/ex16_1.out
/petsc/src/dm/examples/tests/output/ex16_2.out
/petsc/src/dm/impls/composite/pack.c
/petsc/src/dm/impls/da/da.c
/petsc/src/dm/impls/da/da1.c
/petsc/src/dm/impls/da/da2.c
/petsc/src/dm/impls/da/da3.c
/petsc/src/dm/impls/da/dacreate.c
/petsc/src/dm/impls/da/dadestroy.c
/petsc/src/dm/impls/da/dadist.c
/petsc/src/dm/impls/da/fdda.c
/petsc/src/dm/impls/da/mhyp.c
/petsc/src/dm/impls/sliced/sliced.c
/petsc/src/dm/interface/dm.c
/petsc/src/dm/mesh/examples/tests/TestMeshExodus.c
/petsc/src/dm/mesh/examples/tutorials/ex1.c
/petsc/src/docs/tex/manual/part2.tex
/petsc/src/docs/tex/petscapp.bib
/petsc/src/docs/website/documentation/changes/dev.html
/petsc/src/ksp/ksp/examples/tutorials/ex8g.c
/petsc/src/ksp/ksp/examples/tutorials/makefile
/petsc/src/ksp/pc/impls/gasm/gasm.c
/petsc/src/ksp/pc/impls/sacuda/sacuda.cu
/petsc/src/ksp/pc/impls/wb/wb.c
/petsc/src/ksp/pc/interface/pcregis.c
/petsc/src/mat/examples/tests/ex139.c
/petsc/src/mat/examples/tests/makefile
/petsc/src/mat/examples/tests/output/ex139_1.out
/petsc/src/mat/impls/adj/mpi/mpiadj.c
/petsc/src/mat/impls/aij/mpi/fdmpiaij.c
/petsc/src/mat/impls/aij/mpi/mmaij.c
/petsc/src/mat/impls/aij/mpi/mpiaij.c
/petsc/src/mat/impls/aij/mpi/mpiaij.h
/petsc/src/mat/impls/aij/mpi/mpiov.c
/petsc/src/mat/impls/aij/seq/aij.c
/petsc/src/mat/impls/baij/mpi/mmbaij.c
/petsc/src/mat/impls/baij/mpi/mpibaij.c
/petsc/src/mat/impls/baij/seq/baij.c
/petsc/src/mat/impls/dense/mpi/mpidense.c
/petsc/src/mat/impls/dense/seq/dense.c
/petsc/src/mat/impls/is/matis.c
/petsc/src/mat/impls/localref/makefile
/petsc/src/mat/impls/localref/mlocalref.c
/petsc/src/mat/impls/maij/maij.c
/petsc/src/mat/impls/makefile
/petsc/src/mat/impls/sbaij/mpi/mpisbaij.c
/petsc/src/mat/impls/sbaij/seq/sbaij.c
/petsc/src/mat/interface/matrix.c
/petsc/src/mat/utils/gcreate.c
/petsc/src/snes/examples/tests/ex15.c
/petsc/src/snes/examples/tests/ex16.c
/petsc/src/snes/examples/tests/ex8.c
/petsc/src/snes/examples/tests/makefile
/petsc/src/snes/examples/tutorials/ex21.c
/petsc/src/snes/examples/tutorials/ex32.c
/petsc/src/snes/examples/tutorials/ex48.c
/petsc/src/snes/examples/tutorials/ex7.c
/petsc/src/snes/examples/tutorials/makefile
/petsc/src/snes/impls/vi/vi.c
/petsc/src/snes/impls/vi/viimpl.h
/petsc/src/sys/fileio/mprint.c
init.c
/petsc/src/ts/examples/tutorials/ex13.c
/petsc/src/ts/examples/tutorials/ex14.c
/petsc/src/ts/examples/tutorials/makefile
/petsc/src/vec/is/examples/tutorials/ex3.c
/petsc/src/vec/is/examples/tutorials/ex3f90.F
/petsc/src/vec/is/impls/block/block.c
/petsc/src/vec/is/impls/general/general.c
/petsc/src/vec/is/impls/stride/stride.c
/petsc/src/vec/is/interface/index.c
/petsc/src/vec/is/utils/iscoloring.c
/petsc/src/vec/is/utils/isltog.c
/petsc/src/vec/vec/examples/tests/ex37.c
/petsc/src/vec/vec/examples/tests/makefile
/petsc/src/vec/vec/examples/tests/output/ex37_1.out
/petsc/src/vec/vec/examples/tests/output/ex37_2.out
/petsc/src/vec/vec/examples/tutorials/ex1f.F
/petsc/src/vec/vec/examples/tutorials/ex7f.F
/petsc/src/vec/vec/examples/tutorials/ex9f.F
/petsc/src/vec/vec/examples/tutorials/makefile
/petsc/src/vec/vec/examples/tutorials/output/ex1f_1.out
/petsc/src/vec/vec/examples/tutorials/output/ex7_1.out
/petsc/src/vec/vec/examples/tutorials/output/ex9f_1.out
/petsc/src/vec/vec/impls/makefile
/petsc/src/vec/vec/impls/mpi/mpicuda/mpicuda.cu
/petsc/src/vec/vec/impls/mpi/pbvec.c
/petsc/src/vec/vec/impls/nest/makefile
/petsc/src/vec/vec/impls/nest/vecnest.c
/petsc/src/vec/vec/impls/nest/vecnestimpl.h
/petsc/src/vec/vec/impls/seq/bvec1.c
/petsc/src/vec/vec/impls/seq/bvec2.c
/petsc/src/vec/vec/impls/seq/dvec2.c
/petsc/src/vec/vec/impls/seq/seqcuda/cudavecimpl.h
/petsc/src/vec/vec/impls/seq/seqcuda/veccuda.cu
/petsc/src/vec/vec/interface/rvector.c
/petsc/src/vec/vec/interface/vector.c
/petsc/src/vec/vec/utils/vpscat.h
/petsc/src/vec/vec/utils/vscat.c

1...<<81828384858687888990>>...99