History log of /petsc/include/petscsys.h (Results 1576 – 1600 of 1729)
Revision Date Author Comments
# 2dad8ce0 29-Mar-2006 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.4210
hzhang@shakey.mcs.anl.gov|ChangeSet|20060329173756|52933
ChangeSet
1.4210 06/03/29 11:37:56 hzhang@shakey.mcs.anl.gov +6 -0
rename petscrandomtype - rm _

src/sys/utils/rand

bk-changeset-1.4210
hzhang@shakey.mcs.anl.gov|ChangeSet|20060329173756|52933
ChangeSet
1.4210 06/03/29 11:37:56 hzhang@shakey.mcs.anl.gov +6 -0
rename petscrandomtype - rm _

src/sys/utils/random/interface/randreg.c
1.4 06/03/29 11:37:54 hzhang@shakey.mcs.anl.gov +6 -6
rename petscrandomtype - rm _

src/sys/utils/random/impls/rand48/rand48.c
1.3 06/03/29 11:37:54 hzhang@shakey.mcs.anl.gov +1 -1
rename petscrandomtype - rm _

src/sys/utils/random/impls/rand/rand.c
1.3 06/03/29 11:37:53 hzhang@shakey.mcs.anl.gov +5 -14
bugfix

src/sys/utils/random/examples/ex1.c
1.4 06/03/29 11:37:53 hzhang@shakey.mcs.anl.gov +1 -1
rename petscrandomtype - rm _

src/mat/impls/baij/seq/baijfact.c
1.41 06/03/29 11:37:53 hzhang@shakey.mcs.anl.gov +2 -0
fix memory leak

include/petscsys.h
1.54 06/03/29 11:37:53 hzhang@shakey.mcs.anl.gov +2 -2
rename petscrandomtype - rm _


Hg-commit: 65b72f8a24d7cfae7e90a607d0e76a7f011b32be

show more ...


# c77d6671 29-Mar-2006 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.4208
hzhang@shakey.mcs.anl.gov|ChangeSet|20060329033701|52891
ChangeSet
1.4208 06/03/28 21:37:01 hzhang@shakey.mcs.anl.gov +48 -0
reorganize PetscRandom
Note:
PetscRandomCreat

bk-changeset-1.4208
hzhang@shakey.mcs.anl.gov|ChangeSet|20060329033701|52891
ChangeSet
1.4208 06/03/28 21:37:01 hzhang@shakey.mcs.anl.gov +48 -0
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/vec/vec/interface/vector.c
1.157 06/03/28 21:36:56 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/utils/random/randomimpl.h
1.3 06/03/28 21:36:56 hzhang@shakey.mcs.anl.gov +3 -2
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/utils/random/interface/randreg.c
1.3 06/03/28 21:36:56 hzhang@shakey.mcs.anl.gov +115 -3
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/utils/random/interface/random.c
1.38 06/03/28 21:36:56 hzhang@shakey.mcs.anl.gov +103 -46
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/utils/random/interface/dlregisrand.c
1.2 06/03/28 21:36:56 hzhang@shakey.mcs.anl.gov +7 -34
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/utils/random/impls/rand48/rand48.c
1.2 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +38 -20
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/utils/random/impls/rand/rand.c
1.2 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +33 -5
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/utils/random/examples/ex1.c
1.3 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +4 -3
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/examples/tests/ex6f.F
1.7 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/sys/examples/tests/ex12.c
1.10 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/snes/interface/noise/snesnoise.c
1.25 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/utils/multequal.c
1.14 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +8 -4
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex96.c
1.19 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex94.c
1.27 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex92.c
1.14 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex91.c
1.8 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex77.c
1.10 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex76.c
1.22 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex75.c
1.27 06/03/28 21:36:55 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex74.c
1.34 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex72.c
1.13 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex54.c
1.10 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex53.c
1.21 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex51.c
1.10 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex48.c
1.21 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex47.c
1.12 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex42.c
1.13 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex41.c
1.12 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex40.c
1.13 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex108.c
1.2 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex107.c
1.2 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex104.c
1.3 06/03/28 21:36:54 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex103.c
1.3 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/mat/examples/tests/ex100.c
1.4 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tutorials/ex4.c
1.16 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tutorials/ex2f.F
1.18 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -2
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tutorials/ex2.c
1.17 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tutorials/ex11f.F
1.18 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +6 -4
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tutorials/ex11.c
1.18 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +3 -2
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tests/ex26.c
1.9 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tests/ex24.c
1.18 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tests/ex19.c
1.18 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/ksp/ksp/examples/tests/ex17.c
1.17 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +5 -3
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/dm/da/src/da2.c
1.81 06/03/28 21:36:53 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/contrib/blopex/petsc-interface/petsc-interface.c
1.2 06/03/28 21:36:52 hzhang@shakey.mcs.anl.gov +5 -6
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/benchmarks/PetscMalloc.c
1.6 06/03/28 21:36:52 hzhang@shakey.mcs.anl.gov +2 -1
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

src/benchmarks/Index.c
1.6 06/03/28 21:36:52 hzhang@shakey.mcs.anl.gov +4 -2
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);

include/petscsys.h
1.53 06/03/28 21:36:52 hzhang@shakey.mcs.anl.gov +5 -4
reorganize PetscRandom
Note:
PetscRandomCreate(PETSC_COMM_WORLD,RANDOM_DEFAULT,&rand);
->
PetscRandomCreate(PETSC_COMM_WORLD,&rand);
PetscRandomSetType(rand,PETSC_RAND48) or PetscRandomSetFromOptions(rand);


