History log of /petsc/src/dm/impls/plex/tests/ex95.c (Results 1 – 6 of 6)
Revision Date Author Comments
# 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


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


# 27f6a0ef 25-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'bourdin/exodusii-64bit' into 'main'

exodusii: add PetscExodusIIInt, PetscExodusIIFloat, fixes src/dm/impls/plex/tests/ex26 with 64bit build

See merge request petsc/petsc!7824


# 0a5cf5d8 25-Sep-2024 Blaise Bourdin <bourdin@mcmaster.ca>

exodusii: add PetscExodusIIInt, PetscExodusIIFloat, fixes src/dm/impls/plex/tests/ex26 with 64bit build


# a82fbe4e 09-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'ahmed/exodusii-improvements' into 'main'

ExodusII: cache variable names

See merge request petsc/petsc!7705


# 49c89c76 09-Sep-2024 Blaise Bourdin <bourdin@mcmaster.ca>

PetscViewer_ExodusII: Allow the viewer to set and query the name and number of variables (results) stored in an exodusII file. Cache this information to avoid repeated calls to exodusII functions.

A

PetscViewer_ExodusII: Allow the viewer to set and query the name and number of variables (results) stored in an exodusII file. Cache this information to avoid repeated calls to exodusII functions.

And update to use exodusII-v2024-06-27

Co-authored-by: Sarah Ahmed ahmes134@mcmaster.ca

show more ...