History log of /petsc/src/dm/impls/plex/plex.c (Results 1451 – 1475 of 1780)
Revision Date Author Comments
# fedde076 08-Feb-2014 Matthew G. Knepley <knepley@gmail.com>

DMPlex: Added parallel stage to DMPlexOrient()
- The coarse solver is not implemented, so only works for p=2


# a7b5fb5f 08-Feb-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'balay/tao-to-petsc'

Conflicts:
src/snes/impls/fas/fasfunc.c
src/snes/impls/fas/fasgalerkin.c


# 0a6ba040 06-Feb-2014 Matthew G. Knepley <knepley@gmail.com>

DMPlex: Added DMRefineHierarchy() and DMCoarsen() support
- DMRefineHierarchy() sets coarseMesh, so DMRefine() does not cause the initial mesh to keep on living
- DMCoarsen() returns coarseMesh
- The

DMPlex: Added DMRefineHierarchy() and DMCoarsen() support
- DMRefineHierarchy() sets coarseMesh, so DMRefine() does not cause the initial mesh to keep on living
- DMCoarsen() returns coarseMesh
- These are handled by DMSetFromOptions(), which I had to move

show more ...


# 3913d7c8 06-Feb-2014 Matthew G. Knepley <knepley@gmail.com>

DMPlex: Added coarseMesh member to Plex
- This will be used by DMCoarsen()
- It will be set during refinement


# b2bbe45b 02-Feb-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into balay/tao-to-petsc


# 150b719b 01-Feb-2014 Jed Brown <jed@jedbrown.org>

DMPlexStratify: use Function() so man pages have links


# aaa7dc30 29-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

fixed quote marks for includes to <>


# a55dd444 21-Nov-2013 Geoffrey Irving <irving@naml.us>

DMPlexStratify: Clarify documentation


# 1cd21259 19-Nov-2013 Geoffrey Irving <irving@naml.us>

plex.c: Fix typo: nubmer -> number


# 75076a52 27-Jan-2014 Matthew G. Knepley <knepley@gmail.com>

Merge branch 'knepley/fix-plex-closure-index'

* knepley/fix-plex-closure-index:
DMPlex: work around -Wmaybe-uninitialized
DMPlex: Small fix
PetscSection: Added PetscSectionGetField()
DMPlex:

Merge branch 'knepley/fix-plex-closure-index'

* knepley/fix-plex-closure-index:
DMPlex: work around -Wmaybe-uninitialized
DMPlex: Small fix
PetscSection: Added PetscSectionGetField()
DMPlex: Reorganization of closure operations - Rename DMPlexVecGetClosure_Static() —> DMPlexVecGetClosure_Depth1_Static() - Added special cases with/out fields - Removed the need for field offsets by interchanging loops over points and fields - Fixed bug where field offsets were not calculated if an array was passed in - Made all local functions static - Using SNES ex62 to verify changes, and DMPlex ex9 to time them
DMPlex: Fixed object check
DMPlex ex9: Now test VecClosure with index - Made functions static
DMPlex: Optimization for Get/SetClosure - Only need field offsets if there is more than one field
PetscSection: Change clIndices member to clPoints - Added some docs
SNES ex12: Use ViewFromOptions correctly
DMPlex: Use closure index in DMPlexVecSetClosure() and DMPlexMatSetClosure() - Moved depth 1 optimization to static function
DMPlex: Reorgnized closure index - Now index stores points and orientations instead of offsets, so it can be used for updates as well - Moved index creation to plexindices.c - Moved optimization for depth 1 mesh to a static function
DMPlex: Fixed two bugs with DMPlexCreateClosureIndex() - Must make index for entire DM chart - Need to update cloff when no fields are present

Conflicts:
src/dm/impls/plex/makefile
src/dm/impls/plex/plex.c

show more ...


# 036f3cb5 26-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into balay/tao-to-petsc

Conflicts:
include/makefile


# 9fdc1e34 26-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge remote-tracking branch 'origin/barry/remove-big-g'


# f9cfb505 26-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into knepley/feature-mat-zerorowscols-baij


# a9ca0dfc 25-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into barry/remove-big-g


# 93f5c259 23-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into barry/wirth-fusion-materials


# 48d69046 22-Jan-2014 Vijay Mahadevan <vijay.m@gmail.com>

Merged petsc/petsc into master


# fe02ba77 20-Jan-2014 Jed Brown <jed@jedbrown.org>

DMPlex: work around -Wmaybe-uninitialized


# aa17ddd6 20-Jan-2014 Jed Brown <jed@jedbrown.org>

Merge branch 'jed/plex-f90-null-object'

* jed/plex-f90-null-object:
DMPlexMatSetClosure: allow NULL sections to use defaults
DMPlex Fortran: allow PETSC_NULL_OBJECT for sections
DMPlex F90: re

Merge branch 'jed/plex-f90-null-object'

* jed/plex-f90-null-object:
DMPlexMatSetClosure: allow NULL sections to use defaults
DMPlex Fortran: allow PETSC_NULL_OBJECT for sections
DMPlex F90: rename __ierr to ierr for use with macros

show more ...


# 6712e2f1 18-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

insure that all casts to (double) are enclosed in ()


# 57622a8e 16-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

completed some percentage of changes from %G format in prints


# 1a271a75 16-Jan-2014 Matthew G. Knepley <knepley@gmail.com>

DMPlex: Reorganization of closure operations
- Rename DMPlexVecGetClosure_Static() —> DMPlexVecGetClosure_Depth1_Static()
- Added special cases with/out fields
- Removed the need for field offsets by

DMPlex: Reorganization of closure operations
- Rename DMPlexVecGetClosure_Static() —> DMPlexVecGetClosure_Depth1_Static()
- Added special cases with/out fields
- Removed the need for field offsets by interchanging loops over points and fields
- Fixed bug where field offsets were not calculated if an array was passed in
- Made all local functions static
- Using SNES ex62 to verify changes, and DMPlex ex9 to time them

show more ...


# ebd6d717 13-Jan-2014 Jed Brown <jedbrown@mcs.anl.gov>

DMPlexMatSetClosure: allow NULL sections to use defaults


# c7ff62de 13-Jan-2014 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into barry/wirth-fusion-materials
bad manual merge needs to be fixed
this is what happens when branches hang around too long

Conflicts:
src/ts/examples/tutorials/advection-dif

Merge branch 'master' into barry/wirth-fusion-materials
bad manual merge needs to be fixed
this is what happens when branches hang around too long

Conflicts:
src/ts/examples/tutorials/advection-diffusion-reaction/ex10.c

show more ...


# f723297e 12-Jan-2014 Matthew G. Knepley <knepley@gmail.com>

DMPlex: Optimization for Get/SetClosure
- Only need field offsets if there is more than one field


# 52d48256 10-Jan-2014 Vijay Mahadevan <vijay.m@gmail.com>

Merged petsc/petsc into master


1...<<51525354555657585960>>...72