History log of /petsc/src/ts/utils/dmplexlandau/plexland.c (Results 1 – 25 of 276)
Revision Date Author Comments
# 4e8208cb 31-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetC

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetCtx ctx)

See merge request petsc/petsc!8956

show more ...


# 2a8381b2 13-Jan-2026 Barry Smith <bsmith@mcs.anl.gov>

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now t

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now the standard for passing in contexts
- PetscCtxRt ctx is the standard for passing out contexts, including context destroy routines based on PetscCtxDestroyFn

Both of these are typedef to void*

Also removed most use of user and userctx for context arguments now consistently named ctx

Improved documentation on PetscCtx and PetscCtxRt and on how to use contexts (including getting them) from Fortran

show more ...


# f985a143 30-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'adams/dmswarm_dmlandau_6d' into 'main'

DMSwarm: PIC + FE Landau V space example

See merge request petsc/petsc!8959


# e1d0a54a 15-Jan-2026 Mark Adams <mfadams@lbl.gov>

added hook to turn off cubed sphere projection


# 2c56c125 30-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'adams/landau-mesh-bug' into 'main'

DMPlexLandau: mesh bug fix

See merge request petsc/petsc!8983


# d22a7610 28-Jan-2026 Mark Adams <mfadams@lbl.gov>

DMPlexLandau: mesh bug fix


# 9a8219ad 15-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'adams/landau-3d-mesh-opts' into 'main'

DMPlexLandau: 3d mesh opts

See merge request petsc/petsc!8955


# 3ecd1e40 15-Jan-2026 Mark Adams <524115-markadams4@users.noreply.gitlab.com>

DMPlexLandau: 3d mesh opts

API change in definition of radius in 3D; optimized cubed sphere projection of cube to sphere


# 6720ef8f 12-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'adams/landau-prefix-fix' into 'main'

fixing prefixes to get passed down in Landau

See merge request petsc/petsc!8951


# 641a6773 12-Jan-2026 Mark Adams <mfadams@lbl.gov>

opt 3d grids


# a8b63cc6 11-Jan-2026 Mark Adams <mfadams@lbl.gov>

added a new cubed sphere and optized 3d mesh params


# b1948a9b 10-Jan-2026 Mark Adams <mfadams@lbl.gov>

fixing prefixes to get passed down in Landau


# 15b083fc 07-Dec-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-gcc16-warnings' into 'main'

Fix -Wunused-but-set-variable

See merge request petsc/petsc!8887


# e60de12f 05-Dec-2025 Pierre Jolivet <pierre@joliv.et>

Fix -Wunused-but-set-variable

src/dm/dt/fe/interface/fe.c:2420:41: warning: variable ‘g’ set but not used [-Wunused-but-set-variable=]
2420 | PetscInt dOffset = 0, fOffset = 0, f, g;
|

Fix -Wunused-but-set-variable

src/dm/dt/fe/interface/fe.c:2420:41: warning: variable ‘g’ set but not used [-Wunused-but-set-variable=]
2420 | PetscInt dOffset = 0, fOffset = 0, f, g;
| ^
src/dm/field/impls/da/dmfieldda.c:31:17: warning: variable ‘c’ set but not used [-Wunused-but-set-variable=]
31 | PetscInt i, c, dim;
| ^
src/dm/impls/plex/plex.c:8007:28: warning: variable ‘newP’ set but not used [-Wunused-but-set-variable=]
8007 | for (PetscInt p = 0, newP = 0, o = fStart, oNew = fNewStart; p < numPoints; p++) {
| ^~~~
src/ts/utils/dmplexlandau/plexland.c:351:39: warning: variable ‘loc_fdf_idx’ set but not used [-Wunused-but-set-variable=]
351 | for (PetscInt ei_r = 0, loc_fdf_idx = 0; ei_r < numCells[grid_r]; ++ei_r) {
| ^~~~~~~~~~~

show more ...


# 834855d6 27-Aug-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/clang-format-21' into 'main'

clang-format-21

See merge request petsc/petsc!8202


# ac530a7e 03-Jun-2025 Pierre Jolivet <pierre@joliv.et>

Remove unnecessary braces around one-liners

git grep -lE "[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$" -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | xargs sed -i '' -E 's#([ ]*)(if|for|while) \((.*)\

Remove unnecessary braces around one-liners

git grep -lE "[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$" -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | xargs sed -i '' -E 's#([ ]*)(if|for|while) \((.*)\) {([^;]*);([^;]*)}$#\1\2 \(\3\)\4;\5#'

show more ...


# 966bd95a 25-May-2025 Pierre Jolivet <pierre@joliv.et>

Convert some SETERRQ() to PetscCheck()


# 3a7d0413 12-May-2025 Pierre Jolivet <pierre@joliv.et>

One-liners from petsc/petsc!5344 and petsc/petsc!5557

Slightly reworked regular expression

git ls-files -z -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | while IFS= read -r -d '' file; do
cat

One-liners from petsc/petsc!5344 and petsc/petsc!5557

Slightly reworked regular expression

git ls-files -z -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | while IFS= read -r -d '' file; do
cat $file | tr '\n' '\r' | sed -E 's/\r([ ]*)(for|if|while|else) ([^\r]*)\{\r[ ]*Petsc([a-zA-Z]*)\(([^\r]*)\);\r[ ]*\}\r/\r\1\2 \3Petsc\4(\5);\r/g' | tr '\r' '\n' > ${file}.joe; mv ${file}.joe ${file}
done

show more ...


# 5d3bc7be 21-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/clang-format-20' into 'main'

clang-format-20

See merge request petsc/petsc!7849


# 87fca844 27-Jul-2024 Pierre Jolivet <pierre@joliv.et>

Update to clang-format-20


# dd1ad842 11-Nov-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/deprecate_get_section' into 'main'

DM: Deprecate DM{Get,Set}Section

See merge request petsc/petsc!7997


# b98a7184 09-Nov-2024 James Wright <james@jameswright.xyz>

DM: Deprecate DM{Get,Set}Section

They were already replaced by DM{Get,Set}LocalSection back in 3.12, but
weren't deprecated for some reason


# 2e45e1b1 24-Oct-2024 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# e58947e7 22-Oct-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/cleanup_malloc' into 'release'

sys: Cleanup PetscMalloc and PetscCalloc

See merge request petsc/petsc!7892


# 32603206 02-Oct-2024 James Wright <james@jameswright.xyz>

Address potential Malloc/Calloc ternary operator bugs

- Bug either by the argument of the ternary operator being cast
inappropriately to `size_t` or by the values themselves not being cast
to `s

Address potential Malloc/Calloc ternary operator bugs

- Bug either by the argument of the ternary operator being cast
inappropriately to `size_t` or by the values themselves not being cast
to `size_t` when necessary.

show more ...


12345678910>>...12