History log of /petsc/src/vec/is/tests/ex7.c (Results 1 – 8 of 8)
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 ...


# 732aec7a 22-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/remove-cast' into 'main'

Use NULL or nullptr instead of casted 0

See merge request petsc/petsc!7857


# c8025a54 21-Sep-2024 Pierre Jolivet <pierre@joliv.et>

Use NULL or nullptr instead of casted 0


# 7f7e2d37 21-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/firedrake' into 'main'

Element-by-element BDDC

See merge request petsc/petsc!7329


# d4df40f3 20-Mar-2024 Stefano Zampini <stefano.zampini@gmail.com>

Implement ISLocalToGlobalMappingGetBlockMultiLeavesSF


# c98904c8 18-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/isl2g' into 'main'

ISLocalToGlobalMapping: proper handling of multiple global indices per process

See merge request petsc/petsc!7381


# 633354d9 28-Feb-2024 Stefano Zampini <stefano.zampini@gmail.com>

ISLocalToGlobalMapping: new l2gmap info routines using PetscSF