History log of /petsc/src/sys/classes/viewer/interface/viewers.c (Results 101 – 113 of 113)
Revision Date Author Comments
# edbbd480 10-Dec-2013 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into barry/xcode


# e0133700 05-Dec-2013 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'barry/saws-push-header-body' into barry/saws-options


# fb3f26da 04-Dec-2013 Jed Brown <jedbrown@mcs.anl.gov>

Merge branch 'jed/malloc-array'

Type arguments dropped from PetscMalloc[2-7], PetscNew, and PetscNewLog,
added PetscMalloc1 for allocating typed arrays, add PetscCalloc[1-7] for
allocating cleared (

Merge branch 'jed/malloc-array'

Type arguments dropped from PetscMalloc[2-7], PetscNew, and PetscNewLog,
added PetscMalloc1 for allocating typed arrays, add PetscCalloc[1-7] for
allocating cleared (zeroed) memory.

* jed/malloc-array:
Sys: Add pointer casts from (void **) in calls to PetscMalloc1()
Sys: drop explicit type arguments from PetscNew() and PetscNewLog()
Sys: add PetscCalloc[1-7]
Sys: add PetscMalloc1 macro, array allocation without redundant types
PetscMalloc[2-7]: remove type arguments, infer from pointer type
SNESComputeJacobianDefaultColor: fix uninitialized variable

show more ...


# b00a9115 03-Dec-2013 Jed Brown <jedbrown@mcs.anl.gov>

Sys: drop explicit type arguments from PetscNew() and PetscNewLog()

git grep -l 'PetscNew\(Log\)\?(' -- $1 | xargs perl -pi -e '
s@PetscNew\([^,;()]+ *, *@PetscNew(@;
s@PetscNewLog\(([^,;()]+) *,[^,

Sys: drop explicit type arguments from PetscNew() and PetscNewLog()

git grep -l 'PetscNew\(Log\)\?(' -- $1 | xargs perl -pi -e '
s@PetscNew\([^,;()]+ *, *@PetscNew(@;
s@PetscNewLog\(([^,;()]+) *,[^,;()]+, *@PetscNewLog($1,@'

show more ...


# 1795a4d1 03-Dec-2013 Jed Brown <jedbrown@mcs.anl.gov>

Sys: add PetscCalloc[1-7]

Replace lots of places where PetscMemzero is called immediately after
allocation.


# 785e854f 03-Dec-2013 Jed Brown <jedbrown@mcs.anl.gov>

Sys: add PetscMalloc1 macro, array allocation without redundant types

The type is inferred from the pointer return type. This patch is
automated via the following script:

git grep -l 'PetscMalloc(

Sys: add PetscMalloc1 macro, array allocation without redundant types

The type is inferred from the pointer return type. This patch is
automated via the following script:

git grep -l 'PetscMalloc(.*sizeof' src | xargs perl -pi -e 's@PetscMalloc\(([^,;]*[^,; ]) *\* *sizeof\([^,;()]+\),@PetscMalloc1($1,@'

This commit contains an additional bug-fix in csrperm.c, fixing pointer
arity. The code was introduced in 2006, but the allocation could not
have been correct at any time. This probably means that
MatDuplicate_SeqAIJPERM has never been tested.

a54129beb540034ba105796c682d589e7e1111f2
Richard Tran Mills <rmills@ornl.gov>

Added MATSEQCSRPERM support for MatDuplicate() and conversion to/from
MATSEQAIJ. Note that these changes are not quite debugged.

show more ...


# 4042b796 17-Mar-2013 Jed Brown <jed@59A2.org>

Merge branch 'master' into jed/ts-eimex

Sync to include Git conversion, PETSC_EXTERN, and minor API changes.

Conflicts:
src/ts/interface/tsregall.c


# 665c2ded 16-Feb-2013 Jed Brown <jed@59A2.org>

Remove petscviewer.h from petscsys.h

Much of sys is independent of viewer. Viewer is used in so many other
places that it is now included by petscvec.h.

Hg-commit: 1d745f01618aa51d3043fb1f87b0546f6

Remove petscviewer.h from petscsys.h

Much of sys is independent of viewer. Viewer is used in so many other
places that it is now included by petscvec.h.

Hg-commit: 1d745f01618aa51d3043fb1f87b0546f60e6e730

show more ...


# a297a907 29-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Uncrustified src/sys/*

Hg-commit: 9f71677807bad7b55428a6cc0f5ccc5052e91805


# 72ca7aa7 25-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: 0abf89d5ee6edf91e6393c34ebd34611a44a1ae3


# be332245 25-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Partially unified indentation to two spaces rather than 3, 5, etc.

Hg-commit: 72aceb82fa10cae79a777f91c00d187d4e02f4f6


# 29aa02fc 11-Dec-2012 Shri Abhyankar <abhyshr@mcs.anl.gov>

Commit after merge.

Hg-commit: a128a87f5736ccbab37df5d559616f8376f7026e


# 5c6c1dae 10-Dec-2012 Barry Smith <bsmith@mcs.anl.gov>

reorg of src/sys directory
directories that define objects now in the classes subdirectory
rename several confusing name directories

Hg-commit: b2612422c63ac4afe82112892d9efda808f3d601


12345