| #
ca01db9b
|
| 20-Jun-2003 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.1299.1.1 bsmith@harley.mcs.anl.gov|ChangeSet|20030620162139|64822 ChangeSet 1.1299.1.1 03/06/20 11:21:39 bsmith@harley.mcs.anl.gov +14 -0 added const and changed * to [] for input
bk-changeset-1.1299.1.1 bsmith@harley.mcs.anl.gov|ChangeSet|20030620162139|64822 ChangeSet 1.1299.1.1 03/06/20 11:21:39 bsmith@harley.mcs.anl.gov +14 -0 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/vec/is/utils/isltog.c 1.11 03/06/20 11:21:38 bsmith@harley.mcs.anl.gov +2 -2 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/vec/impls/mpi/pdvec.c 1.6 03/06/20 11:21:38 bsmith@harley.mcs.anl.gov +2 -2 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/sbaij/seq/sbaij.c 1.63 03/06/20 11:21:38 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/sbaij/mpi/mpisbaij.c 1.52 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/dense/seq/dense.c 1.25 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +2 -2 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/bdiag/seq/bdiag.c 1.13 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/bdiag/mpi/mpibdiag.c 1.13 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/baij/seq/baij.c 1.49 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/baij/mpi/mpibaij.c 1.25 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/aij/seq/aij.c 1.97 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
src/mat/impls/aij/mpi/mpiaij.c 1.76.1.1 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +3 -3 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
include/petscmat.h 1.68 03/06/20 11:21:37 bsmith@harley.mcs.anl.gov +31 -31 added const and changed * to [] for input arrays for various matrix constructors, per Bill's obsession :-)
include/petscis.h 1.9 03/06/20 09:04:50 bsmith@harley.mcs.anl.gov +4 -4 changed args to [] from * per Bill's instructions
src/vec/is/utils/iscoloring.c 1.11 03/06/20 09:04:44 bsmith@harley.mcs.anl.gov +3 -3 changed args to [] from * per Bill's instructions
Hg-commit: bddfebace3026471a98fed3099248602b4cd13cf
show more ...
|
| #
590ac198
|
| 19-Jun-2003 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.1294 bsmith@harley.mcs.anl.gov|ChangeSet|20030619183433|30531 ChangeSet 1.1294 03/06/19 13:34:33 bsmith@harley.mcs.anl.gov +11 -0 fixed printing of max col or row for matrix entry
bk-changeset-1.1294 bsmith@harley.mcs.anl.gov|ChangeSet|20030619183433|30531 ChangeSet 1.1294 03/06/19 13:34:33 bsmith@harley.mcs.anl.gov +11 -0 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844 also added doc to -error_output_stderr
src/vec/is/utils/isltog.c 1.10 03/06/19 13:34:32 bsmith@harley.mcs.anl.gov +1 -1 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/sbaij/seq/sbaij.c 1.62 03/06/19 13:34:32 bsmith@harley.mcs.anl.gov +8 -8 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/sbaij/mpi/mpisbaij.c 1.51 03/06/19 13:34:32 bsmith@harley.mcs.anl.gov +8 -8 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/rowbs/mpi/mpirowbs.c 1.21 03/06/19 13:34:32 bsmith@harley.mcs.anl.gov +2 -2 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/dense/seq/dense.c 1.24 03/06/19 13:34:32 bsmith@harley.mcs.anl.gov +8 -8 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/bdiag/seq/bdiag2.c 1.10 03/06/19 13:34:32 bsmith@harley.mcs.anl.gov +4 -4 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/baij/seq/baij.c 1.48 03/06/19 13:34:31 bsmith@harley.mcs.anl.gov +4 -4 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/baij/mpi/mpibaij.c 1.24 03/06/19 13:34:31 bsmith@harley.mcs.anl.gov +11 -11 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/aij/seq/aij.c 1.96 03/06/19 13:34:31 bsmith@harley.mcs.anl.gov +4 -4 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
src/mat/impls/aij/mpi/mpiaij.c 1.76 03/06/19 13:34:31 bsmith@harley.mcs.anl.gov +6 -6 fixed printing of max col or row for matrix entry insertion per From: William Gropp <gropp@mcs.anl.gov> To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov Subject: [PETSC #7203] Bug in error message I recently got the following message: [0]PETSC ERROR: MatSetValues_SeqAIJ() line 148 in src/mat/impls/aij/seq/aij.c [0]PETSC ERROR: Argument out of range! [0]PETSC ERROR: Column too large: col 844 max 844! The error is correctly detected, but the last line should be ... Column too large: col 844 max 843 Alternately, the message could be ... Column too large: col 844 must be less than 844
include/petsc.h 1.33 03/06/19 13:33:04 bsmith@harley.mcs.anl.gov +5 -0 added options database key to send error messages to stderr instead of stdout per Date: Mon, 16 Jun 2003 07:50:52 -0500 From: William Gropp <gropp@mcs.anl.gov> To: petsc-developers@mcs.anl.gov Subject: stderr versus stdout Is there a reason that error messages go to stdout instead of stderr? Is this something that we should revisit for PETSc 3?
src/mat/impls/rowbs/mpi/mpirowbs.c 1.20 03/06/19 13:08:02 bsmith@harley.mcs.anl.gov +4 -4 :
Hg-commit: 679bb2e5aaabf74fa633901cce74fb911a11035f
show more ...
|
| #
a43ee2ec
|
| 16-Jun-2003 |
Kris Buschelman <buschelm@mcs.anl.gov> |
bk-changeset-1.1281 Kris@p4buschel.|ChangeSet|20030616213729|46346 ChangeSet 1.1281 03/06/16 14:37:29 Kris@p4buschel. +9 -0 Unused variables.
src/mat/utils/zerodiag.c 1.6 03/06/16 14:37:28
bk-changeset-1.1281 Kris@p4buschel.|ChangeSet|20030616213729|46346 ChangeSet 1.1281 03/06/16 14:37:29 Kris@p4buschel. +9 -0 Unused variables.
src/mat/utils/zerodiag.c 1.6 03/06/16 14:37:28 Kris@p4buschel. +0 -1 Unused variables.
src/mat/interface/matrix.c 1.66 03/06/16 14:37:28 Kris@p4buschel. +0 -1 Unused variables.
src/mat/impls/sbaij/mpi/mpisbaij.c 1.50 03/06/16 14:37:28 Kris@p4buschel. +0 -1 Unused variables.
src/mat/impls/dense/seq/dense.c 1.23 03/06/16 14:37:28 Kris@p4buschel. +1 -2 Unused variables.
src/mat/impls/dense/mpi/mpidense.c 1.15 03/06/16 14:37:28 Kris@p4buschel. +0 -1 Unused variables.
src/mat/impls/baij/mpi/mpibaij.c 1.23 03/06/16 14:37:28 Kris@p4buschel. +0 -3 Unused variables.
src/mat/impls/aij/seq/aijnode.c 1.16 03/06/16 14:37:27 Kris@p4buschel. +0 -1 Unused variables.
src/mat/impls/aij/seq/aij.c 1.95 03/06/16 14:37:27 Kris@p4buschel. +1 -1 Unused variables.
src/mat/impls/aij/mpi/mpiaij.c 1.75 03/06/16 14:37:27 Kris@p4buschel. +0 -1 Unused variables.
Hg-commit: 7ffbc17b674a7825fbf4413564a36b11f5da7d83
show more ...
|
| #
33f4a19f
|
| 13-Jun-2003 |
Kris Buschelman <buschelm@mcs.anl.gov> |
bk-changeset-1.1273 Kris@p4buschel.|ChangeSet|20030613174245|49205 ChangeSet 1.1273 03/06/13 10:42:45 Kris@p4buschel. +3 -0 Compare copy pointers instead of types to determine compatibility for f
bk-changeset-1.1273 Kris@p4buschel.|ChangeSet|20030613174245|49205 ChangeSet 1.1273 03/06/13 10:42:45 Kris@p4buschel. +3 -0 Compare copy pointers instead of types to determine compatibility for fast MatCopy.
src/mat/impls/dense/seq/dense.c 1.22 03/06/13 10:42:44 Kris@p4buschel. +2 -3 Compare copy pointers instead of types to determine compatibility for fast MatCopy.
src/mat/impls/aij/seq/aij.c 1.91 03/06/13 10:42:44 Kris@p4buschel. +2 -3 Compare copy pointers instead of types to determine compatibility for fast MatCopy.
src/mat/impls/aij/mpi/mpiaij.c 1.73 03/06/13 10:42:44 Kris@p4buschel. +2 -3 Compare copy pointers instead of types to determine compatibility for fast MatCopy.
Hg-commit: 813410910a7fb9ec6b92a42bbda93f40027cc0aa
show more ...
|
| #
85419fb7
|
| 13-Jun-2003 |
Kris Buschelman <buschelm@mcs.anl.gov> |
bk-changeset-1.1272 Kris@p4buschel.|ChangeSet|20030613172158|49195 ChangeSet 1.1272 03/06/13 10:21:58 Kris@p4buschel. +9 -0 Check IsEqual function pointer to determine compatibility of matrices,
bk-changeset-1.1272 Kris@p4buschel.|ChangeSet|20030613172158|49195 ChangeSet 1.1272 03/06/13 10:21:58 Kris@p4buschel. +9 -0 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/baij/seq/baij2.c 1.8 03/06/13 10:21:57 Kris@p4buschel. +0 -4 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/baij/mpi/mpibaij.c 1.20 03/06/13 10:21:57 Kris@p4buschel. +0 -2 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/aij/seq/aij.c 1.90 03/06/13 10:21:57 Kris@p4buschel. +0 -4 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/aij/mpi/mpiaij.c 1.72 03/06/13 10:21:57 Kris@p4buschel. +0 -2 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/adj/mpi/mpiadj.c 1.14 03/06/13 10:21:57 Kris@p4buschel. +0 -3 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/interface/matrix.c 1.64 03/06/13 10:14:29 Kris@p4buschel. +2 -0 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/sbaij/seq/sbaij2.c 1.9 03/06/13 10:14:29 Kris@p4buschel. +0 -3 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/sbaij/mpi/mpisbaij.c 1.49 03/06/13 10:14:28 Kris@p4buschel. +0 -2 Check IsEqual function pointer to determine compatibility of matrices, not type.
src/mat/impls/dense/seq/dense.c 1.21 03/06/13 10:14:28 Kris@p4buschel. +0 -3 Check IsEqual function pointer to determine compatibility of matrices, not type.
Hg-commit: 408cbd348682f91c1839aabb70cc6743aaad5b4a
show more ...
|
| #
a23d5ece
|
| 13-Jun-2003 |
Kris Buschelman <buschelm@mcs.anl.gov> |
bk-changeset-1.1268 Kris@p4buschel.|ChangeSet|20030613085334|52355 ChangeSet 1.1268 03/06/13 01:53:34 Kris@p4buschel. +12 -0 Compose preallocation routines.
src/mat/impls/aij/seq/aij.c 1.8
bk-changeset-1.1268 Kris@p4buschel.|ChangeSet|20030613085334|52355 ChangeSet 1.1268 03/06/13 01:53:34 Kris@p4buschel. +12 -0 Compose preallocation routines.
src/mat/impls/aij/seq/aij.c 1.87 03/06/13 01:53:33 Kris@p4buschel. +19 -2 Compose preallocation routines.
src/mat/impls/baij/seq/baij.c 1.47 03/06/13 01:49:50 Kris@p4buschel. +133 -117 Compose preallocation routines.
src/mat/impls/bdiag/seq/bdiag.c 1.12 03/06/13 01:43:25 Kris@p4buschel. +20 -2 Compose preallocation routines.
src/mat/impls/dense/seq/dense.c 1.20 03/06/13 01:38:01 Kris@p4buschel. +19 -2 Compose preallocation routines.
src/mat/impls/aij/mpi/mpiaij.c 1.69 03/06/13 01:33:04 Kris@p4buschel. +43 -26 Compose preallocation routines.
src/mat/impls/baij/mpi/mpibaij.c 1.19 03/06/13 01:26:43 Kris@p4buschel. +83 -67 Compose preallocation routines.
src/mat/impls/bdiag/mpi/mpibdiag.c 1.12 03/06/13 01:20:37 Kris@p4buschel. +107 -90 Compose preallocation routines.
src/mat/impls/dense/mpi/mpidense.c 1.14 03/06/13 01:07:56 Kris@p4buschel. +29 -12 Compose preallocation routines.
src/mat/impls/rowbs/mpi/mpirowbs.c 1.18 03/06/13 01:04:17 Kris@p4buschel. +22 -8 Compose preallocation routines.
src/mat/impls/adj/mpi/mpiadj.c 1.13 03/06/13 01:04:17 Kris@p4buschel. +2 -2
src/mat/impls/sbaij/seq/sbaij.c 1.61 03/06/13 00:54:10 Kris@p4buschel. +111 -94 Compose preallocation routines.
src/mat/impls/sbaij/mpi/mpisbaij.c 1.48 03/06/13 00:54:10 Kris@p4buschel. +85 -70 Compose preallocation routines.
src/mat/impls/adj/mpi/mpiadj.c 1.12 03/06/13 00:54:10 Kris@p4buschel. +64 -31 Compose preallocation routines.
Hg-commit: a1c0174f5d32b73ab5d703eaf5e812e5f79378c1
show more ...
|
| #
0dbb7854
|
| 11-Apr-2003 |
victorle <victorle@tibook500ve.cs.utk.edu> |
bk-changeset-1.1146 victorle@tibook500ve.cs.utk.edu|ChangeSet|20030411181917|63432 ChangeSet 1.1146 03/04/11 14:19:17 victorle@tibook500ve.cs.utk.edu +1 -0 Fixed warning in dense.c
src/mat/imp
bk-changeset-1.1146 victorle@tibook500ve.cs.utk.edu|ChangeSet|20030411181917|63432 ChangeSet 1.1146 03/04/11 14:19:17 victorle@tibook500ve.cs.utk.edu +1 -0 Fixed warning in dense.c
src/mat/impls/dense/seq/dense.c 1.19 03/04/11 14:19:14 victorle@tibook500ve.cs.utk.edu +2 -2 Fixed warning message
Hg-commit: cd6e899c40d8ffe6a1d9e4c139fccb33f3a90bde
show more ...
|
| #
021fcfba
|
| 10-Apr-2003 |
Hong Zhang <hzhang@mcs.anl.gov> |
bk-changeset-1.1139 hzhang@compbio.mcs.anl.gov|ChangeSet|20030410222051|64507 ChangeSet 1.1139 03/04/10 17:20:51 hzhang@compbio.mcs.anl.gov +0 -0 Merge bk://petsc@petsc.bkbits.net/petsc-dev int
bk-changeset-1.1139 hzhang@compbio.mcs.anl.gov|ChangeSet|20030410222051|64507 ChangeSet 1.1139 03/04/10 17:20:51 hzhang@compbio.mcs.anl.gov +0 -0 Merge bk://petsc@petsc.bkbits.net/petsc-dev into compbio.mcs.anl.gov:/sandbox/hzhang/petsc-test
Hg-commit: b8c1ac9f004b36f3603a1bc6c891eabbf0b58f18
show more ...
|
| #
a5ce6ee0
|
| 10-Apr-2003 |
victorle <victorle@tibook500ve.cs.utk.edu> |
bk-changeset-1.1135.1.13 victorle@tibook500ve.cs.utk.edu|ChangeSet|20030410201958|64424 ChangeSet 1.1135.1.13 03/04/10 16:19:58 victorle@tibook500ve.cs.utk.edu +1 -0 Use of LDA now implemented ev
bk-changeset-1.1135.1.13 victorle@tibook500ve.cs.utk.edu|ChangeSet|20030410201958|64424 ChangeSet 1.1135.1.13 03/04/10 16:19:58 victorle@tibook500ve.cs.utk.edu +1 -0 Use of LDA now implemented everywhere in dense.c, except viewing through a socket.
src/mat/impls/dense/seq/dense.c 1.18 03/04/10 16:19:55 victorle@tibook500ve.cs.utk.edu +64 -33 Done remaining cases of LDA handling.
Hg-commit: d59a0cf0e2bf032b43cdbd6fbb0332cfd3ad706d
show more ...
|
| #
1b807ce4
|
| 10-Apr-2003 |
victorle <victorle@tibook500ve.cs.utk.edu> |
bk-changeset-1.1135.1.12 victorle@tibook500ve.cs.utk.edu|ChangeSet|20030410153915|64424 ChangeSet 1.1135.1.12 03/04/10 11:39:15 victorle@tibook500ve.cs.utk.edu +6 -0 Added lda component to SeqDen
bk-changeset-1.1135.1.12 victorle@tibook500ve.cs.utk.edu|ChangeSet|20030410153915|64424 ChangeSet 1.1135.1.12 03/04/10 11:39:15 victorle@tibook500ve.cs.utk.edu +6 -0 Added lda component to SeqDense matrices and added proper handling in MatMult and LU solve routines; a number of routines still don't have proper lda handling; they abort with an error. I'll get to them later.
src/mat/impls/dense/seq/dense.h 1.4 03/04/10 11:39:11 victorle@tibook500ve.cs.utk.edu +1 -0 Added lda component
src/mat/impls/dense/seq/dense.c 1.17 03/04/10 11:39:11 victorle@tibook500ve.cs.utk.edu +95 -46 Added MatSeqDenseSetLDA routine, and LDA handling in Mult and Solve routines; still need to do a bunch.
src/mat/examples/tutorials/makefile 1.4 03/04/10 11:39:11 victorle@tibook500ve.cs.utk.edu +8 -4 Added examples 2 and 3 for LDA handling of SeqDense matrices
src/mat/examples/tutorials/ex3.c 1.2 03/04/10 11:39:11 victorle@tibook500ve.cs.utk.edu +28 -90 Test code for LU of SeqDense matrix with LDA specified
src/mat/examples/tutorials/ex2.c 1.2 03/04/10 11:39:11 victorle@tibook500ve.cs.utk.edu +6 -0 Test code for MatMult with LDA specified
include/petscmat.h 1.57 03/04/10 11:39:11 victorle@tibook500ve.cs.utk.edu +2 -0 Added MatSeqDenseSetLDA prototype
src/mat/examples/tutorials/ex3.c 1.1 03/04/10 10:32:41 victorle@tibook500ve.cs.utk.edu +144 -0
src/mat/examples/tutorials/ex3.c 1.0 03/04/10 10:32:41 victorle@tibook500ve.cs.utk.edu +0 -0 BitKeeper file /Users/victorle/Software/petsc/petsc-dev/src/mat/examples/tutorials/ex3.c
src/mat/examples/tutorials/ex2.c 1.1 03/04/10 10:30:47 victorle@tibook500ve.cs.utk.edu +144 -0
src/mat/examples/tutorials/ex2.c 1.0 03/04/10 10:30:47 victorle@tibook500ve.cs.utk.edu +0 -0 BitKeeper file /Users/victorle/Software/petsc/petsc-dev/src/mat/examples/tutorials/ex2.c
Hg-commit: 42ce3c0194d72e7be9db219ef662851eaad621b9
show more ...
|
| #
b380c88c
|
| 06-Mar-2003 |
Hong Zhang <hzhang@mcs.anl.gov> |
bk-changeset-1.1065 hzhang@compbio.mcs.anl.gov|ChangeSet|20030306180853|02247 ChangeSet 1.1065 03/03/06 12:08:53 hzhang@compbio.mcs.anl.gov +33 -0 replace MatLUInfo and MatILUInfo by MatFactorInf
bk-changeset-1.1065 hzhang@compbio.mcs.anl.gov|ChangeSet|20030306180853|02247 ChangeSet 1.1065 03/03/06 12:08:53 hzhang@compbio.mcs.anl.gov +33 -0 replace MatLUInfo and MatILUInfo by MatFactorInfo
src/mat/impls/baij/seq/baijfact3.c 1.7 03/03/06 12:07:41 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/baij/seq/baijfact2.c 1.28 03/03/06 12:07:29 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/aij.h 1.14 03/03/06 12:07:10 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/rowbs/mpi/mpirowbs.c 1.11 03/03/06 12:05:02 hzhang@compbio.mcs.anl.gov +2 -2 *** empty log message ***
src/mat/impls/aij/mpi/superlu_dist.c 1.34 03/03/06 12:04:32 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/superlu.c 1.21 03/03/06 12:04:01 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/umfpack.c 1.7 03/03/06 12:03:37 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/aijfact.c 1.21 03/03/06 12:03:01 hzhang@compbio.mcs.anl.gov +4 -4 *** empty log message ***
src/mat/impls/aij/seq/aijmatlab.c 1.13 03/03/06 12:02:34 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/matimpl.h 1.22 03/03/06 12:02:09 hzhang@compbio.mcs.anl.gov +5 -5 *** empty log message ***
src/mat/impls/dense/seq/dense.c 1.16 03/03/06 12:01:47 hzhang@compbio.mcs.anl.gov +2 -2 *** empty log message ***
src/sles/pc/impls/lu/lu.c 1.14 03/03/06 12:01:22 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/aij.c 1.66 03/03/06 12:00:50 hzhang@compbio.mcs.anl.gov +4 -4 *** empty log message ***
src/mat/impls/aij/seq/aijspooles.c 1.17 03/03/06 11:59:43 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/bdiag/seq/bdiag.c 1.11 03/03/06 11:59:04 hzhang@compbio.mcs.anl.gov +3 -3 *** empty log message ***
src/mat/impls/aij/mpi/mpiaij.c 1.54 03/03/06 11:55:54 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/examples/tests/ex7.c 1.5 03/03/06 11:55:14 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/bdiag/seq/bdfact.c 1.5 03/03/06 11:51:20 hzhang@compbio.mcs.anl.gov +2 -2 *** empty log message ***
src/mat/impls/baij/seq/baij.c 1.41 03/03/06 11:51:11 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/interface/matrix.c 1.55 03/03/06 11:50:58 hzhang@compbio.mcs.anl.gov +18 -14 *** empty log message ***
include/petscmat.h 1.51 03/03/06 11:45:47 hzhang@compbio.mcs.anl.gov +2 -51 *** empty log message ***
src/mat/examples/tests/ex30.c 1.7 03/03/06 11:42:37 hzhang@compbio.mcs.anl.gov +0 -1 *** empty log message ***
src/sles/pc/impls/ilu/ilu.c 1.13 03/03/06 11:27:25 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/examples/tests/ex30.c 1.6 03/03/06 10:58:26 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/sles/pc/impls/ilu/ilu.h 1.5 03/03/06 10:57:55 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/baij/seq/baij.h 1.10 03/03/06 10:55:16 hzhang@compbio.mcs.anl.gov +3 -3 *** empty log message ***
src/mat/examples/tests/ex48.c 1.6 03/03/06 10:53:41 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/examples/tests/ex15.c 1.6 03/03/06 10:53:21 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/examples/tests/ex1.c 1.9 03/03/06 10:52:12 hzhang@compbio.mcs.anl.gov +1 -2 *** empty log message ***
src/mat/impls/baij/seq/baijfact.c 1.4 03/03/06 10:19:23 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/mpi/mpiaijspooles.c 1.18 03/03/06 10:18:46 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/mpi/pxxt.c 1.10 03/03/06 10:17:46 hzhang@compbio.mcs.anl.gov +3 -3 *** empty log message ***
src/mat/impls/aij/seq/aijspooles.c 1.16 03/03/06 10:16:11 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/lusol.c 1.8 03/03/06 10:15:27 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/aijmatlab.c 1.12 03/03/06 10:14:54 hzhang@compbio.mcs.anl.gov +2 -2 *** empty log message ***
src/mat/impls/aij/seq/essl.c 1.6 03/03/06 10:14:12 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
include/petscmat.h 1.50 03/03/06 10:10:32 hzhang@compbio.mcs.anl.gov +4 -4 *** empty log message ***
Hg-commit: 111a65df4d8e7ebcaeebeb55c4686a28aeb48d02
show more ...
|
| #
15e8a5b3
|
| 05-Mar-2003 |
Hong Zhang <hzhang@mcs.anl.gov> |
bk-changeset-1.1058 hzhang@compbio.mcs.anl.gov|ChangeSet|20030305050522|61372 ChangeSet 1.1058 03/03/04 23:05:22 hzhang@compbio.mcs.anl.gov +19 -0 replace MatCholeskyInfo and MatICCInfo by MatF
bk-changeset-1.1058 hzhang@compbio.mcs.anl.gov|ChangeSet|20030305050522|61372 ChangeSet 1.1058 03/03/04 23:05:22 hzhang@compbio.mcs.anl.gov +19 -0 replace MatCholeskyInfo and MatICCInfo by MatFactorInfo, and its updates
src/sles/pc/impls/icc/icc.h 1.5 03/03/04 23:03:24 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/interface/matrix.c 1.54 03/03/04 23:02:45 hzhang@compbio.mcs.anl.gov +6 -6 *** empty log message ***
src/mat/impls/sbaij/seq/sbaijfact2.c 1.23 03/03/04 23:02:23 hzhang@compbio.mcs.anl.gov +2 -2 *** empty log message ***
src/mat/impls/sbaij/seq/sbaij.h 1.19 03/03/04 23:02:05 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/baij/mpi/dscpack.c 1.17 03/03/04 23:01:41 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/aijfact.c 1.19 03/03/04 23:00:54 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/aij/seq/aij.h 1.13 03/03/04 23:00:25 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/examples/tests/ex76.c 1.6 03/03/04 22:58:30 hzhang@compbio.mcs.anl.gov +6 -6 *** empty log message ***
src/mat/examples/tests/ex74.c 1.8 03/03/04 22:57:05 hzhang@compbio.mcs.anl.gov +6 -6 *** empty log message ***
src/mat/examples/tests/ex1.c 1.8 03/03/04 22:55:15 hzhang@compbio.mcs.anl.gov +4 -2 *** empty log message ***
src/mat/impls/sbaij/seq/sbaijspooles.c 1.22 03/03/04 22:33:25 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/mat/impls/sbaij/seq/sbaijfact.c 1.36 03/03/04 22:33:05 hzhang@compbio.mcs.anl.gov +6 -5 *** empty log message ***
include/petscmat.h 1.49 03/03/04 22:32:56 hzhang@compbio.mcs.anl.gov +17 -35 *** empty log message ***
src/sles/pc/impls/cholesky/cholesky.c 1.16 03/03/04 22:32:46 hzhang@compbio.mcs.anl.gov +2 -2 *** empty log message ***
src/mat/matimpl.h 1.21 03/03/04 22:32:36 hzhang@compbio.mcs.anl.gov +4 -4 *** empty log message ***
src/mat/impls/sbaij/seq/sbaij.c 1.56 03/03/04 22:32:26 hzhang@compbio.mcs.anl.gov +3 -3 *** empty log message ***
src/mat/impls/dense/seq/dense.c 1.15 03/03/04 21:53:24 hzhang@compbio.mcs.anl.gov +5 -3 *** empty log message ***
src/sles/pc/impls/cholesky/cholesky.c 1.15 03/03/04 21:09:36 hzhang@compbio.mcs.anl.gov +2 -2 *** empty log message ***
src/mat/impls/sbaij/mpi/mpisbaijspooles.c 1.12 03/03/04 21:08:40 hzhang@compbio.mcs.anl.gov +1 -1 *** empty log message ***
src/sles/pc/impls/icc/icc.c 1.9 03/03/04 20:48:54 hzhang@compbio.mcs.anl.gov +0 -0 *** empty log message ***
Hg-commit: 9a08cfa1e52b5a2161f9939f12b8d36d6023fa77
show more ...
|
| #
123145df
|
| 09-Jan-2003 |
Kris Buschelman <buschelm@mcs.anl.gov> |
bk-changeset-1.926 Kris@buschel2000.|ChangeSet|20030109205253|05259 ChangeSet 1.926 03/01/09 12:52:53 Kris@buschel2000. +19 -0 Single precision solves are default when available (matsingle builds
bk-changeset-1.926 Kris@buschel2000.|ChangeSet|20030109205253|05259 ChangeSet 1.926 03/01/09 12:52:53 Kris@buschel2000. +19 -0 Single precision solves are default when available (matsingle builds, baij_4).
src/sles/pc/impls/ilu/ilu.h 1.4 03/01/09 12:52:48 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/sles/pc/impls/ilu/ilu.c 1.10 03/01/09 12:52:48 Kris@buschel2000. +0 -58 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/sbaij/seq/sbaij.c 1.49.1.1 03/01/09 12:52:48 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/sbaij/mpi/mpisbaij.c 1.43 03/01/09 12:52:48 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/rowbs/mpi/mpirowbs.c 1.10 03/01/09 12:52:48 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/dense/seq/dense.c 1.14 03/01/09 12:52:47 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/dense/mpi/mpidense.c 1.13 03/01/09 12:52:47 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/bdiag/seq/bdiag.c 1.10 03/01/09 12:52:47 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/bdiag/mpi/mpibdiag.c 1.11 03/01/09 12:52:47 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/baij/seq/baijfact2.c 1.10 03/01/09 12:52:47 Kris@buschel2000. +28 -47 Single precision solves are default when available (matsingle builds, baij_4). Perhaps this should be cleaned up a bit....
src/mat/impls/baij/seq/baij.h 1.8 03/01/09 12:52:46 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/baij/seq/baij.c 1.36 03/01/09 12:52:46 Kris@buschel2000. +0 -10 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/baij/mpi/mpibaij.c 1.17 03/01/09 12:52:46 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/aij/seq/aij.c 1.52.1.1 03/01/09 12:52:46 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/aij/mpi/mpiaij.c 1.47 03/01/09 12:52:46 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
src/mat/impls/adj/mpi/mpiadj.c 1.8 03/01/09 12:52:45 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
include/petscpc.h 1.22 03/01/09 12:52:45 Kris@buschel2000. +0 -1 Single precision solves are default when available (matsingle builds, baij_4).
include/petscmat.h 1.42 03/01/09 12:52:45 Kris@buschel2000. +1 -1 Single precision solves are default when available (matsingle builds, baij_4).
include/finclude/petscmat.h 1.9 03/01/09 12:52:45 Kris@buschel2000. +0 -2 Single precision solves are default when available (matsingle builds, baij_4).
Hg-commit: 2dbf10a44c0f0c6c38ccad4e8ad9190dc47c84df
show more ...
|
| #
788b9a6c
|
| 01-Sep-2002 |
Kris Buschelman <buschelm@mcs.anl.gov> |
bk-changeset-1.803 Kris@buschel2000.attbi.com|ChangeSet|20020901080155|41151 ChangeSet 1.803 02/09/01 01:01:55 Kris@buschel2000.attbi.com +1 -0 Merge buschelm@shakey.mcs.anl.gov:/home/petsc/petsc
bk-changeset-1.803 Kris@buschel2000.attbi.com|ChangeSet|20020901080155|41151 ChangeSet 1.803 02/09/01 01:01:55 Kris@buschel2000.attbi.com +1 -0 Merge buschelm@shakey.mcs.anl.gov:/home/petsc/petsc-bk/petsc into buschel2000.attbi.com:E:/Kris/petsc
src/mat/impls/baij/seq/baij.c 1.32 02/09/01 01:01:53 Kris@buschel2000.attbi.com +0 -0 Auto merged
Hg-commit: 482734d9d96d7559a0a188ab6d8c27fdddf7ae17
show more ...
|
| #
456192e2
|
| 01-Sep-2002 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.796.1.24 bsmith@terra.mcs.anl.gov|ChangeSet|20020901035649|41173 ChangeSet 1.796.1.24 02/08/31 22:56:49 bsmith@terra.mcs.anl.gov +21 -0 general cleanup and matrix help messages
bk-changeset-1.796.1.24 bsmith@terra.mcs.anl.gov|ChangeSet|20020901035649|41173 ChangeSet 1.796.1.24 02/08/31 22:56:49 bsmith@terra.mcs.anl.gov +21 -0 general cleanup and matrix help messages
src/vec/interface/vector.c 1.31 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -12 general cleanup and matrix help messages
src/sys/src/viewer/interface/viewa.c 1.5 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +2 -2 general cleanup and matrix help messages
src/sys/src/viewer/impls/binary/binv.c 1.12 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/sys/src/objects/pinit.c 1.18 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/sys/src/objects/init.c 1.19 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +3 -5 general cleanup and matrix help messages
src/snes/examples/tutorials/makefile 1.13 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/interface/matrix.c 1.36 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +73 -54 general cleanup and matrix help messages
src/mat/impls/sbaij/seq/sbaij.c 1.36 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/sbaij/mpi/mpisbaij.c 1.36 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/rowbs/mpi/mpirowbs.c 1.7 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/dense/seq/dense.c 1.13 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/dense/mpi/mpidense.c 1.11 02/08/31 22:56:47 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/bdiag/seq/bdiag3.c 1.10 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/bdiag/mpi/mpibdiag.c 1.9 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +2 -2 general cleanup and matrix help messages
src/mat/impls/baij/seq/baij.c 1.30.1.1 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/baij/mpi/mpibaij.c 1.13 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/aij/seq/aij.c 1.44 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
src/mat/impls/aij/mpi/mpiaij.c 1.35 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
include/petscviewer.h 1.24 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +1 -1 general cleanup and matrix help messages
include/finclude/petscviewer.h 1.5 02/08/31 22:56:46 bsmith@terra.mcs.anl.gov +2 -2 general cleanup and matrix help messages
src/sys/src/dll/reg.c 1.12 02/08/31 22:51:55 bsmith@terra.mcs.anl.gov +1 -1 silly no other one has a see manual page
Hg-commit: cbb9d9af325bd303785be46ee0a84a99f91127b9
show more ...
|
| #
f2fe7e71
|
| 18-Feb-2002 |
Matthew Knepley <knepley@mcs.anl.gov> |
bk-changeset-1.490 knepley@spinetta.mcs.anl.gov|ChangeSet|20020218151939|06149 ChangeSet 1.490 02/02/18 09:19:39 knepley@spinetta.mcs.anl.gov +0 -0 Merge shakey:/home/petsc/petsc-bk/petsc into
bk-changeset-1.490 knepley@spinetta.mcs.anl.gov|ChangeSet|20020218151939|06149 ChangeSet 1.490 02/02/18 09:19:39 knepley@spinetta.mcs.anl.gov +0 -0 Merge shakey:/home/petsc/petsc-bk/petsc into spinetta.mcs.anl.gov:/sandbox/knepley/PETSc-dev/petsc
Hg-commit: 6f482baef6f440d4708123f416921075fdfcc355
show more ...
|
| #
7dad321e
|
| 15-Feb-2002 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.487.1.21 bsmith@terra.mcs.anl.gov|ChangeSet|20020215215505|05688 ChangeSet 1.487.1.21 02/02/15 15:55:05 bsmith@terra.mcs.anl.gov +1 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/pets
bk-changeset-1.487.1.21 bsmith@terra.mcs.anl.gov|ChangeSet|20020215215505|05688 ChangeSet 1.487.1.21 02/02/15 15:55:05 bsmith@terra.mcs.anl.gov +1 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/petsc/petsc-bk/petsc into terra.mcs.anl.gov:/sandbox/bsmith/petsc
src/mat/impls/baij/seq/baij.c 1.14.1.1 02/02/15 15:55:05 bsmith@terra.mcs.anl.gov +0 -0 Auto merged
Hg-commit: 2c2aea12c5e93cc90730f67888999940707d0729
show more ...
|
| #
62b941d6
|
| 15-Feb-2002 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.487.7.1 bsmith@terra.mcs.anl.gov|ChangeSet|20020215215451|05496 ChangeSet 1.487.7.1 02/02/15 15:54:51 bsmith@terra.mcs.anl.gov +7 -0 updates to petscapp.bib and changed formating o
bk-changeset-1.487.7.1 bsmith@terra.mcs.anl.gov|ChangeSet|20020215215451|05496 ChangeSet 1.487.7.1 02/02/15 15:54:51 bsmith@terra.mcs.anl.gov +7 -0 updates to petscapp.bib and changed formating of ascii matrix printing to use (%d, %g) notation
src/mat/impls/bdiag/seq/bdiag3.c 1.9 02/02/15 15:50:22 bsmith@terra.mcs.anl.gov +3 -3 *** empty log message ***
src/mat/impls/sbaij/seq/sbaij.c 1.23 02/02/15 15:49:18 bsmith@terra.mcs.anl.gov +7 -7 *** empty log message ***
src/mat/impls/baij/seq/baij.c 1.12.1.1 02/02/15 15:48:06 bsmith@terra.mcs.anl.gov +8 -8 *** empty log message ***
src/mat/impls/dense/seq/dense.c 1.12 02/02/15 15:46:05 bsmith@terra.mcs.anl.gov +3 -3 changed ascii matrix print format
src/mat/impls/aij/seq/aij.c 1.23 02/02/15 15:44:57 bsmith@terra.mcs.anl.gov +8 -8 *** empty log message ***
docs/tex/doctext/petsc.group 1.5 02/02/11 22:13:54 bsmith@terra.mcs.anl.gov +1 -0 *** empty log message ***
docs/tex/doctext/petsc.group 1.4 02/02/11 22:12:27 bsmith@terra.mcs.anl.gov +2 -1 *** empty log message ***
docs/tex/petscapp.bib 1.11 02/02/11 22:12:14 bsmith@terra.mcs.anl.gov +50 -27 *** empty log message ***
Hg-commit: 1d52eab509b3f6381da95346dddc59e5187353e8
show more ...
|
| #
ba63d540
|
| 30-Nov-2001 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.276 bsmith@terra.mcs.anl.gov|ChangeSet|20011130184622|29139 ChangeSet 1.276 01/11/30 12:46:22 bsmith@terra.mcs.anl.gov +0 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/petsc/petsc-bk
bk-changeset-1.276 bsmith@terra.mcs.anl.gov|ChangeSet|20011130184622|29139 ChangeSet 1.276 01/11/30 12:46:22 bsmith@terra.mcs.anl.gov +0 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/petsc/petsc-bk/petsc into terra.mcs.anl.gov:/sandbox/bsmith/petsc
Hg-commit: 810708b19499756aab5839eeb19e6aa2b88f99e7
show more ...
|
| #
607cd303
|
| 30-Nov-2001 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.274.1.1 bsmith@terra.mcs.anl.gov|ChangeSet|20011130184615|29168 ChangeSet 1.274.1.1 01/11/30 12:46:15 bsmith@terra.mcs.anl.gov +14 -0 fixes for ESI without CCA
src/vec/impls/esi
bk-changeset-1.274.1.1 bsmith@terra.mcs.anl.gov|ChangeSet|20011130184615|29168 ChangeSet 1.274.1.1 01/11/30 12:46:15 bsmith@terra.mcs.anl.gov +14 -0 fixes for ESI without CCA
src/vec/impls/esi/ebvec1.c 1.16 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +7 -9
src/vec/esi/evector.c 1.15 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +4 -4
src/vec/esi/eindexspace.c 1.11 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +4 -4
src/snes/impls/test/snestest.c 1.5 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +1 -1
src/sles/examples/tutorials/makefile 1.10 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +1 -1
src/mat/utils/axpy.c 1.5 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +42 -26
src/mat/matimpl.h 1.12 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +2 -1
src/mat/impls/esi/mesi.c 1.12 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +2 -3
src/mat/impls/dense/seq/dense.c 1.11 01/11/30 12:46:14 bsmith@terra.mcs.anl.gov +1 -1
src/mat/examples/tests/ex49.c 1.4 01/11/30 12:46:13 bsmith@terra.mcs.anl.gov +1 -1
src/mat/examples/tests/ex2.c 1.5 01/11/30 12:46:13 bsmith@terra.mcs.anl.gov +1 -1
src/mat/esi/ematrix.c 1.11 01/11/30 12:46:13 bsmith@terra.mcs.anl.gov +4 -4
include/petscmat.h 1.16 01/11/30 12:46:13 bsmith@terra.mcs.anl.gov +1 -1
docs/tex/manual/part2.tex 1.9 01/11/30 12:46:13 bsmith@terra.mcs.anl.gov +1 -1
Hg-commit: a6755e076c14dc0ed95468c800d2d9d2158146c0
show more ...
|
| #
b70e54e8
|
| 30-Nov-2001 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.274 bsmith@terra.mcs.anl.gov|ChangeSet|20011130175630|30141 ChangeSet 1.274 01/11/30 11:56:30 bsmith@terra.mcs.anl.gov +0 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/petsc/petsc-bk
bk-changeset-1.274 bsmith@terra.mcs.anl.gov|ChangeSet|20011130175630|30141 ChangeSet 1.274 01/11/30 11:56:30 bsmith@terra.mcs.anl.gov +0 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/petsc/petsc-bk/petsc into terra.mcs.anl.gov:/sandbox/bsmith/petsc
Hg-commit: 4adb65ae27e09f8bd724a6295b4f3d5293d59864
show more ...
|
| #
91723122
|
| 30-Nov-2001 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.269.2.1 bsmith@terra.mcs.anl.gov|ChangeSet|20011130175050|30414 ChangeSet 1.269.2.1 01/11/30 11:50:50 bsmith@terra.mcs.anl.gov +11 -0 fix for bad its or lits arg
src/vec/esi/ev
bk-changeset-1.269.2.1 bsmith@terra.mcs.anl.gov|ChangeSet|20011130175050|30414 ChangeSet 1.269.2.1 01/11/30 11:50:50 bsmith@terra.mcs.anl.gov +11 -0 fix for bad its or lits arg
src/vec/esi/evector.c 1.14 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +1 -1 fix for CCA
src/snes/examples/tutorials/output/ex2_1.out 1.4 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +1 -1 fix output
src/sles/examples/tutorials/makefile 1.9 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +8 -2 add test for esi
src/mat/impls/sbaij/seq/sbaij.c 1.18 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +1 -0 fix for bad its or lits arg
src/mat/impls/sbaij/mpi/mpisbaij.c 1.18 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +1 -0 fix for bad its or lits arg
src/mat/impls/dense/seq/dense.c 1.10 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +1 -0 fix for bad its or lits arg
src/mat/impls/bdiag/seq/bdiag2.c 1.9 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +1 -0 fix for bad its or lits arg
src/mat/impls/aij/seq/aij.c 1.15 01/11/30 11:50:49 bsmith@terra.mcs.anl.gov +2 -0 fix for bad its or lits arg
src/mat/impls/aij/mpi/mpiaij.c 1.16 01/11/30 11:50:48 bsmith@terra.mcs.anl.gov +1 -0 fix for bad its or lits arg
src/mat/impls/adic/matadic.c 1.11 01/11/30 11:50:48 bsmith@terra.mcs.anl.gov +1 -0 fix for bad its or lits arg
include/esi/petsc/object.h 1.6 01/11/30 11:50:48 bsmith@terra.mcs.anl.gov +2 -0 fix for cca missing
src/mat/impls/bdiag/seq/bdiag2.c 1.8 01/11/30 10:21:24 bsmith@terra.mcs.anl.gov +1 -0 *** empty log message ***
Hg-commit: 20723e0eace7b7e3d2d53d47a88b3acf3a1c5bf7
show more ...
|
| #
7f5322d6
|
| 30-Nov-2001 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.268 bsmith@terra.mcs.anl.gov|ChangeSet|20011130151941|23898 ChangeSet 1.268 01/11/30 09:19:41 bsmith@terra.mcs.anl.gov +1 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/petsc/petsc-bk
bk-changeset-1.268 bsmith@terra.mcs.anl.gov|ChangeSet|20011130151941|23898 ChangeSet 1.268 01/11/30 09:19:41 bsmith@terra.mcs.anl.gov +1 -0 Merge terra.mcs.anl.gov:/nfs/mcs-homes07/petsc/petsc-bk/petsc into terra.mcs.anl.gov:/sandbox/bsmith/petsc
maint/builddist 1.17 01/11/30 09:19:41 bsmith@terra.mcs.anl.gov +0 -0 Auto merged
Hg-commit: 79a5eae413e26dc757386f11647a3ae9378d71a6
show more ...
|
| #
064f8208
|
| 30-Nov-2001 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.257.1.1 bsmith@terra.mcs.anl.gov|ChangeSet|20011130151924|09861 ChangeSet 1.257.1.1 01/11/30 09:19:24 bsmith@terra.mcs.anl.gov +57 -0 put esi into petsc. change norm to nrm to prev
bk-changeset-1.257.1.1 bsmith@terra.mcs.anl.gov|ChangeSet|20011130151924|09861 ChangeSet 1.257.1.1 01/11/30 09:19:24 bsmith@terra.mcs.anl.gov +57 -0 put esi into petsc. change norm to nrm to prevent shadowing
src/vec/interface/vector.c 1.19 01/11/30 09:19:24 bsmith@terra.mcs.anl.gov +1 -1
src/vec/interface/vecregall.c 1.8 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -1
src/vec/impls/esi/makefile 1.5 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -2
src/vec/esi/makefile 1.8 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -2
src/sys/src/esi/makefile 1.6 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -2
src/sys/src/dll/dl.c 1.10 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -1
src/sles/pc/interface/pcregis.c 1.6 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +0 -4
src/sles/pc/esi/makefile 1.5 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -2
src/mat/utils/matioall.c 1.5 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -1
src/mat/utils/gcreate.c 1.7 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -1
src/mat/interface/matregis.c 1.5 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +2 -2
src/mat/esi/makefile 1.7 01/11/30 09:19:23 bsmith@terra.mcs.anl.gov +1 -2
maint/builddist 1.15.1.1 01/11/30 09:19:22 bsmith@terra.mcs.anl.gov +0 -2
docs/tex/manual/part2.tex 1.8 01/11/30 09:19:22 bsmith@terra.mcs.anl.gov +52 -48
docs/tex/manual/part1.tex 1.7 01/11/30 09:19:22 bsmith@terra.mcs.anl.gov +0 -2
docs/tex/manual/acknowl.tex 1.5 01/11/30 09:19:22 bsmith@terra.mcs.anl.gov +3 -2
bmake/linux/packages 1.9 01/11/30 09:19:20 bsmith@terra.mcs.anl.gov +0 -4 remove have_esi
bmake/common/variables 1.16 01/11/30 09:19:20 bsmith@terra.mcs.anl.gov +2 -2 remove have_esi
src/snes/impls/test/snestest.c 1.4 01/11/30 09:13:52 bsmith@terra.mcs.anl.gov +3 -3 *** empty log message ***
src/snes/impls/tr/tr.c 1.5 01/11/30 09:13:18 bsmith@terra.mcs.anl.gov +15 -15 *** empty log message ***
src/snes/mf/snesmfjdef.c 1.6 01/11/30 09:11:17 bsmith@terra.mcs.anl.gov +6 -6 *** empty log message ***
src/snes/interface/snes.c 1.11 01/11/30 09:10:35 bsmith@terra.mcs.anl.gov +9 -10 *** empty log message ***
src/mat/impls/baij/mpi/mpibaij.c 1.8 01/11/30 09:08:25 bsmith@terra.mcs.anl.gov +4 -4 *** empty log message ***
src/mat/impls/bdiag/mpi/mpibdiag.c 1.7 01/11/30 09:07:35 bsmith@terra.mcs.anl.gov +6 -6 *** empty log message ***
src/mat/impls/bdiag/seq/bdiag3.c 1.7 01/11/30 09:07:02 bsmith@terra.mcs.anl.gov +6 -6 *** empty log message ***
src/mat/impls/aij/seq/aij.c 1.14 01/11/30 09:06:11 bsmith@terra.mcs.anl.gov +6 -6 *** empty log message ***
src/mat/impls/dense/mpi/mpidense.c 1.7 01/11/30 09:05:31 bsmith@terra.mcs.anl.gov +7 -7 *** empty log message ***
src/mat/impls/dense/seq/dense.c 1.9 01/11/30 09:04:55 bsmith@terra.mcs.anl.gov +6 -6 changed norm to nrm to prevoide name shadowing
src/mat/interface/matrix.c 1.19 01/11/30 09:03:54 bsmith@terra.mcs.anl.gov +4 -4 changed norm to nrm to provide shadowing with math.h beasty
src/vec/utils/vinv.c 1.9 01/11/30 09:02:49 bsmith@terra.mcs.anl.gov +11 -11 changed norm to nrm to deal with namespace problem on silly mandrake math.h
src/mat/impls/esi/makefile 1.7 01/11/30 00:30:35 bsmith@terra.mcs.anl.gov +1 -2 *** empty log message ***
src/mat/interface/matrix.c 1.18 01/11/30 00:12:09 bsmith@terra.mcs.anl.gov +1 -1 *** empty log message ***
bmake/common/rules 1.17 01/11/29 23:28:53 bsmith@terra.mcs.anl.gov +0 -28 *** empty log message ***
bmake/linux_gcc_pgf90/packages 1.12 01/11/29 22:44:33 bsmith@terra.mcs.anl.gov +2 -1 *** empty log message ***
include/esi/scalarTraits.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +154 -0
include/esi/ordinalTraits.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +35 -0
include/esi/basicTypes.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +165 -0
include/esi/VectorReplaceAccess.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +65 -0
include/esi/Vector.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +269 -0
include/esi/SolverIterative.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +51 -0
include/esi/Solver.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +41 -0
include/esi/scalarTraits.h 1.0 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/scalarTraits.h
include/esi/ordinalTraits.h 1.0 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/ordinalTraits.h
include/esi/basicTypes.h 1.0 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/basicTypes.h
include/esi/VectorReplaceAccess.h 1.0 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/VectorReplaceAccess.h
include/esi/Vector.h 1.0 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/Vector.h
include/esi/SolverIterative.h 1.0 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/SolverIterative.h
include/esi/Solver.h 1.0 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/Solver.h
include/esi/Properties.h 1.1 01/11/29 22:25:51 bsmith@terra.mcs.anl.gov +185 -0
include/esi/PreconditionerTranspose.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +50 -0
include/esi/Preconditioner.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +77 -0
include/esi/OperatorTranspose.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +34 -0
include/esi/Operator.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +36 -0
include/esi/Object.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +232 -0
include/esi/MatrixRowWriteAccess.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +177 -0
include/esi/MatrixRowReadAccess.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +139 -0
include/esi/MatrixRowPointerAccess.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +184 -0
include/esi/MatrixData.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +48 -0
include/esi/MatrixColWriteAccess.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +184 -0
include/esi/MatrixColReadAccess.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +141 -0
include/esi/MatrixColPointerAccess.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +182 -0
include/esi/MPI_traits.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +57 -0
include/esi/IndexSpace.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +221 -0
include/esi/ESI.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +68 -0
include/esi/Properties.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/Properties.h
include/esi/PreconditionerTranspose.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/PreconditionerTranspose.h
include/esi/Preconditioner.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/Preconditioner.h
include/esi/OperatorTranspose.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/OperatorTranspose.h
include/esi/Operator.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/Operator.h
include/esi/Object.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/Object.h
include/esi/MatrixRowWriteAccess.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MatrixRowWriteAccess.h
include/esi/MatrixRowReadAccess.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MatrixRowReadAccess.h
include/esi/MatrixRowPointerAccess.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MatrixRowPointerAccess.h
include/esi/MatrixData.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MatrixData.h
include/esi/MatrixColWriteAccess.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MatrixColWriteAccess.h
include/esi/MatrixColReadAccess.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MatrixColReadAccess.h
include/esi/MatrixColPointerAccess.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MatrixColPointerAccess.h
include/esi/MPI_traits.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/MPI_traits.h
include/esi/IndexSpace.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/IndexSpace.h
include/esi/ESI.h 1.0 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/ESI.h
include/esi/Argv.h 1.1 01/11/29 22:25:50 bsmith@terra.mcs.anl.gov +61 -0
include/esi/Argv.h 1.0 01/11/29 22:25:49 bsmith@terra.mcs.anl.gov +0 -0 BitKeeper file /sandbox/bsmith/petsc/include/esi/Argv.h
Hg-commit: d9d6c6cefae516ab31281b22724992262a3bcb28
show more ...
|
| #
b965ef7f
|
| 27-Nov-2001 |
Barry Smith <bsmith@mcs.anl.gov> |
bk-changeset-1.212 bsmith@terra.mcs.anl.gov|ChangeSet|20011127154806|18733 ChangeSet 1.212 01/11/27 09:48:06 bsmith@terra.mcs.anl.gov +4 -0 total relaxation iterations is the local number times t
bk-changeset-1.212 bsmith@terra.mcs.anl.gov|ChangeSet|20011127154806|18733 ChangeSet 1.212 01/11/27 09:48:06 bsmith@terra.mcs.anl.gov +4 -0 total relaxation iterations is the local number times the global number for sequential matrix formats
src/mat/impls/sbaij/seq/sbaij.c 1.17 01/11/27 09:46:12 bsmith@terra.mcs.anl.gov +2 -1 *** empty log message ***
src/mat/impls/bdiag/seq/bdiag2.c 1.7 01/11/27 09:45:51 bsmith@terra.mcs.anl.gov +2 -2 *** empty log message ***
src/mat/impls/bdiag/seq/bdiag2.c 1.6 01/11/27 09:45:24 bsmith@terra.mcs.anl.gov +3 -2 *** empty log message ***
src/mat/impls/aij/seq/aij.c 1.12 01/11/27 09:44:30 bsmith@terra.mcs.anl.gov +1 -0 total relaxation iterations is the local number times the global number
src/mat/impls/dense/seq/dense.c 1.8 01/11/27 09:43:48 bsmith@terra.mcs.anl.gov +1 -0 total relaxation iterations is the local number times the global number
Hg-commit: 947b0fc8e4be73622e0fc6d82c2d69753e7e043a
show more ...
|