History log of /petsc/src/dm/impls/plex/tests/ex1.c (Results 126 – 136 of 136)
Revision Date Author Comments
# 589a23ca 02-Jun-2020 Barry Smith <bsmith@mcs.anl.gov>

Updated the use of sizeof() when possible instead of using hardwired sizes for functions whose string arguments
need sizes. In particular done for PetscOptionsGetString(), PetscOptionsString(), and a

Updated the use of sizeof() when possible instead of using hardwired sizes for functions whose string arguments
need sizes. In particular done for PetscOptionsGetString(), PetscOptionsString(), and a few other utilities

Commit-type: style-fix

Development Tools: Vim, Emacs, Eclipse

show more ...


# 8d4a14de 12-Jun-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-plex-bary-refine' into 'master'

Knepley/feature plex bary refine

See merge request petsc/petsc!2855


# 595782ff 10-Jun-2020 Matthew G. Knepley <knepley@gmail.com>

Plex ex1: Added tests for BL and Alfeld refinement


# 4133f029 17-Apr-2020 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


# 64e5907a 16-Apr-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-neighbors-plex-overlap-0' into 'maint'

Fix DMGetNeighbors_DMPlex when overlap == 0

See merge request petsc/petsc!2715


# 0a19bb7d 16-Apr-2020 prj- <pierre.jolivet@enseeiht.fr>

Fix DMGetNeighbors_DMPlex when overlap == 0


# 3b7b15c8 26-Mar-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-dm-remove-hybrid' into 'master'

Knepley/feature dm remove hybrid

See merge request petsc/petsc!2614


# 96ca5757 24-Mar-2020 Lisandro Dalcin <dalcinl@gmail.com>

DMPlex: Fixed cell reordering and namespaced cell type names
- Namespaced DMPlexCellRefinerType enum items
- Added DMPlexReorderCell() and refactored DMPlexInvertCell()
- Update Gmsh reader to han

DMPlex: Fixed cell reordering and namespaced cell type names
- Namespaced DMPlexCellRefinerType enum items
- Added DMPlexReorderCell() and refactored DMPlexInvertCell()
- Update Gmsh reader to handle tet+tri-prism meshes

show more ...


# 54fcfd0c 03-Mar-2020 Matthew G. Knepley <knepley@gmail.com>

DM+Plex: Example Fixes for cell type rewrite


# c20d7725 22-Mar-2020 Jed Brown <jed@jedbrown.org>

Merge branch 'jed/promote-examples-tests-tutorials' [petsc/petsc!2610]

* jed/promote-examples-tests-tutorials:
Promote examples/{tests,tutorials}/ to {tests,tutorials}/


# c4762a1b 18-Mar-2020 Jed Brown <jed@jedbrown.org>

Promote examples/{tests,tutorials}/ to {tests,tutorials}/

This shortens paths and improves consistency between test target names
and paths to the source and output files. Most of the work was
compl

Promote examples/{tests,tutorials}/ to {tests,tutorials}/

This shortens paths and improves consistency between test target names
and paths to the source and output files. Most of the work was
completed by this script, followed by mild cleanup of nonconforming
cases.

for makefile in `git ls-files 'src/*makefile'`; do
if rg -q 'DIRS.*\bexamples\b' $makefile; then
base=$(dirname $makefile)
dirs=$(cd $base/examples && ls -d tests tutorials 2>/dev/null | xargs echo)
perl -pi -e "s#^(DIRS.*)\bexamples\b#\1${dirs}#" $makefile
git rm $base/examples/makefile
for t in $dirs; do
git mv $base/examples/$t $base/
perl -pi -e "s#^(LOCDIR[[:space:]]*=).*#\1 $base/$t/#" $base/$t
done
fi
done

git grep -l -E -z 'examples/(tutorials|tests)' | xargs -0 perl -pi -e 's#examples/(tutorials|tests)#\1#g'
git checkout @ \
src/docs/website/documentation/changes/ \
src/benchmarks/results/

show more ...


123456