<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in ls.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>bd89dbf26d8a5efecb980364933175da61864cd7 - Merge branch &apos;barry/2025-12-24/improve-snes-domain-error-handling&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#bd89dbf26d8a5efecb980364933175da61864cd7</link>
        <description>Merge branch &apos;barry/2025-12-24/improve-snes-domain-error-handling&apos; into &apos;main&apos;Improve the propagation of function domain error handling in SNES, especially...See merge request petsc/petsc!8914

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Wed, 07 Jan 2026 17:10:44 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>76c6338944e4871467ad7a763eee41b62845c2b0 - Improve the propagation of function domain error handling in SNES, especially in the line search routines.</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#76c6338944e4871467ad7a763eee41b62845c2b0</link>
        <description>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 friendsReported-by: david.knezevic@akselos.com

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Wed, 24 Dec 2025 15:15:19 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>5ff6d247539c86491dc822dc7e845e819e6cc4a3 - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#5ff6d247539c86491dc822dc7e845e819e6cc4a3</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Fri, 24 Oct 2025 06:15:48 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>092d26fbb49b0c2ab2055d7124d54ee3d7e7ed61 - Merge branch &apos;jolivet/fix-arrays&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#092d26fbb49b0c2ab2055d7124d54ee3d7e7ed61</link>
        <description>Merge branch &apos;jolivet/fix-arrays&apos; into &apos;release&apos;Fix error in MatTransposeMatMultSymbolic() in case of empty rowsSee merge request petsc/petsc!8773

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Thu, 23 Oct 2025 20:08:07 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b231e74691c88e8df3e296d12d28773cd2f747af - Remove dead code</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#b231e74691c88e8df3e296d12d28773cd2f747af</link>
        <description>Remove dead code

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Thu, 09 Oct 2025 04:04:39 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>834855d6effb0d027771461c8e947ee1ce5a1e17 - Merge branch &apos;jolivet/clang-format-21&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#834855d6effb0d027771461c8e947ee1ce5a1e17</link>
        <description>Merge branch &apos;jolivet/clang-format-21&apos; into &apos;main&apos;clang-format-21See merge request petsc/petsc!8202

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Wed, 27 Aug 2025 20:14:46 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>ac530a7e429a3ef5a9263376acf6071236a5db98 - Remove unnecessary braces around one-liners</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#ac530a7e429a3ef5a9263376acf6071236a5db98</link>
        <description>Remove unnecessary braces around one-linersgit grep -lE &quot;[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$&quot; -- &apos;*.c&apos; &apos;*.cxx&apos; &apos;*.cu&apos; &apos;*.h&apos; &apos;*.hpp&apos; &apos;*.cpp&apos; | xargs sed -i &apos;&apos; -E &apos;s#([ ]*)(if|for|while) \((.*)\) {([^;]*);([^;]*)}$#\1\2 \(\3\)\4;\5#&apos;

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Tue, 03 Jun 2025 13:10:33 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>bcda9346efad4e5ba2d553af84eb238771ba1e25 - Merge branch &apos;MarDiehl/fix-typo&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#bcda9346efad4e5ba2d553af84eb238771ba1e25</link>
        <description>Merge branch &apos;MarDiehl/fix-typo&apos; into &apos;main&apos;missing &quot;s&quot; for isascii and issundialsSee merge request petsc/petsc!8559

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Wed, 27 Aug 2025 20:05:52 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>9f196a0264fbaf0568fead3a30c861c7ae4cf663 - missing &quot;s&quot; for isascii and issundials</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#9f196a0264fbaf0568fead3a30c861c7ae4cf663</link>
        <description>missing &quot;s&quot; for isascii and issundials

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Thu, 17 Jul 2025 22:45:54 +0000</pubDate>
        <dc:creator>Martin Diehl &lt;mail@martin-diehl.net&gt;</dc:creator>
    </item>
<item>
        <title>24676f2a9731969d4e2872adbcfa46b47a966276 - Merge branch &apos;jolivet/rm-useless-code&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#24676f2a9731969d4e2872adbcfa46b47a966276</link>
        <description>Merge branch &apos;jolivet/rm-useless-code&apos; into &apos;main&apos;Remove useless functionsSee merge request petsc/petsc!8101

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Tue, 28 Jan 2025 15:01:05 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b7103cf4eb287f8188bade9542adf9c88f424423 - Remove useless functions</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#b7103cf4eb287f8188bade9542adf9c88f424423</link>
        <description>Remove useless functions

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Mon, 27 Jan 2025 20:14:00 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>5a236de668401f703e133ea891e0305529ed6f83 - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#5a236de668401f703e133ea891e0305529ed6f83</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Mon, 21 Oct 2024 15:10:28 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>3dfbe9475b8ac2eb501273427771db05d606d198 - Merge branch &apos;barry/2024-10-15/fix-reinitializing-snes-options/release&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#3dfbe9475b8ac2eb501273427771db05d606d198</link>
        <description>Merge branch &apos;barry/2024-10-15/fix-reinitializing-snes-options/release&apos; into &apos;release&apos;Fix handling of resetting SNES parameters in corner caseSee merge request petsc/petsc!7945

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Fri, 18 Oct 2024 19:40:00 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>0058e31da5457bf1c5638b1334e0281da385ec13 - Improve manual page formatting</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#0058e31da5457bf1c5638b1334e0281da385ec13</link>
        <description>Improve manual page formatting

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Tue, 15 Oct 2024 21:36:40 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>11c8a98f607708dcee13afcc724c3f833fe66e89 - Merge branch &apos;release-revert-7765&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#11c8a98f607708dcee13afcc724c3f833fe66e89</link>
        <description>Merge branch &apos;release-revert-7765&apos;

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Wed, 28 Aug 2024 02:11:02 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>c1ab0596325762d4cfce453f4d2bb12fd51805d6 - Merge branch &apos;barry/2024-08-18/fix-linesearch-update-model-params-at-newton-steps/release&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#c1ab0596325762d4cfce453f4d2bb12fd51805d6</link>
        <description>Merge branch &apos;barry/2024-08-18/fix-linesearch-update-model-params-at-newton-steps/release&apos; into &apos;release&apos;If one is updating the model parameters (and hence changing the f(x) at each...See merge request petsc/petsc!7772

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Mon, 26 Aug 2024 12:50:12 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>3238a83e7654267dc2e6c1efe4b2c4878820316c - If one is updating the model parameters (and hence changing the f(x) at each Newton step (with SNESSetUpdate())) the norm of f used by the line search must be updated or otherwise the line search will use the previous fnorm which may be very small and so no sufficient reduction can take place.</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#3238a83e7654267dc2e6c1efe4b2c4878820316c</link>
        <description>If one is updating the model parameters (and hence changing the f(x) at each Newton step (with SNESSetUpdate())) the norm of f used by the line search must be updated or otherwise the line search will use the previous fnorm which may be very small and so no sufficient reduction can take place.The extra Norm is a no-op unless the vector has been changed by the user since vectors cache their normsReported-by: Teferra, Kirubel

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Sun, 18 Aug 2024 16:25:23 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>ec42381fdf5bb48a6ea45cf3b5c9e6ed3c5f82db - Merge branch &apos;barry/2024-06-15/deprecate-petsc-current&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#ec42381fdf5bb48a6ea45cf3b5c9e6ed3c5f82db</link>
        <description>Merge branch &apos;barry/2024-06-15/deprecate-petsc-current&apos; into &apos;main&apos;Deprecate the use of PETSC_DEFAULT with PETSC_CURRENT since PETSC_DEFAULT is a...See merge request petsc/petsc!7634

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Sat, 20 Jul 2024 22:06:39 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>77e5a1f9fcfc1cfeb1010ff17041dc1a220acc3c - Update SNESSetTolerances() to accept PETSC_DETERMINE an PETSC_DECIDE</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#77e5a1f9fcfc1cfeb1010ff17041dc1a220acc3c</link>
        <description>Update SNESSetTolerances() to accept PETSC_DETERMINE an PETSC_DECIDE

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Sun, 16 Jun 2024 01:40:17 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>f22e6e192cb88cac24c9303f25d5ca424a64a914 - Merge branch &apos;barry/2024-05-29/fix-snes-fn&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/snes/impls/ls/ls.c#f22e6e192cb88cac24c9303f25d5ca424a64a914</link>
        <description>Merge branch &apos;barry/2024-05-29/fix-snes-fn&apos; into &apos;main&apos;Fix a few locations where SNESFunctionFN and SNESObjectiveFn were not usedSee merge request petsc/petsc!7588

            List of files:
            /petsc/src/snes/impls/ls/ls.c</description>
        <pubDate>Tue, 04 Jun 2024 22:05:38 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
</channel>
</rss>