Hg-commit: 5a391ae445c4a06b8e3fb80c29f44e75f128678f

show more ...


# 16ad1f42 28-Mar-2006 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.4204
hzhang@shakey.mcs.anl.gov|ChangeSet|20060328035555|12452
ChangeSet
1.4204 06/03/27 21:55:55 hzhang@shakey.mcs.anl.gov +11 -0
continue reorganize petscrandom

src/sys/utils/r

bk-changeset-1.4204
hzhang@shakey.mcs.anl.gov|ChangeSet|20060328035555|12452
ChangeSet
1.4204 06/03/27 21:55:55 hzhang@shakey.mcs.anl.gov +11 -0
continue reorganize petscrandom

src/sys/utils/random/randomimpl.h
1.2 06/03/27 21:55:52 hzhang@shakey.mcs.anl.gov +8 -2
continue reorganize petscrandom

src/sys/utils/random/makefile
1.3 06/03/27 21:55:51 hzhang@shakey.mcs.anl.gov +1 -1
continue reorganize petscrandom

src/sys/utils/random/interface/randreg.c
1.2 06/03/27 21:55:51 hzhang@shakey.mcs.anl.gov +26 -29
continue reorganize petscrandom

src/sys/utils/random/interface/random.c
1.37 06/03/27 21:55:51 hzhang@shakey.mcs.anl.gov +11 -140
continue reorganize petscrandom

src/sys/utils/random/impls/makefile
1.2 06/03/27 21:55:51 hzhang@shakey.mcs.anl.gov +1 -1
continue reorganize petscrandom

src/sys/utils/random/examples/ex1.c
1.2 06/03/27 21:55:51 hzhang@shakey.mcs.anl.gov +3 -1
continue reorganize petscrandom

include/petscsys.h
1.52 06/03/27 21:55:50 hzhang@shakey.mcs.anl.gov +1 -1
continue reorganize petscrandom

src/sys/utils/random/impls/rand48/rand48.c
1.1 06/03/27 21:53:21 hzhang@shakey.mcs.anl.gov +93 -0

src/sys/utils/random/impls/rand48/rand48.c
1.0 06/03/27 21:53:21 hzhang@shakey.mcs.anl.gov +0 -0
BitKeeper file /sandbox/hzhang/petsc-dev/src/sys/utils/random/impls/rand48/rand48.c

src/sys/utils/random/impls/rand48/makefile
1.1 06/03/27 21:53:15 hzhang@shakey.mcs.anl.gov +17 -0

src/sys/utils/random/impls/rand48/makefile
1.0 06/03/27 21:53:15 hzhang@shakey.mcs.anl.gov +0 -0
BitKeeper file /sandbox/hzhang/petsc-dev/src/sys/utils/random/impls/rand48/makefile

src/sys/utils/random/impls/rand/rand.c
1.1 06/03/27 21:53:05 hzhang@shakey.mcs.anl.gov +73 -0

src/sys/utils/random/impls/rand/rand.c
1.0 06/03/27 21:53:05 hzhang@shakey.mcs.anl.gov +0 -0
BitKeeper file /sandbox/hzhang/petsc-dev/src/sys/utils/random/impls/rand/rand.c

src/sys/utils/random/impls/rand/makefile
1.1 06/03/27 21:52:51 hzhang@shakey.mcs.anl.gov +17 -0

src/sys/utils/random/impls/rand/makefile
1.0 06/03/27 21:52:50 hzhang@shakey.mcs.anl.gov +0 -0
BitKeeper file /sandbox/hzhang/petsc-dev/src/sys/utils/random/impls/rand/makefile


Hg-commit: 8aa244d385967a2e6da47f5baa2eae7425af00d4

show more ...


# 94030458 26-Mar-2006 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.4202
hzhang@shakey.mcs.anl.gov|ChangeSet|20060326040849|11714
ChangeSet
1.4202 06/03/25 22:08:49 hzhang@shakey.mcs.anl.gov +7 -0
reorganize petscrandom for an extension

src/sys/

bk-changeset-1.4202
hzhang@shakey.mcs.anl.gov|ChangeSet|20060326040849|11714
ChangeSet
1.4202 06/03/25 22:08:49 hzhang@shakey.mcs.anl.gov +7 -0
reorganize petscrandom for an extension

src/sys/utils/random/makefile
1.2 06/03/25 22:08:45 hzhang@shakey.mcs.anl.gov +2 -2
reorganize petscrandom for an extension

src/sys/utils/random/interface/random.c
1.36 06/03/25 22:08:45 hzhang@shakey.mcs.anl.gov +88 -91
reorganize petscrandom for an extension

src/sys/utils/random/interface/makefile
1.2 06/03/25 22:08:45 hzhang@shakey.mcs.anl.gov +2 -3
reorganize petscrandom for an extension

include/petscsys.h
1.51 06/03/25 22:08:45 hzhang@shakey.mcs.anl.gov +69 -1
reorganize petscrandom for an extension

src/sys/utils/random/interface/randreg.c
1.1 06/03/25 21:29:02 hzhang@shakey.mcs.anl.gov +194 -0

src/sys/utils/random/interface/randreg.c
1.0 06/03/25 21:29:02 hzhang@shakey.mcs.anl.gov +0 -0
BitKeeper file /sandbox/hzhang/petsc-dev/src/sys/utils/random/interface/randreg.c

src/sys/utils/random/interface/dlregisrand.c
1.1 06/03/25 21:28:52 hzhang@shakey.mcs.anl.gov +95 -0

