History log of /petsc/src/snes/impls/ngmres/ngmresfunc.c (Results 1 – 25 of 121)
Revision Date Author Comments
# bd89dbf2 07-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-12-24/improve-snes-domain-error-handling' into 'main'

Improve the propagation of function domain error handling in SNES, especially...

See merge request petsc/petsc!8914


# 76c63389 24-Dec-2025 Barry Smith <bsmith@mcs.anl.gov>

Improve the propagation of function domain error handling in SNES, especially in the line search routines.

Due to the object layering of SNESLineSearch under SNES there is some code duplication incl

Improve the propagation of function domain error handling in SNES, especially in the line search routines.

Due to the object layering of SNESLineSearch under SNES there is some code duplication include both SNESLineSearchReason and SNESConvergedReason and SNESCheckFunctionNorm() and SNESLineSearchCheckFunctionNorm() and Jacobian friends

Reported-by: david.knezevic@akselos.com

show more ...


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

Merge branch 'sneslinesearch-improvements' into 'main'

SNESLinesearch: Minor improvements

See merge request petsc/petsc!8630


# a99ef635 27-Aug-2025 Jonas Heinzmann <jheinzmann@ethz.ch>

SNESLinesearch: Minor improvements

- add missing configuration options in the documentation of the line searches (some of the available options were not listed), and consistently list their respecti

SNESLinesearch: Minor improvements

- add missing configuration options in the documentation of the line searches (some of the available options were not listed), and consistently list their respective default values

- add proper convergence criteria for the secant method in the L2 line search based on ltol and atol (otherwise, the secant method is mostly running for the maximum number of iterations)

- fix a small bug in the CP line search, where steptol * lambda was used to check for convergence based on the change of lambda instead of the ltol parameter

- rename sneslinesearch->maxstep to sneslinesearch->maxlambda in the options database to be consistent with its purpose in the algorithms

- rename SNESLineSearchL2 to SNESLineSearchSecant to better represent its underlying approach

show more ...


# 14e7b07e 21-Jun-2024 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# fa1d25a6 18-Jun-2024 Satish Balay <balay@mcs.anl.gov>

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

petsc4py missing API and minor SNES optimizations

See merge request petsc/petsc!7626


# 647c55fd 10-Jun-2024 Stefano Zampini <stefano.zampini@gmail.com>

SNESNGMRES: minor optimizations


# f22e6e19 04-Jun-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-05-29/fix-snes-fn' into 'main'

Fix a few locations where SNESFunctionFN and SNESObjectiveFn were not used

See merge request petsc/petsc!7588


# 6b72add0 29-May-2024 Barry Smith <bsmith@mcs.anl.gov>

Fix a few locations where SNESFunctionFN and SNESObjectiveFn were not used


# 4d179fb4 19-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/add-matmatsolvetranspose_seqaij' into 'main'

MatMatSolveTranspose_SeqAIJ and minor housekeeping

See merge request petsc/petsc!7386


# dd8e379b 19-Mar-2024 Pierre Jolivet <pierre@joliv.et>

Docs: fix missing or extra dash in right-hand side


# de56e480 19-Dec-2023 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 909ba545 19-Dec-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'RECHE23/fix-SNESGetSolutionUpdate-anderson-ngmres' into 'release'

Fix an issue where SNESGetSolutionUpdate doesn't return the right value for anderson and ngmres SNES types.

See merge

Merge branch 'RECHE23/fix-SNESGetSolutionUpdate-anderson-ngmres' into 'release'

Fix an issue where SNESGetSolutionUpdate doesn't return the right value for anderson and ngmres SNES types.

See merge request petsc/petsc!7081

show more ...


# 5ef867c2 04-Dec-2023 René Chenard <rene.chenard.1@ulaval.ca>

Fix an issue where SNESGetSolutionUpdate doesn't return the right value for anderson and ngmres SNES types.


# b3b04bfa 27-Oct-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/ngmres-objective' into 'main'

Support objective functions in SNESNGMRES

See merge request petsc/petsc!6957


# 4936d809 23-Oct-2023 Stefano Zampini <stefano.zampini@gmail.com>

SNESNGMRES: support objective functions

Removed some PetscSqrtReal calls.
I don't understand why PetscSqrtReal(norm) was used.
The norm is already the result of a sqrt
Some testing output has improv

SNESNGMRES: support objective functions

Removed some PetscSqrtReal calls.
I don't understand why PetscSqrtReal(norm) was used.
The norm is already the result of a sqrt
Some testing output has improved (probably it was a bug?)
add tests for objective functions in TAO

show more ...


# 31d78bcd 02-Feb-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-12-10/petscerrorcode-nodiscard' into 'main'

Feature: Non-discardable PetscErrorCode

See merge request petsc/petsc!5923


# 3ba16761 10-Dec-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

Make PetscErrorCode a non-discardable enum


# 061e922f 22-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-09-21/2-bike-2-shed' into 'main'

Feature: Bicycle Storage Facility 2

See merge request petsc/petsc!5661


# d71ae5a4 21-Sep-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

source code format changes due to .clang-format changes


# f0af967e 29-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-style-one-liners' into 'main'

Remove braces from one-liners w/o PetscCall()

See merge request petsc/petsc!5561


# ad540459 29-Aug-2022 Pierre Jolivet <pierre@joliv.et>

Remove braces from one-liners w/o PetscCall()


# 38f67375 27-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-style-one-liners' into 'main'

Remove braces from one-liners

See merge request petsc/petsc!5557


# 48a46eb9 27-Aug-2022 Pierre Jolivet <pierre@joliv.et>

Remove braces from one-liners


# 58d68138 23-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-08-21/clang-format-source' into 'main'

format repository with clang-format

See merge request petsc/petsc!5541


12345