| #
03d13750
|
| 01-Nov-2022 |
Matthew G. Knepley <knepley@gmail.com> |
Plex ex1: Updated extrusion tests
|
| #
7d8d4117
|
| 17-Oct-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'knepley/feature-ephemeral-mesh' into 'main'
Plex: First implementation of ephemeral meshes
See merge request petsc/petsc!5738
|
| #
9f4ada15
|
| 12-Oct-2022 |
Matthew G. Knepley <knepley@gmail.com> |
Plex: First implementation of ephemeral meshes - Add DMPlexGet/RestoreOrientedCone() - Add a transform to Plex, which makes it an ephemeral mesh - Add depth information to PlexTransform - Fix filter
Plex: First implementation of ephemeral meshes - Add DMPlexGet/RestoreOrientedCone() - Add a transform to Plex, which makes it an ephemeral mesh - Add depth information to PlexTransform - Fix filter transform - Fix Plex view for ephemeral meshes - Right now, check mesh->tr for an ephemeral mesh, but later we could make a subclass - Remove DMPlexAddConeSize()
show more ...
|
| #
061e922f
|
| 22-Sep-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2022-09-21/2-bike-2-shed' into 'main'
Feature: Bicycle Storage Facility 2
See merge request petsc/petsc!5661
|
| #
d71ae5a4
|
| 21-Sep-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
source code format changes due to .clang-format changes
|
| #
58d68138
|
| 23-Aug-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-08-21/clang-format-source' into 'main'
format repository with clang-format
See merge request petsc/petsc!5541
|
| #
9371c9d4
|
| 22-Aug-2022 |
Satish Balay <balay@mcs.anl.gov> |
clang-format: convert PETSc sources to comply with clang-format
|
| #
4cc27a7e
|
| 03-Aug-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'knepley/fix-plex-periodic-latex' into 'main'
Plex ex1: Periodic latex
See merge request petsc/petsc!5450
|
| #
95b48405
|
| 01-Aug-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/feature-p4est-version' into 'main'
configure: add p4est version check
See merge request petsc/petsc!5492
|
| #
6cdd483e
|
| 01-Aug-2022 |
Pierre Jolivet <pierre@joliv.et> |
configure: add p4est version check
|
| #
5cab5458
|
| 26-Jul-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-07-23/add-petscbeginuser' into 'main'
Add PetscFunctionBeginUser to all PETSc C/C++ examples
See merge request petsc/petsc!5470
|
| #
327415f7
|
| 23-Jul-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
Add PetscFunctionBeginUser to all PETSc C/C++ examples
Now the stack frames will contain the main program and the correct line numbers in them
git ls-files | egrep "(tutorials|tests)" | xargs sed -
Add PetscFunctionBeginUser to all PETSc C/C++ examples
Now the stack frames will contain the main program and the correct line numbers in them
git ls-files | egrep "(tutorials|tests)" | xargs sed -i "s?\(PetscCall(PetscInitialize(&argc\)?PetscFunctionBeginUser;\n \1?g"
Commit-type: error-checking, testing-fix /spend 15m
show more ...
|
| #
c3ecd002
|
| 20-Jul-2022 |
Matthew G. Knepley <knepley@gmail.com> |
Plex ex1: Periodic latex - It is not perfect, but getting there
|
| #
52c461f9
|
| 18-Jul-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'knepley/feature-gmsh-pyramid' into 'main'
Plex: Activate pyramids in Gmsh
See merge request petsc/petsc!5422
|
| #
a40d1d52
|
| 18-Jul-2022 |
Matthew G. Knepley <knepley@gmail.com> |
Plex ex1: Added pyramid test
|
| #
54fdce2b
|
| 17-Jul-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'knepley/fix-plex-gmsh-face-labels' into 'main'
Plex: Fix bug with reordering
See merge request petsc/petsc!5416
|
| #
a48df7f6
|
| 11-Jul-2022 |
Matthew G. Knepley <knepley@gmail.com> |
Fixed examples
|
| #
6c4e6812
|
| 06-Jul-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'knepley/fix-dm-periodicity' into 'main'
Fixes for periodicity
See merge request petsc/petsc!5391
|
| #
4fb89ddd
|
| 01-Jul-2022 |
Matthew G. Knepley <knepley@gmail.com> |
Plex: Instead of forcing periodic coordinates to [0, L], it should be [lower, lower + L]
|
| #
91e96481
|
| 28-Jun-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'knepley/feature-plex-periodic-separation' into 'main'
Fix periodicity for higher order coordinates
See merge request petsc/petsc!5333
|
| #
8fb5bd83
|
| 13-Jun-2022 |
Matthew G. Knepley <knepley@gmail.com> |
Fixed examples
|
| #
145e6476
|
| 23-Jun-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-06-13/make-one-line-if-call' into 'main'
Change if () { PetscCall() } three liner to one liner
See merge request petsc/petsc!5344
|
| #
1baa6e33
|
| 14-Jun-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
Change if () { PetscCall() } three liner and friends to one liners
for i in `git ls-files | grep "\.[ch]$"` ; do sed 's?\$?ZZZ?g' $i | tr '\n' '$' | sed 's?\([ ]*\)if (\([-;,.\*+=a-z0-9A-Z_>]*\)) {\
Change if () { PetscCall() } three liner and friends to one liners
for i in `git ls-files | grep "\.[ch]$"` ; do sed 's?\$?ZZZ?g' $i | tr '\n' '$' | sed 's?\([ ]*\)if (\([-;,.\*+=a-z0-9A-Z_>]*\)) {\$[ ]*PetscCall(\([- ._+=a-z0-9A-Z>*,()]*);\)\$[ ]*}\$?\1if (\2) PetscCall(\3$?g' | tr '$' '\n' | sed 's?ZZZ?$?g' > $i.joe ; mv $i.joe $i ; done
for i in `git ls-files | grep "\.[hc]$"` ; do sed 's?\$?ZZZ?g' $i | tr '\n' '$' | sed 's?\([ }else]*\)if (\([-;,.\*+=a-z0-9A-Z_>]*\)) {\$[ ]*PetscCall(\([- ._+=a-z0-9A-Z>*,()]*);\)\$\([ ]*\)} \([- ._+=a-z0-9A-Z>*,()]*);\)\$?\1if (\2) PetscCall(\3$\4\5$?g' | tr '$' '\n' | sed 's?ZZZ?$?g' > $i.joe ; mv $i.joe $i ; done
Yes, really ugly but Barry still cannot master awk
Commit-type: housekeeping
show more ...
|
| #
7005ae4c
|
| 09-May-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'haplav/extend-plex-checkpointsf' into 'main'
extend DMPlexCheckPointSF()
See merge request petsc/petsc!5217
|
| #
19a9de31
|
| 02-May-2022 |
Vaclav Hapla <vaclav.hapla@erdw.ethz.ch> |
plex/tests/ex1.c: pack checks using DMPlexCheck()
|