src/sys/utils/random/interface/dlregisrand.c
1.0 06/03/25 21:28:52 hzhang@shakey.mcs.anl.gov +0 -0
BitKeeper file /sandbox/hzhang/petsc-dev/src/sys/utils/random/interface/dlregisrand.c

src/sys/utils/random/randomimpl.h
1.1 06/03/25 21:28:38 hzhang@shakey.mcs.anl.gov +25 -0

src/sys/utils/random/randomimpl.h
1.0 06/03/25 21:28:37 hzhang@shakey.mcs.anl.gov +0 -0
BitKeeper file /sandbox/hzhang/petsc-dev/src/sys/utils/random/randomimpl.h


Hg-commit: 1deae5158355ab0778b06b9336c2c170672547a1

show more ...


# 8da8b068 17-Dec-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.3882
barrysmith@barry-smiths-computer.local|ChangeSet|20051217190946|18932
ChangeSet
1.3882 05/12/17 13:09:46 barrysmith@barry-smiths-computer.local +0 -0
Merge bk://petsc@petsc.bk

bk-changeset-1.3882
barrysmith@barry-smiths-computer.local|ChangeSet|20051217190946|18932
ChangeSet
1.3882 05/12/17 13:09:46 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: 0bdea710c28cfde0e12fa4859a97f8d96fc6880a

show more ...


# 2e845745 17-Dec-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.3879.1.1
barrysmith@barry-smiths-computer.local|ChangeSet|20051217190848|23242
ChangeSet
1.3879.1.1 05/12/17 13:08:48 barrysmith@barry-smiths-computer.local +3 -0
matimpl.h, petsci

bk-changeset-1.3879.1.1
barrysmith@barry-smiths-computer.local|ChangeSet|20051217190848|23242
ChangeSet
1.3879.1.1 05/12/17 13:08:48 barrysmith@barry-smiths-computer.local +3 -0
matimpl.h, petscimpl.h, petscsys.h:
Put factorization ll into matimpl.h

src/mat/matimpl.h
1.91 05/12/17 13:07:56 barrysmith@barry-smiths-computer.local +464 -0
Put factorization ll into matimpl.h

include/private/petscimpl.h
1.59 05/12/17 13:07:52 barrysmith@barry-smiths-computer.local +1 -3
Put factorization ll into matimpl.h

include/petscsys.h
1.50 05/12/17 13:07:51 barrysmith@barry-smiths-computer.local +0 -463
Put factorization ll into matimpl.h


Hg-commit: 35f42e77dd6dd1889cdc93d1c2803542d5ef9015

show more ...


# 99f44b25 17-Dec-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.3879
barrysmith@barry-smiths-computer.local|ChangeSet|20051217040019|21769
ChangeSet
1.3879 05/12/16 22:00:19 barrysmith@barry-smiths-computer.local +0 -0
Merge bk://petsc@petsc.bk

bk-changeset-1.3879
barrysmith@barry-smiths-computer.local|ChangeSet|20051217040019|21769
ChangeSet
1.3879 05/12/16 22:00:19 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: b8e9a0cc906ba4ac89f2566d8e05d4796d0e894f

show more ...


# f621e05e 17-Dec-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.3877.1.1
barrysmith@barry-smiths-computer.local|ChangeSet|20051217035925|21756
ChangeSet
1.3877.1.1 05/12/16 21:59:25 barrysmith@barry-smiths-computer.local +14 -0
Many files:

bk-changeset-1.3877.1.1
barrysmith@barry-smiths-computer.local|ChangeSet|20051217035925|21756
ChangeSet
1.3877.1.1 05/12/16 21:59:25 barrysmith@barry-smiths-computer.local +14 -0
Many files:
cleanup comments and docs in include files
petsclog.h, petscerror.h:
clearer comments
petscbt.h, petscbag.h:
cleanup docs
bag.c:
listing of nonexisting bag entry type
petscsys.h:
formatting
petscmath.h:
outdated comment about PetscLogDouble
petsc.h:
improved comments

src/sys/viewer/interface/dlregispetsc.c
1.29 05/12/16 21:58:18 barrysmith@barry-smiths-computer.local +1 -1
cleanup comments and docs in include files

src/sys/verbose/verboseinfo.c
1.35 05/12/16 21:58:18 barrysmith@barry-smiths-computer.local +4 -4
cleanup comments and docs in include files

src/sys/objects/pinit.c
1.72 05/12/16 21:58:18 barrysmith@barry-smiths-computer.local +1 -1
cleanup comments and docs in include files

src/sys/objects/gcookie.c
1.10 05/12/16 21:58:18 barrysmith@barry-smiths-computer.local +1 -1
cleanup comments and docs in include files

src/dm/mesh/sieve/ALE.cxx
1.15 05/12/16 21:58:17 barrysmith@barry-smiths-computer.local +1 -1
cleanup comments and docs in include files

include/private/petscimpl.h
1.58 05/12/16 21:58:16 barrysmith@barry-smiths-computer.local +2 -2
cleanup comments and docs in include files

include/petsc.h
1.157 05/12/16 21:58:16 barrysmith@barry-smiths-computer.local +2 -2
cleanup comments and docs in include files

include/petsclog.h
1.65 05/12/16 21:52:58 barrysmith@barry-smiths-computer.local +4 -1
clearer comments

include/petscbt.h
1.17 05/12/16 21:49:45 barrysmith@barry-smiths-computer.local +7 -19
cleanup docs

include/petscbag.h
1.13 05/12/16 21:47:43 barrysmith@barry-smiths-computer.local +4 -10
cleanup docs

src/sys/bag/bag.c
1.27 05/12/16 21:47:35 barrysmith@barry-smiths-computer.local +14 -14
listing of nonexisting bag entry type

