History log of /petsc/src/dm/impls/plex/tests/ex18.c (Results 101 – 110 of 110)
Revision Date Author Comments
# 8bbbbe7a 13-Aug-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/dmplexbuildfromcelllist-numvertices-petscdecide' into 'master'

DMPlexBuildFromCellList{,Parallel}: Improve vertex count handling.

See merge request petsc/petsc!3031


# 25b6865a 06-Aug-2020 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

DMPlexBuildFromCellList{,Parallel}: Improve vertex count handling.

* DMPlexBuildFromCellListParallel: add global vertex count argument
* DMPlexBuildFromCellList{,Parallel}: local and global vertex c

DMPlexBuildFromCellList{,Parallel}: Improve vertex count handling.

* DMPlexBuildFromCellListParallel: add global vertex count argument
* DMPlexBuildFromCellList{,Parallel}: local and global vertex count can be PETSC_DECIDE
* if both are PETSC_DECIDE, max vertex id in cells + 1 is used
* DMPlexLoad_HDF5_Xdmf_Internal: the check is no more needed

show more ...


# 96b917e0 20-Jul-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/fix-dmplex-ints' into 'master'

int -> PetscInt, double -> PetscReal/PetscScalar in DMPlex API for various front facing functions

See merge request petsc/petsc!2512


# a4a685f2 09-Feb-2020 Jacob Faibussowitsch <jacob.fai@gmail.com>

Add DMPlexCreateFromCellList[Parallel]Petsc and marked previous namesake as
deprecated. New function accpets only petsc datatypes, old function performs types conversions within. Affects tetgen, ctet

Add DMPlexCreateFromCellList[Parallel]Petsc and marked previous namesake as
deprecated. New function accpets only petsc datatypes, old function performs types conversions within. Affects tetgen, ctetgen, and any createfromcelllist[parallel] interfaces.

show more ...


# 7a32ffbe 14-Jun-2020 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/barry/2020-05-30/trivial-sizeof-fixes'

Updated the use of sizeof() when possible instead of using hardwired sizes for...

See merge request petsc/petsc!2827


# 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 ...


# 9c15a9aa 24-Apr-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jed/defined-nocpp' into 'master'

PetscDefined: test whether a configuration macro is defined without #ifdef

See merge request petsc/petsc!157


# 76bd3646 14-Apr-2020 Jed Brown <jed@jedbrown.org>

PetscDefined: remove many uses of #ifdef PETSC_USE_DEBUG


# 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 ...


12345