<?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 parmmgadapt.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>d9126033840fa4b9e125cadad06c85976e6bf099 - Merge branch &apos;jrwrigh/cgns_bc_writing&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#d9126033840fa4b9e125cadad06c85976e6bf099</link>
        <description>Merge branch &apos;jrwrigh/cgns_bc_writing&apos; into &apos;main&apos;Plex: CGNS files write and read boundary conditions and face label informationSee merge request petsc/petsc!8934

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Fri, 13 Feb 2026 20:50:17 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>ec93882d363868a0b3a27c512b64b4fbd0a19043 - fix(dm): CreateFromCellListParallel allocates verticesAdj for the user</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#ec93882d363868a0b3a27c512b64b4fbd0a19043</link>
        <description>fix(dm): CreateFromCellListParallel allocates verticesAdj for the userUnder normal circumstances, the user will not know the number of uniquevertices in the element connectivity

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Sat, 03 Jan 2026 23:06:34 +0000</pubDate>
        <dc:creator>James Wright &lt;james@jameswright.xyz&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/dm/impls/plex/adaptors/parmmg/parmmgadapt.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/dm/impls/plex/adaptors/parmmg/parmmgadapt.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/dm/impls/plex/adaptors/parmmg/parmmgadapt.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/dm/impls/plex/adaptors/parmmg/parmmgadapt.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>3a7d0413a690b3ac55568f51e4c3dc23a888f57d - One-liners from petsc/petsc!5344 and petsc/petsc!5557</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#3a7d0413a690b3ac55568f51e4c3dc23a888f57d</link>
        <description>One-liners from petsc/petsc!5344 and petsc/petsc!5557Slightly reworked regular expressiongit ls-files -z -- &apos;*.c&apos; &apos;*.cxx&apos; &apos;*.cu&apos; &apos;*.h&apos; &apos;*.hpp&apos; &apos;*.cpp&apos; | while IFS= read -r -d &apos;&apos; file; do    cat $file | tr &apos;\n&apos; &apos;\r&apos; | sed -E &apos;s/\r([ ]*)(for|if|while|else) ([^\r]*)\{\r[ ]*Petsc([a-zA-Z]*)\(([^\r]*)\);\r[ ]*\}\r/\r\1\2 \3Petsc\4(\5);\r/g&apos; | tr &apos;\r&apos; &apos;\n&apos; &gt; ${file}.joe; mv ${file}.joe ${file}done

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Mon, 12 May 2025 18:15:37 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>d8e47b638cf8f604a99e9678e1df24f82d959cd7 - Merge branch &apos;barry/2024-09-02/rebased-fix-conversion-warnings&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#d8e47b638cf8f604a99e9678e1df24f82d959cd7</link>
        <description>Merge branch &apos;barry/2024-09-02/rebased-fix-conversion-warnings&apos; into &apos;main&apos;Compiler finds (and forbid) casts from higher precision integers to lowerSee merge request petsc/petsc!7806

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Tue, 17 Sep 2024 21:30:20 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>6497c311e7b976d467be1503c1effce92a60525c - Add to CI compilers flags &apos;-Wconversion&apos;, &apos;-Wno-sign-conversion&apos;, &apos;-Wno-float-conversion&apos;, &apos;-Wno-implicit-float-conversion&apos;]</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#6497c311e7b976d467be1503c1effce92a60525c</link>
        <description>Add to CI compilers flags &apos;-Wconversion&apos;, &apos;-Wno-sign-conversion&apos;, &apos;-Wno-float-conversion&apos;, &apos;-Wno-implicit-float-conversion&apos;]Also fix the code to repository to compile cleanly with these flags in the CI

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Sun, 25 Aug 2024 03:44:46 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>20d74df88af78cf239765e951b0c2c4c70a8db03 - Merge branch &apos;jwallwork23/parmmg-halo-handling&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#20d74df88af78cf239765e951b0c2c4c70a8db03</link>
        <description>Merge branch &apos;jwallwork23/parmmg-halo-handling&apos; into &apos;main&apos;Fix ParMmg interface for overlaps (take 2)See merge request petsc/petsc!7593

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Fri, 28 Jun 2024 04:28:56 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>8a7f912ab8467fae8fe0f39ed87215e84b6a29d1 - Fix parmmg interface for overlapping halos</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#8a7f912ab8467fae8fe0f39ed87215e84b6a29d1</link>
        <description>Fix parmmg interface for overlapping halos

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Mon, 21 Nov 2022 15:13:40 +0000</pubDate>
        <dc:creator>Stephan Kramer &lt;s.kramer@imperial.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>970231d20df44f79b27787157e39d441e79f434b - Merge branch &apos;jolivet/clang-format-18&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#970231d20df44f79b27787157e39d441e79f434b</link>
        <description>Merge branch &apos;jolivet/clang-format-18&apos; into &apos;main&apos;clang-format version 18See merge request petsc/petsc!6902

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Thu, 07 Mar 2024 12:36:17 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>4d86920da9ee67c835173a5dfffa1b3a52fd24ca - checkbadSource: rules for PetscFunctionBegin and derivatives</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#4d86920da9ee67c835173a5dfffa1b3a52fd24ca</link>
        <description>checkbadSource: rules for PetscFunctionBegin and derivatives

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Sat, 10 Feb 2024 08:07:08 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>597312bb6c345b23a699f9b4a0709e000a8fd5d1 - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#597312bb6c345b23a699f9b4a0709e000a8fd5d1</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Tue, 02 May 2023 23:33:12 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>7168d968c8ec57a99e271b109d7a3463ed3a5e80 - Merge branch &apos;stefanozampini/fix-setinf&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#7168d968c8ec57a99e271b109d7a3463ed3a5e80</link>
        <description>Merge branch &apos;stefanozampini/fix-setinf&apos; into &apos;release&apos;Fixes for -fp_trapSee merge request petsc/petsc!6372

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Tue, 02 May 2023 23:29:51 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b3377c29d6b37e63a50383824efed1206340479f - MMG: fixes for FPE</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#b3377c29d6b37e63a50383824efed1206340479f</link>
        <description>MMG: fixes for FPE

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Mon, 01 May 2023 13:37:07 +0000</pubDate>
        <dc:creator>Stefano Zampini &lt;stefano.zampini@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>31d78bcd2b98084dc1368b20eb1129c8b9fb39fe - Merge branch &apos;jacobf/2022-12-10/petscerrorcode-nodiscard&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#31d78bcd2b98084dc1368b20eb1129c8b9fb39fe</link>
        <description>Merge branch &apos;jacobf/2022-12-10/petscerrorcode-nodiscard&apos; into &apos;main&apos;Feature: Non-discardable PetscErrorCodeSee merge request petsc/petsc!5923

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Thu, 02 Feb 2023 20:39:47 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>3ba1676111f5c958fe6c2729b46ca4d523958bb3 - Make PetscErrorCode a non-discardable enum</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#3ba1676111f5c958fe6c2729b46ca4d523958bb3</link>
        <description>Make PetscErrorCode a non-discardable enum

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Sat, 10 Dec 2022 18:29:11 +0000</pubDate>
        <dc:creator>Jacob Faibussowitsch &lt;jacob.fai@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>061e922f3926be00487707c73b78dd3d40309129 - Merge branch &apos;jacobf/2022-09-21/2-bike-2-shed&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#061e922f3926be00487707c73b78dd3d40309129</link>
        <description>Merge branch &apos;jacobf/2022-09-21/2-bike-2-shed&apos; into &apos;main&apos;Feature: Bicycle Storage Facility 2See merge request petsc/petsc!5661

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Thu, 22 Sep 2022 02:09:24 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>d71ae5a4db6382e7f06317b8d368875286fe9008 - source code format changes due to .clang-format changes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#d71ae5a4db6382e7f06317b8d368875286fe9008</link>
        <description>source code format changes due to .clang-format changes

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Wed, 21 Sep 2022 21:15:28 +0000</pubDate>
        <dc:creator>Jacob Faibussowitsch &lt;jacob.fai@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ea9c306e3db43573beece811409ae7bd4a893e1a - Merge branch &apos;jolivet/update-mmg&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#ea9c306e3db43573beece811409ae7bd4a893e1a</link>
        <description>Merge branch &apos;jolivet/update-mmg&apos; into &apos;main&apos;[Par]Mmg: update version and add citationSee merge request petsc/petsc!5650

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Mon, 19 Sep 2022 12:46:30 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b2c4de1d22ff155d2c936e49c947998b8cbd29f0 - [Par]Mmg: update version and add citation</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c#b2c4de1d22ff155d2c936e49c947998b8cbd29f0</link>
        <description>[Par]Mmg: update version and add citation

            List of files:
            /petsc/src/dm/impls/plex/adaptors/parmmg/parmmgadapt.c</description>
        <pubDate>Sun, 18 Sep 2022 06:06:27 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
</channel>
</rss>