include/petscsys.h
1.49 05/12/16 21:41:27 barrysmith@barry-smiths-computer.local +11 -13
formatting

include/petscmath.h
1.29 05/12/16 21:33:17 barrysmith@barry-smiths-computer.local +0 -10
outdated comment about PetscLogDouble

include/petscerror.h
1.55 05/12/16 21:29:53 barrysmith@barry-smiths-computer.local +14 -3
clearer comments

include/petsc.h
1.156 05/12/16 21:22:59 barrysmith@barry-smiths-computer.local +31 -38
improved comments


Hg-commit: d0fe846556251e049a2ec3235832860816a008a8

show more ...


# afcc9904 06-Nov-2005 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.3676
hzhang@shakey.mcs.anl.gov|ChangeSet|20051106013719|17049
ChangeSet
1.3676 05/11/05 19:37:19 hzhang@shakey.mcs.anl.gov +2 -0
add PetscLLAddPerm() to symbolic LU factorization

bk-changeset-1.3676
hzhang@shakey.mcs.anl.gov|ChangeSet|20051106013719|17049
ChangeSet
1.3676 05/11/05 19:37:19 hzhang@shakey.mcs.anl.gov +2 -0
add PetscLLAddPerm() to symbolic LU factorization

src/mat/impls/aij/seq/aijfact.c
1.120 05/11/05 19:37:16 hzhang@shakey.mcs.anl.gov +1 -2
replacde PetscLLAdd() with PetscLLAddPerm()

include/petscsys.h
1.48 05/11/05 19:37:16 hzhang@shakey.mcs.anl.gov +38 -0
add PetscLLAddPerm()


Hg-commit: c2041678f6a474a02e8790bf5a0c66f0c65d3075

show more ...


# 335f953c 02-Nov-2005 Boyana Norris <norris@mcs.anl.gov>

bk-changeset-1.3634
norris@boyana.mcs.anl.gov|ChangeSet|20051102174343|14287
ChangeSet
1.3634 05/11/02 11:43:43 norris@boyana.mcs.anl.gov +0 -0
Merge shakey.mcs.anl.gov:/home/norris/petsc2.x/pets

bk-changeset-1.3634
norris@boyana.mcs.anl.gov|ChangeSet|20051102174343|14287
ChangeSet
1.3634 05/11/02 11:43:43 norris@boyana.mcs.anl.gov +0 -0
Merge shakey.mcs.anl.gov:/home/norris/petsc2.x/petsc-dev
into boyana.mcs.anl.gov:/home/norris/petsc2.x/petsc-dev


Hg-commit: 90cf05bb6b9fed2e9edf8a66f945bc8244c9d01f

show more ...


# ef124c46 01-Nov-2005 Satish Balay <balay@mcs.anl.gov>

bk-changeset-1.3215.1.78
balay@asterix.mcs.anl.gov|ChangeSet|20051101144116|46995
ChangeSet
1.3215.1.78 05/11/01 08:41:16 balay@asterix.mcs.anl.gov +3 -0
appply lu-bugfix from petsc-dev

src/ma

bk-changeset-1.3215.1.78
balay@asterix.mcs.anl.gov|ChangeSet|20051101144116|46995
ChangeSet
1.3215.1.78 05/11/01 08:41:16 balay@asterix.mcs.anl.gov +3 -0
appply lu-bugfix from petsc-dev

src/mat/impls/aij/seq/aijfact.c
1.114.1.1 05/11/01 08:41:14 balay@asterix.mcs.anl.gov +2 -5
appply lu-bugfix from petsc-dev

include/petscversion.h
1.138.1.40 05/11/01 08:41:14 balay@asterix.mcs.anl.gov +2 -2
appply lu-bugfix from petsc-dev

include/petscsys.h
1.40.1.1 05/11/01 08:41:14 balay@asterix.mcs.anl.gov +3 -3
appply lu-bugfix from petsc-dev


Hg-commit: 0778451dbfa11df1740c48721c769f8d3d373089

show more ...


# d1170560 31-Oct-2005 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.3632.1.60
hzhang@shakey.mcs.anl.gov|ChangeSet|20051031230426|09259
ChangeSet
1.3632.1.60 05/10/31 17:04:26 hzhang@shakey.mcs.anl.gov +2 -0
code cleanup for better understanding of

bk-changeset-1.3632.1.60
hzhang@shakey.mcs.anl.gov|ChangeSet|20051031230426|09259
ChangeSet
1.3632.1.60 05/10/31 17:04:26 hzhang@shakey.mcs.anl.gov +2 -0
code cleanup for better understanding of
MatLUFactorSymbolic_SeqAIJ()

src/mat/impls/aij/seq/aijfact.c
1.118 05/10/31 17:04:24 hzhang@shakey.mcs.anl.gov +5 -7
code cleanup for better understanding

include/petscsys.h
1.46 05/10/31 17:04:24 hzhang@shakey.mcs.anl.gov +6 -5
code cleanup for better understanding


Hg-commit: c912db289b9c87d24339df77ccd88cd9313657ab

show more ...


# a7873693 31-Oct-2005 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.3632.1.58
hzhang@shakey.mcs.anl.gov|ChangeSet|20051031180134|09931
ChangeSet
1.3632.1.58 05/10/31 12:01:34 hzhang@shakey.mcs.anl.gov +2 -0
bugfix for MatLUFactorSymbolic_SeqAIJ()

bk-changeset-1.3632.1.58
hzhang@shakey.mcs.anl.gov|ChangeSet|20051031180134|09931
ChangeSet
1.3632.1.58 05/10/31 12:01:34 hzhang@shakey.mcs.anl.gov +2 -0
bugfix for MatLUFactorSymbolic_SeqAIJ()

