History log of /petsc/src/ts/impls/bdf/bdf.c (Results 1 – 25 of 119)
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 ...


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

Merge remote-tracking branch 'origin/release'


# 6301bd5f 07-Dec-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-12-02/docs-ts-minor/release' into 'release'

Improve some manual pages for TS

See merge request petsc/petsc!8878


# efa39862 03-Dec-2025 Barry Smith <bsmith@mcs.anl.gov>

Improve some manual pages for TS


# 941063a0 16-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# d56401d0 12-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/ts-snes-fixes' into 'release'

Miscellaneous fixes for TS and SNES with domain errors

See merge request petsc/petsc!8770


# e4b02790 07-Oct-2025 Stefano Zampini <stefano.zampini@gmail.com>

TSBDF: bugfix

when the previous time step has been rejected the initial guess for SNES is not updated when not extrapolating


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


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

Merge branch 'MarDiehl/fix-typo' into 'main'

missing "s" for isascii and issundials

See merge request petsc/petsc!8559


# 9f196a02 17-Jul-2025 Martin Diehl <mail@martin-diehl.net>

missing "s" for isascii and issundials


# f409f0aa 08-May-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/tsex30' into 'main'

TS ex30 improvements

See merge request petsc/petsc!7819


# 99e85243 09-Mar-2025 Stefano Zampini <stefano.zampini@gmail.com>

TSBDF: add option to not extrapolate initial guess


# 6d8694c4 20-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-04-29/add-fortran-enums' into 'main'

Major updates to Fortran interface

See merge request petsc/petsc!7517


# ce78bad3 20-Feb-2025 Barry Smith <bsmith@petsc.dev>

Fortran 90: fully embrace After 34 years!

- deprecate use of 'F90' in Fortran function names
- use Fortran pointers when appropriate
- the new Fortran API is not backward compatible with previous ve

Fortran 90: fully embrace After 34 years!

- deprecate use of 'F90' in Fortran function names
- use Fortran pointers when appropriate
- the new Fortran API is not backward compatible with previous versions!
- also clean up inconsistent PETSc code detected by new Fortran generation tools
- drop use of bfort
- automatically generate all the Fortran PETSc objects, enums etc from the include files
- generate most of the Fortran interface definitions and functions from the source code
- simplify the number and organization of Fortran modules

Co-authored-by: Jose E. Roman <jroman@dsic.upv.es>

show more ...


# 091245a6 05-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/ts-be' into 'main'

BDF1 must be equivalent to TSBEULER

See merge request petsc/petsc!8173


# 3db8ccc7 02-Mar-2025 Stefano Zampini <stefano.zampini@gmail.com>

TSBDF: do not take half step for backward Euler


# b9169a8d 20-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/tsresize-errorind' into 'main'

TSSetResize: support error indicators

See merge request petsc/petsc!7368


# ecc87898 20-Jan-2024 Stefano Zampini <stefano.zampini@gmail.com>

TSSetResize: support remeshing with step restart


# c61711c8 20-Jan-2024 Stefano Zampini <stefano.zampini@gmail.com>

TS: save solution and time step at the beginning of the step

remove SNES monitor output from ex9bus example since it is numerically unstable
Just error in case SNES does not converge


# 43661681 24-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-07-17/used-petsc-static-array-lenght' into 'main'

Fix the places that should be using PETSC_STATIC_ARRAY_LENGTH

See merge request petsc/petsc!6724


# 400f6f02 18-Jul-2023 Barry Smith <bsmith@mcs.anl.gov>

Fix the places that should be using PETSC_STATIC_ARRAY_LENGTH


# cfd92c66 22-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'tisaac/feature-type-generic-petsc-valid-pointer' into 'main'

Implement a type generic PetscValidPointer

See merge request petsc/petsc!6693


12345