History log of /petsc/src/ksp/pc/impls/bddc/bddcprivate.c (Results 1 – 25 of 1076)
Revision Date Author Comments
# ae1ee551 23-Feb-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/more-petscdefined' into 'main'

Minor housekeeping

See merge request petsc/petsc!9058


# fc2fb351 21-Feb-2026 Pierre Jolivet <pierre@joliv.et>

Switch some defined(PETSC_ to PetscDefined(


# 2daea058 18-Feb-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'pcfieldsplit_mr' into 'main'

Added `PCMatApply()` to `PCFIELDSPLIT` and `MatDenseScatter_Private()`

See merge request petsc/petsc!8986


# ee25009c 15-Feb-2026 Boris Martin <boris.martin@uliege.be>

PC[BDDC|HPDDM]: switch to MatDenseScatter_Private()


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


# 62ed4282 09-Dec-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/oxford' into 'main'

Plex enhancement for firedrake

See merge request petsc/petsc!8876


# d7974de0 26-Nov-2025 Stefano Zampini <stefano.zampini@gmail.com>

PCBDDCSetUpCorrection: do not use the factored matrix if KSP is not preonly


# 8577b683 05-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# fe1fb33a 01-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/typos' into 'release'

Fix typos

See merge request petsc/petsc!8753


# 8c5add6a 01-Oct-2025 Pierre Jolivet <pierre@joliv.et>

Fix typos


# 2286efdd 25-Sep-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-07-30/fix-matshellsetoperationarg' into 'main'

Complete usage of PetscVoidFn and PetscErrorCodeFn and introduce PetscFortranCallbackFn

See merge request petsc/petsc!8615


# 57d50842 31-Jul-2025 Barry Smith <bsmith@mcs.anl.gov>

Change use of void (*)(void) and void (**)(void) in the PETSc API to PetscVoidFn * and PetscVoidFn ** or PetscErrorCodeFn * or PetscErrorCodeFn **


# 8112c1cb 22-Sep-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-09-04/deprecate-mpiu-bool' into 'main'

Deprecate MPIU_BOOL which used to be for PETSc's enum Bool but now is just MPI_C_BOOL

See merge request petsc/petsc!8691


# 5440e5dc 04-Sep-2025 Barry Smith <bsmith@mcs.anl.gov>

Deprecate MPIU_BOOL which used to be for PETSc' enum Bool but now is just MPI_C_BOOL so no longer needs its own name


# f0d2bb25 03-Sep-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/improve-bddc-multielement' into 'main'

Improve BDDC multi-element

See merge request petsc/petsc!8608


# a75bf7bf 13-Aug-2025 Stefano Zampini <stefano.zampini@gmail.com>

BDDC: import nedelec constraints if user specified


# 7b103a85 08-Aug-2025 Stefano Zampini <stefano.zampini@gmail.com>

PCBDDC: allow customizing PtAP operation for change of basis


# 732a5147 08-Aug-2025 Stefano Zampini <stefano.zampini@gmail.com>

PCBDDC: improve sparsity of Nedelec change of basis


# b96ec092 29-Jul-2025 Stefano Zampini <stefano.zampini@gmail.com>

PCBDDC: optimize default coarse solver and fix multi_element case


# ac7f1a8b 28-Jul-2025 Stefano Zampini <stefano.zampini@gmail.com>

MATIS: simplify and improve assembly of a MATIS into a AIJ


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


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


# 6a97282b 24-Jul-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


12345678910>>...44