src/mat/impls/aij/seq/aijfact.c
1.117 05/10/31 12:01:31 hzhang@shakey.mcs.anl.gov +2 -5
bugfix for MatLUFactorSymbolic_SeqAIJ()

include/petscsys.h
1.45 05/10/31 12:01:31 hzhang@shakey.mcs.anl.gov +3 -3
bugfix for MatLUFactorSymbolic_SeqAIJ()


Hg-commit: 52f8e8ade0e6f361e7a0c4bf1f17a23b5353bc49

show more ...


# 45c64e65 28-Oct-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.3632.1.36
barrysmith@barrysmith-57.mcs.anl.gov|ChangeSet|20051028213837|15393
ChangeSet
1.3632.1.36 05/10/28 16:38:37 barrysmith@barrysmith-57.mcs.anl.gov +19 -0
PetscViewerFileTyp

bk-changeset-1.3632.1.36
barrysmith@barrysmith-57.mcs.anl.gov|ChangeSet|20051028213837|15393
ChangeSet
1.3632.1.36 05/10/28 16:38:37 barrysmith@barrysmith-57.mcs.anl.gov +19 -0
PetscViewerFileType merged into PetscFileMode

src/vec/vec/interface/vector.c
1.143 05/10/28 16:38:33 barrysmith@barrysmith-57.mcs.anl.gov +2 -2
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/vu/petscvu.c
1.18 05/10/28 16:38:33 barrysmith@barrysmith-57.mcs.anl.gov +8 -8
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/netcdf/vnetcdf.c
1.11 05/10/28 16:38:32 barrysmith@barrysmith-57.mcs.anl.gov +21 -21
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/matlab/vmatlab.c
1.25 05/10/28 16:38:32 barrysmith@barrysmith-57.mcs.anl.gov +17 -17
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/matlab/ftn-custom/zvmatlabf.c
1.2 05/10/28 16:38:32 barrysmith@barrysmith-57.mcs.anl.gov +1 -1
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/hdf4/hdf4v.c
1.16 05/10/28 16:38:32 barrysmith@barrysmith-57.mcs.anl.gov +14 -14
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/binary/ftn-custom/zbinvf.c
1.2 05/10/28 16:38:32 barrysmith@barrysmith-57.mcs.anl.gov +5 -5
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/binary/binv.c
1.55 05/10/28 16:38:32 barrysmith@barrysmith-57.mcs.anl.gov +63 -60
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/ascii/vcreatea.c
1.14 05/10/28 16:38:32 barrysmith@barrysmith-57.mcs.anl.gov +57 -3
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/ascii/ftn-custom/zfilevf.c
1.3 05/10/28 16:38:31 barrysmith@barrysmith-57.mcs.anl.gov +1 -1
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/ascii/filev.c
1.46 05/10/28 16:38:31 barrysmith@barrysmith-57.mcs.anl.gov +57 -38
PetscViewerFileType merged into PetscFileMode

src/sys/viewer/impls/ascii/asciiimpl.h
1.2 05/10/28 16:38:31 barrysmith@barrysmith-57.mcs.anl.gov +6 -718
PetscViewerFileType merged into PetscFileMode

src/sys/fileio/sysio.c
1.46 05/10/28 16:38:31 barrysmith@barrysmith-57.mcs.anl.gov +11 -10
PetscViewerFileType merged into PetscFileMode

src/sys/fileio/ftn-custom/zsysiof.c
1.2 05/10/28 16:38:31 barrysmith@barrysmith-57.mcs.anl.gov +1 -1
petscbinaryopen takes PetscFileMode as argument instead of int
for mode

src/sys/draw/impls/ps/pops.c
1.17 05/10/28 16:38:31 barrysmith@barrysmith-57.mcs.anl.gov +1 -1
PetscViewerFileType merged into PetscFileMode

src/mat/impls/aij/mpi/mpiaij.c
1.255 05/10/28 16:38:31 barrysmith@barrysmith-57.mcs.anl.gov +1 -1
PetscViewerFileType merged into PetscFileMode

include/petscsys.h
1.44 05/10/28 16:38:30 barrysmith@barrysmith-57.mcs.anl.gov +2 -2
removed dead code

include/petsc.h
1.145 05/10/28 16:38:30 barrysmith@barrysmith-57.mcs.anl.gov +19 -0
moved PetscFileMode to petsc.h so always accessible

include/finclude/petscviewer.h
1.10 05/10/28 16:38:30 barrysmith@barrysmith-57.mcs.anl.gov +1 -1
fixed file mode enum for opening files


Hg-commit: 80e92c19fb858977b0065072554ed44002940bd5

show more ...


# daf18fee 01-Oct-2005 Matthew Knepley <knepley@mcs.anl.gov>

bk-changeset-1.3559
knepley@khan.(none)|ChangeSet|20051001012055|16955
ChangeSet
1.3559 05/09/30 20:20:55 knepley@khan.(none) +1 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into khan.(none)

bk-changeset-1.3559
knepley@khan.(none)|ChangeSet|20051001012055|16955
ChangeSet
1.3559 05/09/30 20:20:55 knepley@khan.(none) +1 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into khan.(none):/PETSc3/petsc/petsc-dev

src/docs/tex/manual/part2.tex
1.97 05/09/30 20:20:53 knepley@khan.(none) +0 -0
Auto merged


Hg-commit: dd7162aa7f6020bd2ed7329407809a753222f5fe

show more ...


# 5e2020c0 30-Sep-2005 Hong Zhang <hzhang@mcs.anl.gov>

