<?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 ex28.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>4e8208cbcbc709572b8abe32f33c78b69c819375 - Merge branch &apos;barry/2026-01-13/ftn-generation-for-context-functions&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#4e8208cbcbc709572b8abe32f33c78b69c819375</link>
        <description>Merge branch &apos;barry/2026-01-13/ftn-generation-for-context-functions&apos; into &apos;main&apos;Fortran generation of interface definitions for functions that take and return context variables  (void *ctx and PetCtx ctx)See merge request petsc/petsc!8956

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Sat, 31 Jan 2026 18:41:18 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>2a8381b23c702518c6b1ccbeafee50b9375df0e4 - Add automatic generated fortran support for setting and returning contexts</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#2a8381b23c702518c6b1ccbeafee50b9375df0e4</link>
        <description>Add automatic generated fortran support for setting and returning contextsMajor 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 PetscCtxDestroyFnBoth of these are typedef to void*Also removed most use of user and userctx for context arguments now consistently named ctxImproved documentation on PetscCtx and PetscCtxRt and on how to use contexts (including getting them) from Fortran

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Tue, 13 Jan 2026 04:45:38 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>7307f5f486eb793bccb96258161f32863892bd17 - Merge branch &apos;knepley/feature-swarm-remap&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#7307f5f486eb793bccb96258161f32863892bd17</link>
        <description>Merge branch &apos;knepley/feature-swarm-remap&apos; into &apos;main&apos;Knepley/feature swarm remapSee merge request petsc/petsc!8054

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Mon, 16 Dec 2024 17:49:27 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>19307e5cf369b208f3c5d721c42c941e418b5101 - DSwarm: Add DMSwarmCellDM type</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#19307e5cf369b208f3c5d721c42c941e418b5101</link>
        <description>DSwarm: Add DMSwarmCellDM type- Vectors can be created from several fields- Each cell DM has a separate cellid field and sort context- Mass matrix can now handle multiple fields- Add DMSwarmCellDMCreate(), DMSwarmCellDMDestroy(), DMSwarmCellDMView(), DMSwarmCellDMGetDM(), DMSwarmCellDMGetFields(), DMSwarmCellDMGetCoordinateFields(), DMSwarmCellDMGetCellID(), DMSwarmCellDMGetSort(), DMSwarmCellDMSetSort(), and DMSwarmCellDMGetBlockSize()- Add DMSwarmAddCellDM(), DMSwarmSetCellDMActive(), and DMSwarmGetCellDMActive()- Add DMSwarmCreateGlobalVectorFromFields(), DMSwarmDestroyGlobalVectorFromFields(), DMSwarmCreateLocalVectorFromFields(), and DMSwarmDestroyLocalVectorFromFields()- Add DMSwarmSortDestroy()

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Fri, 13 Dec 2024 15:31:55 +0000</pubDate>
        <dc:creator>Matthew G. Knepley &lt;knepley@gmail.com&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/ts/tests/ex28.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/ts/tests/ex28.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>f4f49eeac7efa77fffa46b7ff95a3ed169f659ed - Remove multiple parentheses and extra semicolon</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#f4f49eeac7efa77fffa46b7ff95a3ed169f659ed</link>
        <description>Remove multiple parentheses and extra semicolongit grep -l -E &quot;\(\([a-zA-Z0-9_]+\)\(\*[a-zA-Z0-9_]+\)[, )]&quot; | xargs sed -r -i&apos;&apos; &apos;s#\(\(([a-zA-Z0-9_]+)\)\(\*([a-zA-Z0-9_]+)\)([, )])#\(\(\1\)\*\2\3#g&apos;git grep -l -E &quot;Petsc(.)*\(\(\*[a-zA-Z0-9_]*\),&quot; | xargs sed -r -i&apos;&apos; &apos;s#Petsc([a-zA-Z0-9_]*)\(\(\*([a-zA-Z0-9_]*)\), #Petsc\1(*\2, #g&apos;git grep -l -E &quot;([\!\&amp;\~\*\(]|\)\)|\([^,\*\(]+\**\))\(([a-zA-Z0-9_]+((\.|-&gt;)[a-zA-Z0-9_]+|\[[a-zA-Z0-9_ \%\+\*\-]+\])+)\)&quot; | xargs sed -r -i&apos;&apos; &apos;s#([\!\&amp;\~\*\(]|\)\)|\([^,\*\(]+\**\))\(([a-zA-Z0-9_]+((\.|-&gt;)[a-zA-Z0-9_]+|\[[a-zA-Z0-9_ \%\+\*\-]+\])+)\)#\1\2#g&apos;

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Sun, 11 Feb 2024 06:40:18 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>4d86920da9ee67c835173a5dfffa1b3a52fd24ca - checkbadSource: rules for PetscFunctionBegin and derivatives</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#4d86920da9ee67c835173a5dfffa1b3a52fd24ca</link>
        <description>checkbadSource: rules for PetscFunctionBegin and derivatives

            List of files:
            /petsc/src/ts/tests/ex28.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>37d05b0256c1e9ba4bc423c4eccb3df226931ef0 - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#37d05b0256c1e9ba4bc423c4eccb3df226931ef0</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Mon, 06 Feb 2023 02:59:22 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b877537e50727649205a89a9fd5768496ec808e7 - Merge branch &apos;jolivet/fix-typos&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#b877537e50727649205a89a9fd5768496ec808e7</link>
        <description>Merge branch &apos;jolivet/fix-typos&apos; into &apos;release&apos;Fix TyposSee merge request petsc/petsc!6024

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Sun, 05 Feb 2023 06:25:03 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>da81f9329be15cc55f054c8a00978087195c9247 - Fix Typos</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#da81f9329be15cc55f054c8a00978087195c9247</link>
        <description>Fix Typos

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Sun, 05 Feb 2023 06:25:02 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&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/ts/tests/ex28.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/ts/tests/ex28.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/ts/tests/ex28.c#3ba1676111f5c958fe6c2729b46ca4d523958bb3</link>
        <description>Make PetscErrorCode a non-discardable enum

            List of files:
            /petsc/src/ts/tests/ex28.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>7c7da2b83e71734329945dba88826c9d32c990b1 - Merge branch &apos;jacobf/2023-01-13/modernize-cleanup-petscsys-h&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#7c7da2b83e71734329945dba88826c9d32c990b1</link>
        <description>Merge branch &apos;jacobf/2023-01-13/modernize-cleanup-petscsys-h&apos; into &apos;main&apos;Modernize and clean up petscsys.hSee merge request petsc/petsc!5976

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Mon, 23 Jan 2023 21:53:46 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>f3fa974cd8ac3307c23c9d7e81b13b5f402f9e6e - Modernize and clean up petscsys.h</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#f3fa974cd8ac3307c23c9d7e81b13b5f402f9e6e</link>
        <description>Modernize and clean up petscsys.h- Deprecate PETSC_NULL.- Switch from preprocessor defines to anonymous enums for constant expressions.- Surround macro arguments in ().- Remove redundant casts.- Clean up overly complex preprocessor defines in various PetscMem*() functions.

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Fri, 13 Jan 2023 15:16:40 +0000</pubDate>
        <dc:creator>Jacob Faibussowitsch &lt;jacob.fai@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7d8d41174130c5f026eedd824145324e8381252a - Merge branch &apos;knepley/feature-ephemeral-mesh&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#7d8d41174130c5f026eedd824145324e8381252a</link>
        <description>Merge branch &apos;knepley/feature-ephemeral-mesh&apos; into &apos;main&apos;Plex: First implementation of ephemeral meshesSee merge request petsc/petsc!5738

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Mon, 17 Oct 2022 23:15:56 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>9f4ada1598380228c679a94df7f1b051b1b79bf6 - Plex: First implementation of ephemeral meshes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#9f4ada1598380228c679a94df7f1b051b1b79bf6</link>
        <description>Plex: First implementation of ephemeral meshes- Add DMPlexGet/RestoreOrientedCone()- Add a transform to Plex, which makes it an ephemeral mesh- Add depth information to PlexTransform- Fix filter transform- Fix Plex view for ephemeral meshes- Right now, check mesh-&gt;tr for an ephemeral mesh, but later we couldmake a subclass- Remove DMPlexAddConeSize()

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Wed, 12 Oct 2022 12:30:58 +0000</pubDate>
        <dc:creator>Matthew G. Knepley &lt;knepley@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/ts/tests/ex28.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/ts/tests/ex28.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/ts/tests/ex28.c#d71ae5a4db6382e7f06317b8d368875286fe9008</link>
        <description>source code format changes due to .clang-format changes

            List of files:
            /petsc/src/ts/tests/ex28.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>f0af967ec07b491a4e17a7fbc1f9d6a783342afb - Merge branch &apos;jolivet/fix-style-one-liners&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#f0af967ec07b491a4e17a7fbc1f9d6a783342afb</link>
        <description>Merge branch &apos;jolivet/fix-style-one-liners&apos; into &apos;main&apos;Remove braces from one-liners w/o PetscCall()See merge request petsc/petsc!5561

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Mon, 29 Aug 2022 04:54:57 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>ad540459ab38c4a232710a68077e487eb6627fe2 - Remove braces from one-liners w/o PetscCall()</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/ts/tests/ex28.c#ad540459ab38c4a232710a68077e487eb6627fe2</link>
        <description>Remove braces from one-liners w/o PetscCall()

            List of files:
            /petsc/src/ts/tests/ex28.c</description>
        <pubDate>Mon, 29 Aug 2022 04:54:57 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
</channel>
</rss>
