History log of /petsc/src/mat/impls/aij/mpi/mpiaij.c (Results 2276 – 2300 of 2754)
Revision Date Author Comments
# 4efcb820 03-Feb-2004 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1922.4.2
barrysmith@barry-smiths-computer.local|ChangeSet|20040203200436|11780
ChangeSet
1.1922.4.2 04/02/03 14:04:36 barrysmith@barry-smiths-computer.local +3 -0
nightly build fix

bk-changeset-1.1922.4.2
barrysmith@barry-smiths-computer.local|ChangeSet|20040203200436|11780
ChangeSet
1.1922.4.2 04/02/03 14:04:36 barrysmith@barry-smiths-computer.local +3 -0
nightly build fixes
vec cache checking in makefile test
memory leaks in matduplicate_mpiaij/mpibaij

src/mat/impls/baij/mpi/mpibaij.c
1.48 04/02/03 13:49:59 barrysmith@barry-smiths-computer.local +2 -0
need to delete inner matrices before creating new ones

src/mat/impls/aij/mpi/mpiaij.c
1.105 04/02/03 13:48:44 barrysmith@barry-smiths-computer.local +2 -0
need to delete old inner matrices before creating new ones

src/vec/examples/tests/makefile
1.12 04/02/03 13:27:16 barrysmith@barry-smiths-computer.local +1 -1
handle machine where the cached is printed as 1.0000000e-00 while orig is
printed as 1.000000e+00 :-(


Hg-commit: 3db7d901124127ce091458585c268b5b2b926187

show more ...


# 9c097c71 19-Jan-2004 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1883
Kris@p4buschel.|ChangeSet|20040119222151|61868
ChangeSet
1.1883 04/01/19 14:21:51 Kris@p4buschel. +7 -0
Creation of inner matrices for MPISBAIJ and MPIBAIJ requires block size

bk-changeset-1.1883
Kris@p4buschel.|ChangeSet|20040119222151|61868
ChangeSet
1.1883 04/01/19 14:21:51 Kris@p4buschel. +7 -0
Creation of inner matrices for MPISBAIJ and MPIBAIJ requires block size information for PETSc to DETERMINE
the locl sizes properly. As such, the creation of these inner matrices MUST be done in the Preallocation
routine, not in the Create routine.
Creation of MATMPISBAIJSPOOLES, MATDSCPACK, and MATSBAIJMUMPS have been updated accordingly to overload their
Preallocation routines.

src/mat/impls/baij/mpi/mpibaij.c
1.46 04/01/19 14:21:50 Kris@p4buschel. +6 -7
Undo the previous separation of Creation and Preallocation for inner matrices for MPIBAIJ.
This is necessary because we do not know m if PETSC_DETERMINE was used until the Preallocation step
which defines the block size. UUGH.

src/mat/impls/sbaij/mpi/spooles/mpisbaijspooles.c
1.33 04/01/19 14:15:47 Kris@p4buschel. +35 -3
We can't convert the local diagonal block to MPISBAIJSPOOLES type in the Create routine because some of the
data structure creation for SBAIJ MUST be done in the Preallocation routine. So we must overload the
Preallocation instead.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.79 04/01/19 14:15:47 Kris@p4buschel. +7 -7
Undo the previous separation of Creation and Preallocation for inner matrices for MPISBAIJ.
This is necessary because we do not know m if PETSC_DETERMINE was used until the Preallocation step
which defines the block size. UUGH.

src/mat/impls/baij/mpi/dscpack/dscpack.c
1.48 04/01/19 14:15:47 Kris@p4buschel. +37 -4
We can't convert the local diagonal block to DSCPACK type in the Create routine because some of the
data structure creation for BAIJ MUST be done in the Preallocation routine. So we must overload the
Preallocation instead.

src/mat/impls/aij/seq/spooles/spooles.h
1.43 04/01/19 14:15:47 Kris@p4buschel. +1 -0
Added function pointer for overloading the Preallocation routine for MPISBAIJ type.

src/mat/impls/aij/mpi/mumps/mumps.c
1.56 04/01/19 14:15:46 Kris@p4buschel. +35 -4
We can't convert the local diagonal block to SBAIJMUMPS type in the Create routine because some of the
data structure creation for SBAIJ MUST be done in the Preallocation routine. So we must overload the
Preallocation instead.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.78 04/01/19 12:36:34 Kris@p4buschel. +2 -2
Use actual sizes for local block matrix creation because PETSC_DETERMINE has already been determined

src/mat/impls/baij/mpi/mpibaij.c
1.45 04/01/19 12:34:18 Kris@p4buschel. +2 -2
Use actual sizes for local block matrix creation because PETSC_DETERMINE has been evaluated already.

src/mat/impls/aij/mpi/mpiaij.c
1.104 04/01/19 12:34:18 Kris@p4buschel. +2 -2
Use actual sizes for local block matrix creation because PETSC_DETERMINE has been evaluated already.


Hg-commit: f3bffe4aa33d9c0b9e761422d43eba0b77d2485a

show more ...


# c60e587d 16-Jan-2004 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1875
Kris@p4buschel.|ChangeSet|20040116221827|55752
ChangeSet
1.1875 04/01/16 14:18:27 Kris@p4buschel. +6 -0
More fixes for inheritance model for external packages.
Clean up sepa

bk-changeset-1.1875
Kris@p4buschel.|ChangeSet|20040116221827|55752
ChangeSet
1.1875 04/01/16 14:18:27 Kris@p4buschel. +6 -0
More fixes for inheritance model for external packages.
Clean up separation of creation and preallocation for base classes.

src/mat/impls/sbaij/mpi/spooles/mpisbaijspooles.c
1.32 04/01/16 14:18:26 Kris@p4buschel. +1 -1
Cannot use MatConvert directly here because the matrix has not been preallocated or assembled.

src/mat/impls/aij/seq/spooles/spooles.h
1.42 04/01/16 14:18:26 Kris@p4buschel. +1 -0
Added prototype.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.77 04/01/16 14:13:37 Kris@p4buschel. +9 -5
Only perform preallocation steps in the preallocation routines
Move basic data structure creation into the creation routine

src/mat/impls/baij/mpi/mpibaij.c
1.44 04/01/16 14:13:37 Kris@p4buschel. +10 -4
Only perform preallocation steps in the preallocation routines
Move basic data structure creation into the creation routine

src/mat/impls/aij/seq/spooles/spooles.h
1.41 04/01/16 14:13:37 Kris@p4buschel. +1 -0
Add prototype for specific converter.

src/mat/impls/aij/mpi/spooles/mpispooles.c
1.57 04/01/16 14:13:37 Kris@p4buschel. +1 -1
Cannot use MatConvert here because the matrix has not been preallocated yet.

src/mat/impls/aij/mpi/mpiaij.c
1.103 04/01/16 14:13:37 Kris@p4buschel. +9 -5
Only perform preallocation steps in the preallocation routines
Move basic data structure creation into the creation routine


Hg-commit: 9badeb7884ea07f0a3d38ffac039bc13ac56450f

show more ...


# e2d9671b 16-Jan-2004 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1874
Kris@p4buschel.|ChangeSet|20040116211125|60115
ChangeSet
1.1874 04/01/16 13:11:25 Kris@p4buschel. +10 -0
Replace calls to MatCreateXXX with MatCreate,MatSetType to fix inherit

bk-changeset-1.1874
Kris@p4buschel.|ChangeSet|20040116211125|60115
ChangeSet
1.1874 04/01/16 13:11:25 Kris@p4buschel. +10 -0
Replace calls to MatCreateXXX with MatCreate,MatSetType to fix inheritance problems
Set the local diagonal block matrix type to be external package specific when appropriate

src/mat/impls/sbaij/seq/sbaij2.c
1.15 04/01/16 13:11:23 Kris@p4buschel. +3 -1
Replace MatCreateSeqSBAIJ with MatCreate,MatSetType to fix inheritance problems

src/mat/impls/sbaij/mpi/spooles/mpisbaijspooles.c
1.31 04/01/16 13:11:23 Kris@p4buschel. +7 -3
set the local diagonal block matrix type to be spooles type

src/mat/impls/baij/seq/baij2.c
1.11 04/01/16 13:11:23 Kris@p4buschel. +3 -1
Replace MatCreateSeqBAIJ with MatCreate,MatSetType to fix inheritance problems

src/mat/impls/baij/mpi/dscpack/dscpack.c
1.47 04/01/16 13:11:23 Kris@p4buschel. +4 -1
set the local diagonal block matrix type to be dscpack type

src/mat/impls/aij/seq/aij.c
1.121 04/01/16 13:11:23 Kris@p4buschel. +6 -2
Replace MatCreateSeqAIJ with MatCreate,MatSetType to fix inheritance problems

src/mat/impls/aij/mpi/superlu_dist/superlu_dist.c
1.83 04/01/16 13:11:23 Kris@p4buschel. +4 -1
set the local diagonal block matrix type to be superludist type

src/mat/impls/aij/mpi/spooles/mpispooles.c
1.56 04/01/16 13:11:23 Kris@p4buschel. +6 -3
set the type of local diagonal block matrix to be spooles type

src/mat/impls/aij/mpi/mumps/mumps.c
1.55 04/01/16 13:11:23 Kris@p4buschel. +10 -4
Set the type of local diagonal block matrix for MPI types to be MUMPS types

src/mat/impls/aij/mpi/mpiov.c
1.12 04/01/16 13:11:23 Kris@p4buschel. +7 -3
Replace MatCreateSeqAIJ with MatCreate,MatSetType to fix inheritance problems

src/mat/impls/aij/mpi/mpiaij.c
1.102 04/01/16 13:11:23 Kris@p4buschel. +3 -1
Replace MatCreateMPIAIJ with MatCreate,MatSetType to fix inheritance problems


Hg-commit: 3e45700e6e6778c14505f8e83a319963b8c5e299

show more ...


# b1d4fb26 04-Jan-2004 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1851
barrysmith@barry-smiths-computer.local|ChangeSet|20040104192813|27901
ChangeSet
1.1851 04/01/04 13:28:13 barrysmith@barry-smiths-computer.local +54 -0
vecgetarrayfast() now us

bk-changeset-1.1851
barrysmith@barry-smiths-computer.local|ChangeSet|20040104192813|27901
ChangeSet
1.1851 04/01/04 13:28:13 barrysmith@barry-smiths-computer.local +54 -0
vecgetarrayfast() now used in all Mat impls
undid extern c put in gmres to remove warnings on solaris (change made it worse)

src/mat/matimpl.h
1.33 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +4 -0
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/sbaij/seq/sro.c
1.5 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/sbaij/seq/sbaijfact2.c
1.31 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +68 -69
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/sbaij/seq/sbaijfact.c
1.52 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/sbaij/seq/sbaij2.c
1.14 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +88 -89
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/sbaij/seq/sbaij.c
1.88 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +4 -5
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/sbaij/mpi/mpisbaij.c
1.74 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +18 -19
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/sbaij/mpi/mmsbaij.c
1.18 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +4 -5
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/rowbs/mpi/mpirowbs.c
1.42 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +20 -21
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/rowbs/mpi/iccbs.c
1.4 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +16 -16
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/ksp/ksp/impls/gmres/gmres2.c
1.14 04/01/04 13:28:10 barrysmith@barry-smiths-computer.local +0 -2
undo extern c stuff I tried

src/mat/impls/rowbs/mpi/cholbs.c
1.5 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +22 -22
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/dense/seq/dense.c
1.42 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +42 -42
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/dense/mpi/mpidense.c
1.30 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +6 -7
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/dense/mpi/mmdense.c
1.7 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/bdiag/seq/bdiag3.c
1.12 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/bdiag/seq/bdiag2.c
1.13 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +76 -77
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/bdiag/seq/bdiag.c
1.24 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +8 -9
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/bdiag/seq/bdfact.c
1.6 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +24 -25
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/bdiag/mpi/mpibdiag.c
1.26 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/bdiag/mpi/mmbdiag.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact9.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact8.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact7.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact6.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact5.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact4.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact3.c
1.8 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact2.c
1.29 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +128 -130
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact14.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact13.c
1.4 04/01/04 13:28:09 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact12.c
1.17 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact11.c
1.5 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact10.c
1.4 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baijfact.c
1.5 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baij2.c
1.10 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +92 -93
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/seq/baij.c
1.66.1.1 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +2 -3
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/mpi/mpibaij.c
1.41.1.1 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +4 -5
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/baij/mpi/mmbaij.c
1.13 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +6 -7
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/aij/seq/fdaij.c
1.8 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/aij/seq/aijnode.c
1.21 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +14 -15
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/aij/seq/aijfact.c
1.45 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +20 -21
vecimpl.h is now contained by matimpl.h so do not need to list in each file
use VecGetArrayFast in alll Mat impls

src/mat/impls/aij/seq/aij.c
1.120 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file

src/mat/impls/aij/mpi/pxxt.c
1.12 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +8 -8
vecimpl.h is now contained by matimpl.h so do not need to list in each file

src/mat/impls/aij/mpi/mpiaij.c
1.101 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file

src/mat/impls/aij/mpi/mmaij.c
1.9 04/01/04 13:28:08 barrysmith@barry-smiths-computer.local +6 -7
vecimpl.h is now contained by matimpl.h so do not need to list in each file

src/mat/impls/aij/mpi/fdmpiaij.c
1.5 04/01/04 13:28:07 barrysmith@barry-smiths-computer.local +0 -1
vecimpl.h is now contained by matimpl.h so do not need to list in each file

src/ksp/ksp/impls/gmres/gmresp.h
1.8 04/01/04 13:28:07 barrysmith@barry-smiths-computer.local +0 -2
undoing extern c I put in everywhere for solaris compiler complaints
(it made matters worse, now errors instead of warnings)

src/ksp/ksp/impls/gmres/borthog2.c
1.10 04/01/04 13:28:07 barrysmith@barry-smiths-computer.local +0 -2
undoing extern c I put in everywhere for solaris compiler complaints
(it made matters worse, now errors instead of warnings)

src/ksp/ksp/impls/gmres/borthog.c
1.8 04/01/04 13:28:07 barrysmith@barry-smiths-computer.local +0 -2
undoing extern c I put in everywhere for solaris compiler complaints
(it made matters worse, now errors instead of warnings)

src/ksp/ksp/impls/fgmres/modpcf.c
1.8 04/01/04 13:28:07 barrysmith@barry-smiths-computer.local +0 -6
undoing extern c I put in everywhere for solaris compiler complaints
(it made matters worse, now errors instead of warnings)

src/ksp/ksp/impls/fgmres/fgmresp.h
1.8 04/01/04 13:28:07 barrysmith@barry-smiths-computer.local +0 -2
undoing extern c I put in everywhere for solaris compiler complaints
(it made matters worse, now errors instead of warnings)

include/petscksp.h
1.35 04/01/04 13:28:07 barrysmith@barry-smiths-computer.local +0 -4
undoing extern c I put in everywhere for solaris compiler complaints
(it made matters worse, now errors instead of warnings)

src/ksp/ksp/impls/gmres/gmres2.c
1.13 04/01/04 13:16:50 barrysmith@barry-smiths-computer.local +2 -2
more outdated unmodified gram schmidt manual page mentions

src/ksp/ksp/impls/gmres/gmres2.c
1.12 04/01/04 13:10:37 barrysmith@barry-smiths-computer.local +1 -1
wrong name in manual page

todo
1.11 04/01/03 16:57:05 barrysmith@barry-smiths-computer.local +4 -0
*** empty log message ***


Hg-commit: 58c4930d3d31bcdcffc199367ee5c46310909139

show more ...


# 51b59709 01-Dec-2003 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1733
barrysmith@barry-smiths-computer.local|ChangeSet|20031201040725|38869
ChangeSet
1.1733 03/11/30 22:07:25 barrysmith@barry-smiths-computer.local +1 -0
merge with Matt's check

bk-changeset-1.1733
barrysmith@barry-smiths-computer.local|ChangeSet|20031201040725|38869
ChangeSet
1.1733 03/11/30 22:07:25 barrysmith@barry-smiths-computer.local +1 -0
merge with Matt's check

python/PETSc/Options.py
1.11 03/11/30 22:07:24 barrysmith@barry-smiths-computer.local +2 -5
merge with Matt's check


Hg-commit: cbb09768a4b78c93895fd9eee143c24cca536549

show more ...


# 437fc6d7 01-Dec-2003 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1731.1.2
barrysmith@barry-smiths-computer.local|ChangeSet|20031201040430|40397
ChangeSet
1.1731.1.2 03/11/30 22:04:30 barrysmith@barry-smiths-computer.local +47 -0
got rid of seria

bk-changeset-1.1731.1.2
barrysmith@barry-smiths-computer.local|ChangeSet|20031201040430|40397
ChangeSet
1.1731.1.2 03/11/30 22:04:30 barrysmith@barry-smiths-computer.local +47 -0
got rid of serialize, will go into binary viewer and loader

src/vec/interface/vecregall.c
1.13 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +0 -28
got rid of serialize, will go into binary viewer and loader

src/vec/interface/vecreg.c
1.20 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +1 -120
got rid of serialize, will go into binary viewer and loader

src/vec/interface/veccreate.c
1.14 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +0 -75
got rid of serialize, will go into binary viewer and loader

src/vec/interface/mapregall.c
1.5 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +0 -27
got rid of serialize, will go into binary viewer and loader

src/vec/interface/mapreg.c
1.12 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +1 -164
got rid of serialize, will go into binary viewer and loader

src/vec/interface/mapcreate.c
1.7 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +0 -75
got rid of serialize, will go into binary viewer and loader

src/vec/interface/dlregis.c
1.16 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +1 -1
got rid of serialize, will go into binary viewer and loader

src/vec/impls/seq/bvec2.c
1.30 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +0 -36
got rid of serialize, will go into binary viewer and loader

src/vec/impls/mpi/pmap.c
1.8 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +0 -42
got rid of serialize, will go into binary viewer and loader

src/vec/impls/mpi/pbvec.c
1.16 03/11/30 22:04:27 barrysmith@barry-smiths-computer.local +0 -47
got rid of serialize, will go into binary viewer and loader

src/ts/interface/tsregall.c
1.8 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -23
got rid of serialize, will go into binary viewer and loader

src/ts/interface/tsreg.c
1.14 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +2 -177
got rid of serialize, will go into binary viewer and loader

src/ts/interface/tscreate.c
1.7 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -75
got rid of serialize, will go into binary viewer and loader

src/ts/interface/dlregis.c
1.12 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +1 -1
got rid of serialize, will go into binary viewer and loader

src/sys/src/viewer/interface/dlregispetsc.c
1.13 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +1 -1
got rid of serialize, will go into binary viewer and loader

src/sys/src/objects/pname.c
1.10 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -30
got rid of serialize, will go into binary viewer and loader

src/sys/src/objects/inherit.c
1.15 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/sys/src/objects/destroy.c
1.10 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -45
got rid of serialize, will go into binary viewer and loader

src/snes/interface/dlregis.c
1.13 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +1 -1
got rid of serialize, will go into binary viewer and loader

src/mat/matimpl.h
1.32 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +1 -2
got rid of serialize, will go into binary viewer and loader

src/mat/interface/dlregis.c
1.15 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +1 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/shell/shell.c
1.13 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/sbaij/seq/sbaij.c
1.82 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/sbaij/mpi/mpisbaij.c
1.68 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/rowbs/mpi/mpirowbs.c
1.41 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/esi/mesi.c
1.35 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/dense/seq/dense.c
1.41 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/dense/mpi/mpidense.c
1.29 03/11/30 22:04:26 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/bdiag/seq/bdiag.c
1.23 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/bdiag/mpi/mpibdiag.c
1.25 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/baij/seq/baij.c
1.64 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/baij/mpi/mpibaij.c
1.40 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/aij/seq/aij.c
1.119 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/aij/mpi/mpiaij.c
1.100 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/adj/mpi/mpiadj.c
1.22 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/mat/impls/adic/matadic.c
1.20 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

src/ksp/ksp/interface/dlregis.c
1.16 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +2 -2
got rid of serialize, will go into binary viewer and loader

src/dm/ao/interface/dlregis.c
1.16 03/11/30 22:04:25 barrysmith@barry-smiths-computer.local +0 -2
got rid of serialize, will go into binary viewer and loader

src/dm/ao/impls/mapping/aomapping.c
1.14 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -50
got rid of serialize, will go into binary viewer and loader

src/dm/ao/impls/basic/aobasic.c
1.14 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -44
got rid of serialize, will go into binary viewer and loader

include/petscvec.h
1.37 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -77
got rid of serialize, will go into binary viewer and loader

include/petscts.h
1.22 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -16
got rid of serialize, will go into binary viewer and loader

include/petscmat.h
1.94 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -18
got rid of serialize, will go into binary viewer and loader

include/petschead.h
1.20 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -1
got rid of serialize, will go into binary viewer and loader

include/petscao.h
1.12 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -14
got rid of serialize, will go into binary viewer and loader

include/petsc.h
1.45 03/11/30 22:04:24 barrysmith@barry-smiths-computer.local +0 -2
got rid of serialize, will go into binary viewer and loader

python/PETSc/Options.py
1.9.1.1 03/11/30 18:55:15 barrysmith@barry-smiths-computer.local +12 -13
check for "strings" passed to non const char*


Hg-commit: b0d8d1021b4caf0ac1c52e1605774cad1af9251b

show more ...


# 8e9aea5c 28-Nov-2003 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1726
barrysmith@barry-smiths-computer.local|ChangeSet|20031128212907|03824
ChangeSet
1.1726 03/11/28 15:29:07 barrysmith@barry-smiths-computer.local +32 -0
added const to MatType a

bk-changeset-1.1726
barrysmith@barry-smiths-computer.local|ChangeSet|20031128212907|03824
ChangeSet
1.1726 03/11/28 15:29:07 barrysmith@barry-smiths-computer.local +32 -0
added const to MatType arguments when appropriate

src/mat/utils/matio.c
1.17 03/11/28 15:29:05 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/utils/convert.c
1.7 03/11/28 15:29:05 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/matimpl.h
1.31 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +3 -3
added const to MatType arguments when appropriate

src/mat/interface/matrix.c
1.88 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/shell/shellcnv.c
1.7 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/sbaij/seq/spooles/sbaijspooles.c
1.41 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/sbaij/seq/sbaij.c
1.81 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/sbaij/seq/aijsbaij.c
1.6 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/sbaij/mpi/spooles/mpisbaijspooles.c
1.29 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/sbaij/mpi/mpisbaij.c
1.67 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/rowbs/mpi/mpirowbs.c
1.40 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/esi/mesi.c
1.33 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/dense/seq/dense.c
1.40 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/dense/mpi/mpidense.c
1.28 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/bdiag/seq/bdiag.c
1.22 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/bdiag/mpi/mpibdiag.c
1.24 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/baij/seq/baij.c
1.62 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/baij/seq/aijbaij.c
1.7 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/baij/mpi/mpibaij.c
1.39 03/11/28 15:29:04 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/baij/mpi/dscpack/dscpack.c
1.45 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/aij/seq/umfpack/umfpack.c
1.25 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/aij/seq/superlu/superlu.c
1.53 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/aij/seq/spooles/spooles.c
1.80 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/aij/seq/lusol/lusol.c
1.23 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/aij/seq/essl/essl.c
1.23 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/aij/seq/aij.c
1.118 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/aij/mpi/superlu_dist/superlu_dist.c
1.81 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

src/mat/impls/aij/mpi/spooles/mpispooles.c
1.54 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

src/mat/impls/aij/mpi/mumps/mumps.c
1.51 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +3 -3
added const to MatType arguments when appropriate

src/mat/impls/aij/mpi/mpiaij.c
1.99 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +1 -1
added const to MatType arguments when appropriate

include/petscmat.h
1.93 03/11/28 15:29:03 barrysmith@barry-smiths-computer.local +2 -2
added const to MatType arguments when appropriate

bmake/common/rules.fortran.nocpp
1.72 03/11/27 13:34:21 barrysmith@barry-smiths-computer.local +8 -8
ibm f90 does not like .f so try .F here and hope works everywhere


Hg-commit: ae3ecde9c090fe1a4553b4b7e27744f6fa92f433

show more ...


# 9a4540c5 15-Oct-2003 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1553
barrysmith@float56040.mcs.anl-external.org|ChangeSet|20031015203601|29979
ChangeSet
1.1553 03/10/15 15:36:01 barrysmith@float56040.mcs.anl-external.org +20 -0
more MAT_SYMMETR

bk-changeset-1.1553
barrysmith@float56040.mcs.anl-external.org|ChangeSet|20031015203601|29979
ChangeSet
1.1553 03/10/15 15:36:01 barrysmith@float56040.mcs.anl-external.org +20 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

BitKeeper/etc/logging_ok
1.64 03/10/15 15:36:01 barrysmith@float56040.mcs.anl-external.org +1 -0
Logging to logging@openlogging.org accepted

src/sles/examples/tutorials/ex5.c
1.6 03/10/15 15:35:57 barrysmith@float56040.mcs.anl-external.org +1 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/utils/matio.c
1.16 03/10/15 15:35:57 barrysmith@float56040.mcs.anl-external.org +1 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/matimpl.h
1.30 03/10/15 15:35:57 barrysmith@float56040.mcs.anl-external.org +1 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/interface/matrix.c
1.81 03/10/15 15:35:57 barrysmith@float56040.mcs.anl-external.org +19 -3
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/sbaij/seq/sbaij.c
1.80 03/10/15 15:35:57 barrysmith@float56040.mcs.anl-external.org +7 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/sbaij/mpi/mpisbaij.c
1.66 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +7 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/rowbs/mpi/mpirowbs.c
1.37 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +7 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/dense/seq/dense.c
1.38 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/dense/mpi/mpidense.c
1.27 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/bdiag/seq/bdiag.c
1.21 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/bdiag/mpi/mpibdiag.c
1.23 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/baij/seq/baij.c
1.61 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/baij/mpi/mpibaij.c
1.38 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/aij/seq/aij.c
1.117 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/aij/mpi/mpiaij.c
1.98 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +6 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/impls/adj/mpi/mpiadj.c
1.21 03/10/15 15:35:56 barrysmith@float56040.mcs.anl-external.org +9 -1
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

src/mat/examples/tests/ex15.c
1.7 03/10/15 15:35:55 barrysmith@float56040.mcs.anl-external.org +1 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

include/petscmat.h
1.89 03/10/15 15:35:55 barrysmith@float56040.mcs.anl-external.org +2 -1
more MAT_SYMMETRIC crap, making more general but potentially confusinjg

include/finclude/petscmat.h
1.14 03/10/15 15:35:55 barrysmith@float56040.mcs.anl-external.org +2 -0
more MAT_SYMMETRIC crap, making more general but potentially confusinjg


Hg-commit: 7754bd34d04d6dfbdc419a74b3192b12ef7e75e2

show more ...


# 5fbd3699 14-Oct-2003 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1550
barrysmith@float56054.mcs.anl-external.org|ChangeSet|20031014160834|56789
ChangeSet
1.1550 03/10/14 11:08:34 barrysmith@float56054.mcs.anl-external.org +5 -0
changed IsSymmetr

bk-changeset-1.1550
barrysmith@float56054.mcs.anl-external.org|ChangeSet|20031014160834|56789
ChangeSet
1.1550 03/10/14 11:08:34 barrysmith@float56054.mcs.anl-external.org +5 -0
changed IsSymmetric to IsTranspose everywhere

src/mat/impls/aij/seq/aij.c
1.116 03/10/14 11:08:33 barrysmith@float56054.mcs.anl-external.org +5 -5
changed IsSymmetric to IsTranspose everywhere

src/mat/impls/aij/mpi/mpiaij.c
1.97 03/10/14 11:08:33 barrysmith@float56054.mcs.anl-external.org +7 -7
changed IsSymmetric to IsTranspose everywhere

src/dm/da/src/gr2.c
1.17 03/10/14 11:07:46 barrysmith@float56054.mcs.anl-external.org +2 -0
copy vector name that is conve3rted to natural ordering so that
viewer can use the name of the original vector.

src/mat/interface/matrix.c
1.78 03/10/14 10:54:00 barrysmith@float56054.mcs.anl-external.org +7 -7
*** empty log message ***

include/petscmat.h
1.87 03/10/14 10:51:36 barrysmith@float56054.mcs.anl-external.org +1 -1
*** empty log message ***


Hg-commit: 89bc5ca0e6d657888f1c4c654ecdc4ed4624db79

show more ...


# 14d27129 14-Oct-2003 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1546
barrysmith@barry-smiths-computer.local|ChangeSet|20031014011118|59048
ChangeSet
1.1546 03/10/13 20:11:18 barrysmith@barry-smiths-computer.local +0 -0
Merge bk://petsc@petsc.bk

bk-changeset-1.1546
barrysmith@barry-smiths-computer.local|ChangeSet|20031014011118|59048
ChangeSet
1.1546 03/10/13 20:11:18 barrysmith@barry-smiths-computer.local +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into barry-smiths-computer.local:/Users/barrysmith/petsc-dev


Hg-commit: 4d902851cb887a00d702628c3debb546bc13edb5

show more ...


# 45f7d322 14-Oct-2003 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.1544.1.1
barrysmith@barry-smiths-computer.local|ChangeSet|20031014011102|40531
ChangeSet
1.1544.1.1 03/10/13 20:11:02 barrysmith@barry-smiths-computer.local +65 -0
unified PetscVie

bk-changeset-1.1544.1.1
barrysmith@barry-smiths-computer.local|ChangeSet|20031014011102|40531
ChangeSet
1.1544.1.1 03/10/13 20:11:02 barrysmith@barry-smiths-computer.local +65 -0
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/vec/examples/tutorials/ex6.c
1.5 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/vec/examples/tutorials/ex5.c
1.7 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/vec/examples/tests/ex20.F
1.5 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sys/src/viewer/impls/netcdf/vnetcdf.c
1.4 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +23 -37
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sys/src/viewer/impls/matlab/vmatlab.c
1.5 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +20 -51
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sys/src/viewer/impls/hdf4/hdf4v.c
1.4 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +16 -23
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sys/src/viewer/impls/binary/binv.c
1.19 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +35 -35
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sys/src/fileio/sysio.c
1.12 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +7 -7
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/snes/examples/tutorials/ex29.c
1.52 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/snes/examples/tutorials/ex26.c
1.8 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/pc/impls/spai/src/ispai.c
1.15 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/examples/tutorials/ex27.c
1.3 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/examples/tutorials/ex10.c
1.21 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/examples/tests/ex7.c
1.6 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/examples/tests/ex6.c
1.9 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/examples/tests/ex18.c
1.5 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/examples/tests/ex16.F
1.4 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/sles/examples/tests/ex12.F
1.4 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/impls/aij/mpi/mpiaij.c
1.96 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tutorials/ex1.c
1.5 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

docs/website/documentation/changes/217.html
1.3 03/10/13 20:10:59 barrysmith@barry-smiths-computer.local +3 -0
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex86.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex81.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex79f.F
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex78.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex73.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex72.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex67f.F
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex66.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex65.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex64.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex63.F
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +3 -3
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex62.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex58f.F
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex57.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex55.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex53.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex50.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex47.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +3 -3
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex44.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex43.c
1.4 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex42.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex41.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex40.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex34.c
1.5 03/10/13 20:10:58 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex33.c
1.8 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex32.c
1.7 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/mat/examples/tests/ex31.c
1.8 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/fortran/custom/zviewer.c
1.4 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +16 -5
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/fortran/custom/zpetsc.h
1.12 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +6 -0
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/usg/utils/triconvert.c
1.5 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/usg/utils/input.c
1.5 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/da/examples/tutorials/ex1.c
1.7 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/da/examples/tests/ex14.c
1.5 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/da/examples/tests/ex13.c
1.5 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/ao/examples/tutorials/ex1.c
1.7 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +2 -2
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/ao/examples/tests/ex4.c
1.5 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/dm/ao/examples/tests/ex3.c
1.5 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/contrib/oberman/laplacian_q1/appload.c
1.4 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/contrib/oberman/burgers_vertex_based_q1/appload.c
1.4 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/contrib/oberman/burgers_df_based_q1/appload.c
1.5 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +1 -1
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

src/contrib/fun3d/flow.c
1.11 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +3 -3
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

include/petscviewer.h
1.30 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +6 -9
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

include/finclude/petscviewer.h
1.6 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +8 -5
unified PetscViewerXXXType and PetscViewerXXXSetType to
PetscViewerFileType PetscViewerSetFileType

include/finclude/petsc.h
1.7 03/10/13 20:10:57 barrysmith@barry-smiths-computer.local +4 -0
more viewer support in Fortran

docs/website/documentation/changes/217.html
1.2 03/10/13 16:31:12 barrysmith@float56054.mcs.anl-external.org +3 -0
*** empty log message ***


Hg-commit: a732577f642c5e7210546dce51e455f6cae7032f

show more ...


# 77e54ba9 27-Aug-2003 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1513
Kris@p4buschel.|ChangeSet|20030827193045|03036
ChangeSet
1.1513 03/08/27 12:30:45 Kris@p4buschel. +17 -0
Configure fixes.
BlockSolve icc bug fixes.
MatSetOption bug fix.

bk-changeset-1.1513
Kris@p4buschel.|ChangeSet|20030827193045|03036
ChangeSet
1.1513 03/08/27 12:30:45 Kris@p4buschel. +17 -0
Configure fixes.
BlockSolve icc bug fixes.
MatSetOption bug fix.

config/configure_cygwin-ms.py
1.1 03/08/27 12:30:44 Kris@p4buschel. +29 -0

src/mat/interface/matrix.c
1.75 03/08/27 12:30:44 Kris@p4buschel. +3 -1
Pass ALL matrix options to MatSetOption implementations.

src/mat/impls/sbaij/seq/sbaij.c
1.78 03/08/27 12:30:44 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/sbaij/mpi/mpisbaij.c
1.65 03/08/27 12:30:44 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/rowbs/mpi/mpirowbs.h
1.7 03/08/27 12:30:44 Kris@p4buschel. +5 -5
BlockSolve icc bug fix.

src/mat/impls/rowbs/mpi/mpirowbs.c
1.36 03/08/27 12:30:44 Kris@p4buschel. +18 -5
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

Also, BlockSolve icc bug fixes.

src/mat/impls/dense/seq/dense.c
1.37 03/08/27 12:30:44 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/dense/mpi/mpidense.c
1.26 03/08/27 12:30:44 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

config/configure_cygwin-ms.py
1.0 03/08/27 12:30:44 Kris@p4buschel. +0 -0
BitKeeper file F:/Home/Kris/petsc/petsc-2/config/configure_cygwin-ms.py

src/mat/impls/bdiag/seq/bdiag.c
1.20 03/08/27 12:30:43 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/bdiag/mpi/mpibdiag.c
1.22 03/08/27 12:30:43 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/baij/seq/baij.c
1.60 03/08/27 12:30:43 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/baij/mpi/mpibaij.c
1.37 03/08/27 12:30:43 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/aij/seq/aij.c
1.114 03/08/27 12:30:43 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/aij/mpi/mpiaij.c
1.95 03/08/27 12:30:43 Kris@p4buschel. +3 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

src/mat/impls/adj/mpi/mpiadj.c
1.20 03/08/27 12:30:43 Kris@p4buschel. +2 -0
Add cases for MAT_SYMMETRIC and MAT_STRUCTURALLY_SYMMETRIC without option ignored log for impls.
Probably not the best way to deal with this....

python/PETSc/packages/MPI.py
1.30 03/08/27 12:30:43 Kris@p4buschel. +3 -1
On some systems MPI_Comm_create requires -lpmpich

python/PETSc/Configure.py
1.85 03/08/27 12:30:43 Kris@p4buschel. +1 -0
Compaq Fortran compiler cannot deal with /*comments*/


Hg-commit: 0037985fd6f4ff14f638c793b641fbb1f9b9a4d7

show more ...


# 2bf8d470 04-Aug-2003 Matthew Knepley <knepley@mcs.anl.gov>

bk-changeset-1.1464
knepley@khan.mcs.anl.gov|ChangeSet|20030804232517|23767
ChangeSet
1.1464 03/08/04 18:25:17 knepley@khan.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into kh

bk-changeset-1.1464
knepley@khan.mcs.anl.gov|ChangeSet|20030804232517|23767
ChangeSet
1.1464 03/08/04 18:25:17 knepley@khan.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into khan.mcs.anl.gov:/home/knepley/PETSc-dev/petsc


Hg-commit: 51f710da255d45f884b28a86c4cd7b046b9fe0b7

show more ...


# a45adfd6 04-Aug-2003 Matthew Knepley <knepley@mcs.anl.gov>

bk-changeset-1.1452.2.1
knepley@khan.mcs.anl.gov|ChangeSet|20030804232508|24219
ChangeSet
1.1452.2.1 03/08/04 18:25:08 knepley@khan.mcs.anl.gov +6 -0
Better error messages

src/mat/impls/sbaij/

bk-changeset-1.1452.2.1
knepley@khan.mcs.anl.gov|ChangeSet|20030804232508|24219
ChangeSet
1.1452.2.1 03/08/04 18:25:08 knepley@khan.mcs.anl.gov +6 -0
Better error messages

src/mat/impls/sbaij/seq/sbaij.c
1.77 03/08/04 18:25:07 knepley@khan.mcs.anl.gov +5 -5
Better error messages

src/mat/impls/sbaij/mpi/mpisbaij.c
1.63 03/08/04 18:25:07 knepley@khan.mcs.anl.gov +4 -4
Better error messages

src/mat/impls/baij/seq/baij.c
1.59 03/08/04 18:25:07 knepley@khan.mcs.anl.gov +7 -7
Better error messages

src/mat/impls/baij/mpi/mpibaij.c
1.36 03/08/04 18:25:06 knepley@khan.mcs.anl.gov +8 -8
Better error messages

src/mat/impls/aij/seq/aij.c
1.113 03/08/04 18:25:06 knepley@khan.mcs.anl.gov +4 -4
Better error messages

src/mat/impls/aij/mpi/mpiaij.c
1.94 03/08/04 18:25:06 knepley@khan.mcs.anl.gov +4 -4
Better error messages


Hg-commit: 427b1000776f8a9a031dad895e7b7a9d87b26b40

show more ...


# c2635cbc 25-Jul-2003 Dinesh Kaushik <kaushik@mcs.anl.gov>

bk-changeset-1.1418
kaushik@manu.mcs.anl.gov|ChangeSet|20030725014154|57998
ChangeSet
1.1418 03/07/24 20:41:54 kaushik@manu.mcs.anl.gov +0 -0
Merge http://petsc@petsc.bkbits.net/petsc-dev
into

bk-changeset-1.1418
kaushik@manu.mcs.anl.gov|ChangeSet|20030725014154|57998
ChangeSet
1.1418 03/07/24 20:41:54 kaushik@manu.mcs.anl.gov +0 -0
Merge http://petsc@petsc.bkbits.net/petsc-dev
into manu.mcs.anl.gov:/home/kaushik/petsc


Hg-commit: 43f869289fdc7a60dfb86626b0260c9984709d65

show more ...


# 002d173e 23-Jul-2003 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1413.1.9
Kris@p4buschel.|ChangeSet|20030723101132|58529
ChangeSet
1.1413.1.9 03/07/23 03:11:32 Kris@p4buschel. +5 -0
Update MatType manpages.

src/mat/impls/sbaij/mpi/mpisbaij.c

bk-changeset-1.1413.1.9
Kris@p4buschel.|ChangeSet|20030723101132|58529
ChangeSet
1.1413.1.9 03/07/23 03:11:32 Kris@p4buschel. +5 -0
Update MatType manpages.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.62 03/07/23 03:11:31 Kris@p4buschel. +1 -1
Update MatType manpages.

src/mat/impls/dense/mpi/mpidense.c
1.25 03/07/23 03:11:31 Kris@p4buschel. +1 -1
Update MatType manpages.

src/mat/impls/bdiag/mpi/mpibdiag.c
1.21 03/07/23 03:11:31 Kris@p4buschel. +1 -1
Update MatType manpages.

src/mat/impls/baij/mpi/mpibaij.c
1.35 03/07/23 03:11:31 Kris@p4buschel. +1 -1
Update MatType manpages.

src/mat/impls/aij/mpi/mpiaij.c
1.93 03/07/23 03:11:31 Kris@p4buschel. +1 -1
Update MatType manpages.


Hg-commit: 3c156441398eb7567efeb68e24c293590eb6b78a

show more ...


# fafad747 23-Jul-2003 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1413.1.8
Kris@p4buschel.|ChangeSet|20030723100524|58558
ChangeSet
1.1413.1.8 03/07/23 03:05:24 Kris@p4buschel. +29 -0
Update MatType manual pages.

src/snes/mf/snesmfj.c
1.22

bk-changeset-1.1413.1.8
Kris@p4buschel.|ChangeSet|20030723100524|58558
ChangeSet
1.1413.1.8 03/07/23 03:05:24 Kris@p4buschel. +29 -0
Update MatType manual pages.

src/snes/mf/snesmfj.c
1.22 03/07/23 03:05:23 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/shell/shell.c
1.11 03/07/23 03:05:23 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/sbaij/seq/spooles/sbaijspooles.c
1.38 03/07/23 03:05:23 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/sbaij/seq/sbaij.c
1.76 03/07/23 03:05:23 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/sbaij/mpi/spooles/mpisbaijspooles.c
1.26 03/07/23 03:05:23 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.61 03/07/23 03:05:23 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/rowbs/mpi/mpirowbs.c
1.35 03/07/23 03:05:23 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/maij/maij.c
1.10 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/is/is.c
1.9 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/esi/mesi.c
1.31 03/07/23 03:05:22 Kris@p4buschel. +2 -2
Update MatType manual pages.

src/mat/impls/dense/seq/dense.c
1.35 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/dense/mpi/mpidense.c
1.24 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/bdiag/seq/bdiag.c
1.19 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/bdiag/mpi/mpibdiag.c
1.20 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/baij/seq/baij.c
1.58 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/baij/mpi/mpibaij.c
1.34 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/baij/mpi/dscpack/dscpack.c
1.38 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/seq/umfpack/umfpack.c
1.21 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/seq/superlu/superlu.c
1.42 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/seq/spooles/spooles.c
1.76 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/seq/lusol/lusol.c
1.20 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/seq/essl/essl.c
1.19 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/seq/aij.c
1.112 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/mpi/superlu_dist/superlu_dist.c
1.72 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/mpi/spooles/mpispooles.c
1.50 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/aij/mpi/mumps/mumps.c
1.36 03/07/23 03:05:22 Kris@p4buschel. +2 -2
Update MatType manual pages.

src/mat/impls/aij/mpi/mpiaij.c
1.92 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/adj/mpi/mpiadj.c
1.19 03/07/23 03:05:22 Kris@p4buschel. +1 -1
Update MatType manual pages.

src/mat/impls/adic/matadic.c
1.19 03/07/23 03:05:21 Kris@p4buschel. +1 -1
Update MatType manual pages.


Hg-commit: a4488752d2a96ca7cfd014930c9f3aa69035c069

show more ...


# 4d59db7f 23-Jul-2003 Dinesh Kaushik <kaushik@mcs.anl.gov>

bk-changeset-1.1416
kaushik@manu.mcs.anl.gov|ChangeSet|20030723042238|59158
ChangeSet
1.1416 03/07/22 23:22:38 kaushik@manu.mcs.anl.gov +0 -0
Merge http://petsc@petsc.bkbits.net/petsc-dev
into

bk-changeset-1.1416
kaushik@manu.mcs.anl.gov|ChangeSet|20030723042238|59158
ChangeSet
1.1416 03/07/22 23:22:38 kaushik@manu.mcs.anl.gov +0 -0
Merge http://petsc@petsc.bkbits.net/petsc-dev
into manu.mcs.anl.gov:/home/kaushik/petsc


Hg-commit: 542a7ab78602eb980d6bc02f3158fb6a7d2e6ccf

show more ...


# 209238af 22-Jul-2003 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1413.1.5
Kris@p4buschel.|ChangeSet|20030722182757|60502
ChangeSet
1.1413.1.5 03/07/22 11:27:57 Kris@p4buschel. +9 -0
New MatTypes which morph between Seq and MPI forms as appropria

bk-changeset-1.1413.1.5
Kris@p4buschel.|ChangeSet|20030722182757|60502
ChangeSet
1.1413.1.5 03/07/22 11:27:57 Kris@p4buschel. +9 -0
New MatTypes which morph between Seq and MPI forms as appropriate.

include/petscmat.h
1.85 03/07/22 11:27:56 Kris@p4buschel. +7 -1
New morphic MatTypes.

src/mat/interface/matregis.c
1.28 03/07/22 11:24:11 Kris@p4buschel. +11 -0
Register new morphic types.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.60 03/07/22 11:24:11 Kris@p4buschel. +32 -0
New morphic type MATSBAIJ which inherits from either MATSEQSBAIJ or MATMPISBAIJ as is appropriate.

src/mat/impls/dense/mpi/mpidense.c
1.23 03/07/22 11:24:11 Kris@p4buschel. +32 -0
New morphic type MATDENSE which inherits from either MATSEQDENSE or MATMPIDENSE as is appropriate.

src/mat/impls/bdiag/mpi/mpibdiag.c
1.19 03/07/22 11:24:11 Kris@p4buschel. +32 -0
New morphic type MATBDIAG which inherits from either MATSEQBDIAG or MATMPIBDIAG as is appropriate.

src/mat/impls/baij/mpi/mpibaij.c
1.33 03/07/22 11:24:11 Kris@p4buschel. +32 -0
New morphic type MATBAIJ which inherits from either MATSEQBAIJ or MATMPIBAIJ as is appropriate.

src/mat/impls/aij/mpi/superlu_dist/superlu_dist.c
1.71 03/07/22 11:24:11 Kris@p4buschel. +1 -1
Removed redundant CHKERRQ

src/mat/impls/aij/mpi/spooles/mpispooles.c
1.49 03/07/22 11:24:11 Kris@p4buschel. +1 -1
Package is Spooles not MPIAIJSPOOLES

src/mat/impls/aij/mpi/mpiaij.c
1.91 03/07/22 11:24:11 Kris@p4buschel. +32 -0
New morphic type MATAIJ which inherits from either MATSEQAIJ or MATMPIAIJ as is appropriate.


Hg-commit: 2fd522d975f7a2efb07abd9f486a408d609fd1cf

show more ...


# 32af5e0a 14-Jul-2003 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1397
Kris@p4buschel.|ChangeSet|20030714012641|23764
ChangeSet
1.1397 03/07/13 18:26:41 Kris@p4buschel. +1 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into p4buschel.:F:/Home/K

bk-changeset-1.1397
Kris@p4buschel.|ChangeSet|20030714012641|23764
ChangeSet
1.1397 03/07/13 18:26:41 Kris@p4buschel. +1 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into p4buschel.:F:/Home/Kris/petsc/petsc-2

src/mat/impls/aij/mpi/mpiaij.c
1.90 03/07/13 18:26:40 Kris@p4buschel. +0 -0
Auto merged


Hg-commit: f6c34d4915b9bd8f3b61585b33500d340c0c7698

show more ...


# be9f9ed3 14-Jul-2003 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1395.1.1
Kris@p4buschel.|ChangeSet|20030714012629|22937
ChangeSet
1.1395.1.1 03/07/13 18:26:29 Kris@p4buschel. +12 -0
Remove EXTERN_C from MatLoad impls.

src/mat/impls/sbaij/seq

bk-changeset-1.1395.1.1
Kris@p4buschel.|ChangeSet|20030714012629|22937
ChangeSet
1.1395.1.1 03/07/13 18:26:29 Kris@p4buschel. +12 -0
Remove EXTERN_C from MatLoad impls.

src/mat/impls/sbaij/seq/sbaij.c
1.75 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.59 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/rowbs/mpi/mpirowbs.c
1.34 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/esi/mesi.c
1.30 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/dense/seq/dense.c
1.34 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/dense/mpi/mpidense.c
1.22 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/bdiag/seq/bdiag.c
1.18 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/bdiag/mpi/mpibdiag.c
1.18 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/baij/seq/baij.c
1.57 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/baij/mpi/mpibaij.c
1.32 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/aij/seq/aij.c
1.111 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.

src/mat/impls/aij/mpi/mpiaij.c
1.88.1.1 03/07/13 18:26:27 Kris@p4buschel. +0 -2
Remove EXTERN_C from MatLoad impls.


Hg-commit: 78793dc36bc4b4ac50a8904cf52a0273c71472c6

show more ...


# 181753b3 14-Jul-2003 victorle <victorle@tibook500ve.cs.utk.edu>

bk-changeset-1.1396
victorle@tibook500ve.cs.utk.edu|ChangeSet|20030714002856|25308
ChangeSet
1.1396 03/07/13 20:28:56 victorle@tibook500ve.cs.utk.edu +1 -0
Merge http://petsc@petsc.bkbits.net/pet

bk-changeset-1.1396
victorle@tibook500ve.cs.utk.edu|ChangeSet|20030714002856|25308
ChangeSet
1.1396 03/07/13 20:28:56 victorle@tibook500ve.cs.utk.edu +1 -0
Merge http://petsc@petsc.bkbits.net/petsc-dev
into tibook500ve.cs.utk.edu:/Users/victorle/Software/petsc/petsc-dev

src/mat/impls/aij/mpi/mpiaij.c
1.89 03/07/13 20:28:51 victorle@tibook500ve.cs.utk.edu +0 -0
Auto merged


Hg-commit: 23d8f0adb38aa36b5a52b3541f52ef55a5d6591b

show more ...


# 4f423910 14-Jul-2003 victorle <victorle@tibook500ve.cs.utk.edu>

bk-changeset-1.1383.1.1
victorle@tibook500ve.cs.utk.edu|ChangeSet|20030714002821|54032
ChangeSet
1.1383.1.1 03/07/13 20:28:21 victorle@tibook500ve.cs.utk.edu +2 -0
cosmetics

src/vec/utils/vsca

bk-changeset-1.1383.1.1
victorle@tibook500ve.cs.utk.edu|ChangeSet|20030714002821|54032
ChangeSet
1.1383.1.1 03/07/13 20:28:21 victorle@tibook500ve.cs.utk.edu +2 -0
cosmetics

src/vec/utils/vscat.c
1.8 03/07/13 20:28:19 victorle@tibook500ve.cs.utk.edu +4 -4
more insightful error messages

src/mat/impls/aij/mpi/mpiaij.c
1.86.1.1 03/07/13 20:28:19 victorle@tibook500ve.cs.utk.edu +5 -1
shortcut for symmetry test


Hg-commit: 879aaf3ac3f3f7ccc7db8df5c8ad44c52161e4f1

show more ...


# 97304618 13-Jul-2003 Kris Buschelman <buschelm@mcs.anl.gov>

bk-changeset-1.1394
Kris@p4buschel.|ChangeSet|20030713215719|23003
ChangeSet
1.1394 03/07/13 14:57:19 Kris@p4buschel. +32 -0
MatLoad is now implemented within matrix class and accessed via creati

bk-changeset-1.1394
Kris@p4buschel.|ChangeSet|20030713215719|23003
ChangeSet
1.1394 03/07/13 14:57:19 Kris@p4buschel. +32 -0
MatLoad is now implemented within matrix class and accessed via creation of a temporary dummy factory class.

src/mat/utils/matioall.c
1.25 03/07/13 14:57:17 Kris@p4buschel. +0 -74
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/utils/matio.c
1.13 03/07/13 14:57:17 Kris@p4buschel. +10 -6
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/matimpl.h
1.28 03/07/13 14:57:17 Kris@p4buschel. +4 -3
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/shell/shell.c
1.10 03/07/13 14:57:17 Kris@p4buschel. +24 -9
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/sbaij/seq/sbaij.h
1.24 03/07/13 14:57:17 Kris@p4buschel. +35 -34
Use EXTERN instead of extern

src/mat/impls/sbaij/seq/sbaij.c
1.74 03/07/13 14:57:17 Kris@p4buschel. +19 -18
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/sbaij/mpi/mpisbaij.h
1.10 03/07/13 14:57:17 Kris@p4buschel. +1 -0
Added prototype.

src/mat/impls/sbaij/mpi/mpisbaij.c
1.58 03/07/13 14:57:17 Kris@p4buschel. +87 -71
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/rowbs/mpi/mpirowbs.h
1.6 03/07/13 14:57:17 Kris@p4buschel. +14 -1
Moved various prototypes from .c into .h

src/mat/impls/rowbs/mpi/mpirowbs.c
1.33 03/07/13 14:57:17 Kris@p4buschel. +36 -30
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/esi/mesi.c
1.29 03/07/13 14:57:17 Kris@p4buschel. +30 -5
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/dense/seq/dense.c
1.33 03/07/13 14:57:17 Kris@p4buschel. +35 -13
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/dense/mpi/mpidense.h
1.4 03/07/13 14:57:17 Kris@p4buschel. +4 -0
Moved various prototypes from .c into .h

src/mat/impls/dense/mpi/mpidense.c
1.21 03/07/13 14:57:17 Kris@p4buschel. +36 -16
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/bdiag/seq/bdiag3.c
1.11 03/07/13 14:57:17 Kris@p4buschel. +0 -24
Moved various prototypes from .c into .h

src/mat/impls/bdiag/seq/bdiag.h
1.4 03/07/13 14:57:17 Kris@p4buschel. +36 -0
Moved various prototypes from .c into .h

src/mat/impls/bdiag/seq/bdiag.c
1.17 03/07/13 14:57:17 Kris@p4buschel. +36 -53
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/bdiag/mpi/mpibdiag.h
1.4 03/07/13 14:57:17 Kris@p4buschel. +4 -0
Moved various prototypes from .c into .h

src/mat/impls/bdiag/mpi/mpibdiag.c
1.17 03/07/13 14:57:16 Kris@p4buschel. +36 -15
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/baij/seq/baij.h
1.13 03/07/13 14:57:16 Kris@p4buschel. +1 -0
Moved various prototypes from .c into .h

src/mat/impls/baij/seq/baij.c
1.56 03/07/13 14:57:16 Kris@p4buschel. +29 -14
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/baij/mpi/mpibaij.h
1.7 03/07/13 14:57:16 Kris@p4buschel. +1 -0
Moved various prototypes from .c into .h

src/mat/impls/baij/mpi/mpibaij.c
1.31 03/07/13 14:57:16 Kris@p4buschel. +87 -71
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/baij/mpi/dscpack/dscpack.c
1.37 03/07/13 14:57:16 Kris@p4buschel. +0 -20
MatLoad is now properly inherited from the appropriate class during MatCreate_DSCPACK.

src/mat/impls/aij/seq/aij.h
1.21 03/07/13 14:57:16 Kris@p4buschel. +21 -0
Moved various prototypes from .c into .h

src/mat/impls/aij/seq/aij.c
1.110 03/07/13 14:57:16 Kris@p4buschel. +26 -40
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/aij/mpi/superlu_dist/superlu_dist.c
1.69 03/07/13 14:57:16 Kris@p4buschel. +0 -19
MatLoad is now properly inherited from the appropriate class during MatCreate_SuperLU_DIST.

src/mat/impls/aij/mpi/mumps/mumps.c
1.35 03/07/13 14:57:16 Kris@p4buschel. +0 -40
MatLoad is now properly inherited from the appropriate class during MatCreate_AIJMUMPS or MatCreate_SBAIJMUMPS.

src/mat/impls/aij/mpi/mpiaij.h
1.6 03/07/13 14:57:16 Kris@p4buschel. +21 -0
Moved various prototypes from .c into .h

src/mat/impls/aij/mpi/mpiaij.c
1.88 03/07/13 14:57:16 Kris@p4buschel. +26 -38
MatLoad is now implemented within matrix class and accessed via creation of dummy factory class.

src/mat/impls/adj/mpi/mpiadj.c
1.17 03/07/13 14:57:16 Kris@p4buschel. +31 -8
Add comments to MatOps instance so it is easier to tell where ops belong.

src/mat/impls/adic/matadic.c
1.18 03/07/13 14:57:16 Kris@p4buschel. +19 -7
Add comments to MatOps instance so it is easier to tell where ops belong.


Hg-commit: c9cdd08be873eabc232c41f0a34627a15e706758

show more ...


1...<<919293949596979899100>>...111