bk-changeset-1.3552.1.22
hzhang@shakey.mcs.anl.gov|ChangeSet|20050930005858|04875
ChangeSet
1.3552.1.22 05/09/29 19:58:58 hzhang@shakey.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-d

bk-changeset-1.3552.1.22
hzhang@shakey.mcs.anl.gov|ChangeSet|20050930005858|04875
ChangeSet
1.3552.1.22 05/09/29 19:58:58 hzhang@shakey.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into shakey.mcs.anl.gov:/sandbox/hzhang/petsc-dev


Hg-commit: af5293f96563f61f3c8b2f0c6d5644052e0cbc5f

show more ...


# 954b3ec6 29-Sep-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.3552.11.6
barrysmith@barrysmith-57.mcs.anl.gov|ChangeSet|20050929210947|06327
ChangeSet
1.3552.11.6 05/09/29 16:09:47 barrysmith@barrysmith-57.mcs.anl.gov +5 -0
getsigs to get PETS

bk-changeset-1.3552.11.6
barrysmith@barrysmith-57.mcs.anl.gov|ChangeSet|20050929210947|06327
ChangeSet
1.3552.11.6 05/09/29 16:09:47 barrysmith@barrysmith-57.mcs.anl.gov +5 -0
getsigs to get PETSc API signatures

makefile
1.184 05/09/29 16:09:44 barrysmith@barrysmith-57.mcs.anl.gov +21 -0
getsigs to get PETSc API signatures

include/petscvec.h
1.82 05/09/29 16:09:44 barrysmith@barrysmith-57.mcs.anl.gov +3 -3
formatting

include/petscsys.h
1.43 05/09/29 16:09:44 barrysmith@barrysmith-57.mcs.anl.gov +1 -2
formatting

include/petscmat.h
1.194 05/09/29 16:09:43 barrysmith@barrysmith-57.mcs.anl.gov +1 -2
formatting

include/petscksp.h
1.70 05/09/29 16:09:43 barrysmith@barrysmith-57.mcs.anl.gov +1 -4
formatting


Hg-commit: e0150489bfc22eb9a356679b63395be295d219c8

show more ...


# 62903a64 20-Jun-2005 Dinesh Kaushik <kaushik@mcs.anl.gov>

bk-changeset-1.3349.1.3
kaushik@manu.mcs.anl.gov|ChangeSet|20050620221736|50543
ChangeSet
1.3349.1.3 05/06/20 17:17:36 kaushik@manu.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev

bk-changeset-1.3349.1.3
kaushik@manu.mcs.anl.gov|ChangeSet|20050620221736|50543
ChangeSet
1.3349.1.3 05/06/20 17:17:36 kaushik@manu.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into manu.mcs.anl.gov:/home/kaushik/petsc


Hg-commit: e28f09e984c4b10dc1c40090e54df9bfb9cd3802

show more ...


# 2964b3c7 16-Jun-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.3351
bsmith@harley.mcs.anl.gov|ChangeSet|20050616185417|41391
ChangeSet
1.3351 05/06/16 13:54:17 bsmith@harley.mcs.anl.gov +1 -0
Merge bk://petsc.bkbits.net/petsc-dev
into harley

bk-changeset-1.3351
bsmith@harley.mcs.anl.gov|ChangeSet|20050616185417|41391
ChangeSet
1.3351 05/06/16 13:54:17 bsmith@harley.mcs.anl.gov +1 -0
Merge bk://petsc.bkbits.net/petsc-dev
into harley.mcs.anl.gov:/sandbox/bsmith/petsc-dev

bmake/common/rules
1.162 05/06/16 13:54:16 bsmith@harley.mcs.anl.gov +0 -2
Auto merged


Hg-commit: 11aa0449394a382a20394ec945c8939ed3e4760a

show more ...


# d9780ad9 16-Jun-2005 Satish Balay <balay@mcs.anl.gov>

bk-changeset-1.3349.2.33
balay@asterix.mcs.anl.gov|ChangeSet|20050616162936|42412
ChangeSet
1.3349.2.33 05/06/16 11:29:36 balay@asterix.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-d

bk-changeset-1.3349.2.33
balay@asterix.mcs.anl.gov|ChangeSet|20050616162936|42412
ChangeSet
1.3349.2.33 05/06/16 11:29:36 balay@asterix.mcs.anl.gov +0 -0
Merge bk://petsc@petsc.bkbits.net/petsc-dev
into asterix.mcs.anl.gov:/home/balay/bk-rep/petsc-dev


Hg-commit: eb7d62ff224fbf233589da8b575767d51a1eefa9

show more ...


# 5dbae600 16-Jun-2005 Matthew Knepley <knepley@mcs.anl.gov>

bk-changeset-1.3349.15.1
knepley@khan.(none)|ChangeSet|20050616151549|34660
ChangeSet
1.3349.15.1 05/06/16 10:15:49 knepley@khan.(none) +2 -0
Added seed support in PetscRandom

src/sys/utils/ra

bk-changeset-1.3349.15.1
knepley@khan.(none)|ChangeSet|20050616151549|34660
ChangeSet
1.3349.15.1 05/06/16 10:15:49 knepley@khan.(none) +2 -0
Added seed support in PetscRandom

src/sys/utils/random.c
1.28 05/06/16 10:15:48 knepley@khan.(none) +173 -18
Added seed support in PetscRandom

include/petscsys.h
1.42 05/06/16 10:15:48 knepley@khan.(none) +4 -0
Added seed support in PetscRandom


Hg-commit: ffd959deaf4d45140e1cedc3667efaaf22b9ca32

show more ...


# c84e4b83 16-May-2005 Satish Balay <balay@mcs.anl.gov>

bk-changeset-1.3286
balay@asterix.mcs.anl.gov|ChangeSet|20050516221613|13556
ChangeSet
1.3286 05/05/16 17:16:13 balay@asterix.mcs.anl.gov +0 -0
Merge asterix.mcs.anl.gov:/home/balay/spetsc
into

bk-changeset-1.3286
balay@asterix.mcs.anl.gov|ChangeSet|20050516221613|13556
ChangeSet
1.3286 05/05/16 17:16:13 balay@asterix.mcs.anl.gov +0 -0
Merge asterix.mcs.anl.gov:/home/balay/spetsc
into asterix.mcs.anl.gov:/home/balay/petsc-dl


Hg-commit: 11e70e37800f7c96a63c1d1c20794c72a875f1df

show more ...


# 1f7e983d 16-May-2005 Satish Balay <balay@mcs.anl.gov>

bk-changeset-1.3280.1.5
balay@asterix.mcs.anl.gov|ChangeSet|20050516221031|00582
ChangeSet
1.3280.1.5 05/05/16 17:10:31 balay@asterix.mcs.anl.gov +6 -0
fix formatted comments - no fortran stubs

bk-changeset-1.3280.1.5
balay@asterix.mcs.anl.gov|ChangeSet|20050516221031|00582
ChangeSet
1.3280.1.5 05/05/16 17:10:31 balay@asterix.mcs.anl.gov +6 -0
fix formatted comments - no fortran stubs

include/petscviewer.h
1.53 05/05/16 17:10:29 balay@asterix.mcs.anl.gov +3 -3
fix formatted comments - no fortran stubs

include/petscversion.h
1.149 05/05/16 17:10:29 balay@asterix.mcs.anl.gov +1 -1
fix formatted comments - no fortran stubs

include/petscsys.h
1.41 05/05/16 17:10:29 balay@asterix.mcs.anl.gov +7 -7
fix formatted comments - no fortran stubs

include/petscksp.h
1.67 05/05/16 17:10:29 balay@asterix.mcs.anl.gov +7 -7
fix formatted comments - no fortran stubs

include/petscda.h
1.47 05/05/16 17:10:29 balay@asterix.mcs.anl.gov +2 -2
fix formatted comments - no fortran stubs

include/petsc.h
1.131 05/05/16 17:10:29 balay@asterix.mcs.anl.gov +20 -20
fix formatted comments - no fortran stubs


Hg-commit: 1397415816ead2373e8a87b312a90d29dd99bc0e

show more ...


# f588057b 13-Feb-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.2898
barrysmith@barry-smiths-computer.local|ChangeSet|20050213042530|17535
ChangeSet
1.2898 05/02/12 22:25:30 barrysmith@barry-smiths-computer.local +14 -0
support for serializing

bk-changeset-1.2898
barrysmith@barry-smiths-computer.local|ChangeSet|20050213042530|17535
ChangeSet
1.2898 05/02/12 22:25:30 barrysmith@barry-smiths-computer.local +14 -0
support for serializing and GetOptions for users structs
plus various minor bug fixes

src/sys/src/viewer/impls/binary/binv.c
1.41 05/02/12 22:25:26 barrysmith@barry-smiths-computer.local +67 -6
formating

src/sys/src/fileio/sysio.c
1.33 05/02/12 22:25:26 barrysmith@barry-smiths-computer.local +43 -0
convience function

src/sys/src/fileio/mprint.c
1.37 05/02/12 22:25:26 barrysmith@barry-smiths-computer.local +0 -1
bad comment

src/sys/src/fileio/mpiuopen.c
1.21 05/02/12 22:25:26 barrysmith@barry-smiths-computer.local +1 -1
int fix

src/sys/src/bag/bag.c
1.3 05/02/12 22:25:26 barrysmith@barry-smiths-computer.local +401 -0
support for serializing and GetOptions for users structs

src/sys/examples/tutorials/ex5.c
1.2 05/02/12 22:25:26 barrysmith@barry-smiths-computer.local +43 -30
support for serializing and GetOptions for users structs

src/sys/examples/tutorials/makefile
1.6 05/02/12 22:25:25 barrysmith@barry-smiths-computer.local +12 -2
support for serializing and GetOptions for users structs

src/snes/interface/snesj.c
1.11 05/02/12 22:25:25 barrysmith@barry-smiths-computer.local +4 -0
bug fix

include/petscviewer.h
1.49 05/02/12 22:25:25 barrysmith@barry-smiths-computer.local +2 -0
convienice function

include/petscsys.h
1.40 05/02/12 22:25:25 barrysmith@barry-smiths-computer.local +1 -0
convience function

include/petscbag.h
1.2 05/02/12 22:25:25 barrysmith@barry-smiths-computer.local +80 -14
support for serializing and GetOptions for users structs

bin/matlab/PetscBinaryWrite.m
1.12 05/02/12 22:25:25 barrysmith@barry-smiths-computer.local +6 -2
fix for one d sparse matrices

src/sys/examples/tutorials/output/ex5_1.out
1.1 05/02/12 22:15:11 barrysmith@barry-smiths-computer.local +15 -0

src/sys/examples/tutorials/output/ex5_1.out
1.0 05/02/12 22:15:11 barrysmith@barry-smiths-computer.local +0 -0
BitKeeper file /Users/barrysmith/petsc-dev/src/sys/examples/tutorials/output/ex5_1.out

src/docs/tex/petscapp.bib
1.147 05/02/10 21:25:42 barrysmith@barry-smiths-computer.local +8 -0
new app from Glasser/Tang

src/sys/examples/tutorials/ex5.c
1.1 05/02/06 07:50:45 barrysmith@barry-smiths-computer.local +57 -0

src/sys/examples/tutorials/ex5.c
1.0 05/02/06 07:50:45 barrysmith@barry-smiths-computer.local +0 -0
BitKeeper file /Users/barrysmith/petsc-dev/src/sys/examples/tutorials/ex5.c


Hg-commit: cd5da09ca17bca3ec9d281bedb5e1dd7e6a6e39f

show more ...


# 7c307921 06-Feb-2005 Barry Smith <bsmith@mcs.anl.gov>

bk-changeset-1.2897
barrysmith@barry-smiths-computer.local|ChangeSet|20050206032105|33448
ChangeSet
1.2897 05/02/05 21:21:05 barrysmith@barry-smiths-computer.local +32 -0
PETScInt fixes for long

bk-changeset-1.2897
barrysmith@barry-smiths-computer.local|ChangeSet|20050206032105|33448
ChangeSet
1.2897 05/02/05 21:21:05 barrysmith@barry-smiths-computer.local +32 -0
PETScInt fixes for long long

src/sys/src/objects/options.c
1.53 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +3 -3
PETScInt fixes for long long

src/sys/src/objects/ams/aoptions.c
1.32 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +1 -1
PETScInt fixes for long long

src/sys/src/fileio/fretrieve.c
1.25 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

src/sys/src/bag/makefile
1.2 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +5 -9
PETScInt fixes for long long

src/sys/src/bag/bag.c
1.2 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +1 -497
PETScInt fixes for long long

src/sys/examples/tests/ex12.c
1.8 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +8 -7
PETScInt fixes for long long

src/snes/examples/tutorials/ex5s.c
1.10 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +1 -1
PETScInt fixes for long long

src/mat/utils/axpy.c
1.24 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +0 -2
PETScInt fixes for long long

src/mat/impls/shell/shellcnv.c
1.17 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +1 -1
PETScInt fixes for long long

src/mat/impls/maij/maij.c
1.37 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +1 -1
PETScInt fixes for long long

src/mat/impls/baij/seq/baij.c
1.124 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +0 -2
PETScInt fixes for long long

src/mat/impls/baij/seq/aijbaij.c
1.24 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +7 -7
PETScInt fixes for long long

src/mat/impls/baij/mpi/baijov.c
1.29 05/02/05 21:21:01 barrysmith@barry-smiths-computer.local +0 -2
PETScInt fixes for long long

src/mat/impls/aij/seq/aij.c
1.216 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +0 -2
PETScInt fixes for long long

src/mat/impls/aij/mpi/mumps/mumps.c
1.86 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +4 -4
PETScInt fixes for long long

src/mat/examples/tutorials/ex5.c
1.3 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +16 -16
PETScInt fixes for long long

src/mat/examples/tests/ex45.c
1.7 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +6 -6
PETScInt fixes for long long

src/ksp/pc/impls/ml/ml.c
1.13 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

src/ksp/pc/impls/asm/asm.c
1.43 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +1 -1
PETScInt fixes for long long

src/dm/ao/examples/tutorials/ex2.c
1.12 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +14 -14
PETScInt fixes for long long

src/dm/ao/examples/tests/ex6.c
1.6 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

src/dm/ao/examples/tests/ex5.c
1.7 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +3 -3
PETScInt fixes for long long

src/dm/ao/examples/tests/ex3.c
1.9 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

src/dm/ao/examples/tests/ex2.c
1.7 05/02/05 21:21:00 barrysmith@barry-smiths-computer.local +1 -1
PETScInt fixes for long long

include/vecimpl.h
1.38 05/02/05 21:20:59 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

include/petscsys.h
1.39 05/02/05 21:20:59 barrysmith@barry-smiths-computer.local +10 -10
PETScInt fixes for long long

include/petscoptions.h
1.24 05/02/05 21:20:59 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

include/petscdraw.h
1.24 05/02/05 21:20:59 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

include/petscda.h
1.45 05/02/05 21:20:59 barrysmith@barry-smiths-computer.local +6 -6
PETScInt fixes for long long

include/petsc.h
1.114 05/02/05 21:20:59 barrysmith@barry-smiths-computer.local +2 -2
PETScInt fixes for long long

include/makefile
1.7 05/02/05 21:20:59 barrysmith@barry-smiths-computer.local +1 -1
PETScInt fixes for long long

src/sys/src/bag/makefile
1.1 05/02/05 20:55:47 barrysmith@barry-smiths-computer.local +23 -0

src/sys/src/bag/bag.c
1.1 05/02/05 20:55:47 barrysmith@barry-smiths-computer.local +501 -0

src/sys/src/bag/makefile
1.0 05/02/05 20:55:47 barrysmith@barry-smiths-computer.local +0 -0
BitKeeper file /Users/barrysmith/petsc-dev/src/sys/src/bag/makefile

src/sys/src/bag/bag.c
1.0 05/02/05 20:55:47 barrysmith@barry-smiths-computer.local +0 -0
BitKeeper file /Users/barrysmith/petsc-dev/src/sys/src/bag/bag.c

include/petscbag.h
1.1 05/02/05 19:30:32 barrysmith@barry-smiths-computer.local +62 -0

include/petscbag.h
1.0 05/02/05 19:30:32 barrysmith@barry-smiths-computer.local +0 -0
BitKeeper file /Users/barrysmith/petsc-dev/include/petscbag.h


Hg-commit: 0be48fdba6c75be1fcd648c7325467a545674f39

show more ...


1...<<61626364656667686970