Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breaking changes with PCU #433

Open
wants to merge 147 commits into
base: develop
Choose a base branch
from

Commits on Mar 28, 2023

  1. Add state to PCU mpi interface.

    This commit adds a MPI state that's separate from the global variables
    to the internal pcu_mpi interfaces. The user level PCU interface remains
    unchanged. However, this change lays the groundwork for PCU2 that will
    not make use of global state. This is important for some use cases like
    working around the spectrum-mpi comm_dup bug. The removal of global
    state also improves testability and modularity of this code.
    jacobmerson committed Mar 28, 2023
    Configuration menu
    Copy the full SHA
    feafdec View commit details
    Browse the repository at this point in the history
  2. Compile on gcc+fix bug

    jacobmerson committed Mar 28, 2023
    Configuration menu
    Copy the full SHA
    7c390ee View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. remove virtual function table for pcu_mpi

    Throughout the code base it was assumed that the mpi functions were
    implemented through pmpi and so no other implementation really could
    have been implemented. This change just removes the complexity
    from having the vtable.
    jacobmerson committed Mar 29, 2023
    Configuration menu
    Copy the full SHA
    a4bbbfb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    baf9370 View commit details
    Browse the repository at this point in the history
  3. Use consistent initialization functions for MPI.

    This commit allows the pcu_mpi to be initialized into a stack variable
    rather than allways allocating on the heap.
    jacobmerson committed Mar 29, 2023
    Configuration menu
    Copy the full SHA
    4c243cb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d891d2b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    de2f57d View commit details
    Browse the repository at this point in the history
  6. fix compiler warnings

    jacobmerson committed Mar 29, 2023
    Configuration menu
    Copy the full SHA
    6a46101 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2023

  1. constify mpi functions

    jacobmerson committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    ed28c05 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2eada4e View commit details
    Browse the repository at this point in the history
  3. remove unused functions

    jacobmerson committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    eed5a0c View commit details
    Browse the repository at this point in the history
  4. Fix gcc compilation

    jacobmerson committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    f0b3a28 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2023

  1. fix bug

    jacobmerson committed Mar 31, 2023
    Configuration menu
    Copy the full SHA
    0e7362f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e0c80e View commit details
    Browse the repository at this point in the history
  3. bump version

    jacobmerson committed Mar 31, 2023
    Configuration menu
    Copy the full SHA
    07ab364 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Add state to PCU mpi interface.

    This commit adds a MPI state that's separate from the global variables
    to the internal pcu_mpi interfaces. The user level PCU interface remains
    unchanged. However, this change lays the groundwork for PCU2 that will
    not make use of global state. This is important for some use cases like
    working around the spectrum-mpi comm_dup bug. The removal of global
    state also improves testability and modularity of this code.
    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    80c829d View commit details
    Browse the repository at this point in the history
  2. Compile on gcc+fix bug

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    2f6238c View commit details
    Browse the repository at this point in the history
  3. remove virtual function table for pcu_mpi

    Throughout the code base it was assumed that the mpi functions were
    implemented through pmpi and so no other implementation really could
    have been implemented. This change just removes the complexity
    from having the vtable.
    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    a5be7ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    064ea13 View commit details
    Browse the repository at this point in the history
  5. Use consistent initialization functions for MPI.

    This commit allows the pcu_mpi to be initialized into a stack variable
    rather than allways allocating on the heap.
    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    e727d54 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    47bf6d5 View commit details
    Browse the repository at this point in the history
  7. add PCU2.h to install files

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    ef021f6 View commit details
    Browse the repository at this point in the history
  8. fix compiler warnings

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    270d44e View commit details
    Browse the repository at this point in the history
  9. constify mpi functions

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    62bfb69 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    173c7ec View commit details
    Browse the repository at this point in the history
  11. remove unused functions

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    23c7cef View commit details
    Browse the repository at this point in the history
  12. Fix gcc compilation

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    438a73e View commit details
    Browse the repository at this point in the history
  13. fix bug

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    4fa6e37 View commit details
    Browse the repository at this point in the history
  14. remove unnecessary whitespace

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    716133e View commit details
    Browse the repository at this point in the history
  15. bump version

    jacobmerson authored and flagdanger committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    4d281e0 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #1 from flagdanger/pcu-object

    Pcu object rebase
    jacobmerson authored Jan 11, 2024
    Configuration menu
    Copy the full SHA
    625b02b View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    412addc View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    63bf279 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    b364118 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1010eb1 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. More PCU changes

    flagdanger committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    041b6f0 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. More fixing

    flagdanger committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    435172e View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. ph and pumi changes

    flagdanger committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    3f40db9 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. more cleaning

    flagdanger committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    b1e41ff View commit details
    Browse the repository at this point in the history
  2. test folder fixes

    flagdanger committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    a2cb48f View commit details
    Browse the repository at this point in the history
  3. More test folder fixes

    flagdanger committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    da4383d View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. Configuration menu
    Copy the full SHA
    3c7b447 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. Configuration menu
    Copy the full SHA
    2ec87e3 View commit details
    Browse the repository at this point in the history
  2. re-checking up to ma

    flagdanger committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    3101beb View commit details
    Browse the repository at this point in the history
  3. ma folder redo

    flagdanger committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    ee1d7e4 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. more fixes

    flagdanger committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    f13132e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    33a6621 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. Configuration menu
    Copy the full SHA
    8c5633a View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Reverting phasta changes

    flagdanger committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    eaeaa3d View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Configuration menu
    Copy the full SHA
    244a6d5 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. Configuration menu
    Copy the full SHA
    5206e77 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8e2cdb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    221a982 View commit details
    Browse the repository at this point in the history
  4. small pcu change

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    344e3c4 View commit details
    Browse the repository at this point in the history
  5. pcu_getglobal changes

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    5ee39e5 View commit details
    Browse the repository at this point in the history
  6. apfCap fix

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    cb971df View commit details
    Browse the repository at this point in the history
  7. crv fixes

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    2bb8171 View commit details
    Browse the repository at this point in the history
  8. dsp pcu fix

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    23bf889 View commit details
    Browse the repository at this point in the history
  9. gmi cap and sim pcu fixes

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    60e0b6f View commit details
    Browse the repository at this point in the history
  10. ma pcu fixes

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    63af137 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    98e9d71 View commit details
    Browse the repository at this point in the history
  12. pumi pcu fixes

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    6f49fb2 View commit details
    Browse the repository at this point in the history
  13. spr pcu fix

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    14d2e5e View commit details
    Browse the repository at this point in the history
  14. stk pcu fixes

    flagdanger committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    5f17c05 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    bc1ce6a View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. zoltan pcu fixes

    flagdanger committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    59d5a7f View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Configuration menu
    Copy the full SHA
    98341a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a0c53fc View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. made default PCU arguments for Mesh functions and fixed old pcu issue…

    …s, there are still some duplicate functions: loadMdsMesh, repeat, and expand that can be removed or made to take a default argument
    flagdanger committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    32ab95b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    530a82e View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. Configuration menu
    Copy the full SHA
    fda3f51 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. Configuration menu
    Copy the full SHA
    bdce405 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. Configuration menu
    Copy the full SHA
    9075f4b View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. changed phastaio_initStats to not check if PCU is intitialized. Also …

    …using PCUHandle and PCU2 in phiotimer.h
    flagdanger committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    efc2d77 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Configuration menu
    Copy the full SHA
    d424963 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9005de8 View commit details
    Browse the repository at this point in the history
  3. Parma folder fixes, only thing not changed is parma_group.cc, all tes…

    …ts pass. Making a new branch from here testing two different methods of fixing parma_group
    flagdanger committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    6bb2806 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Configuration menu
    Copy the full SHA
    6cbd11d View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Configuration menu
    Copy the full SHA
    000418e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd265d8 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. Configuration menu
    Copy the full SHA
    7f83066 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8469c37 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2b90da5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    961f09a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    daed911 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    946ba7c View commit details
    Browse the repository at this point in the history
  7. #include PCU.h deletion

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    8c28b15 View commit details
    Browse the repository at this point in the history
  8. spr folder fixes

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    7a99da1 View commit details
    Browse the repository at this point in the history
  9. 1d test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    99ad2db View commit details
    Browse the repository at this point in the history
  10. align test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    77cb68f View commit details
    Browse the repository at this point in the history
  11. aniso_ma_test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    1dc3a94 View commit details
    Browse the repository at this point in the history
  12. ansys test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    becd83a View commit details
    Browse the repository at this point in the history
  13. assert_timing test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    e591d9a View commit details
    Browse the repository at this point in the history
  14. balance test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    dc48ea7 View commit details
    Browse the repository at this point in the history
  15. bezierElevation test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    4624408 View commit details
    Browse the repository at this point in the history
  16. box test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    0a7ccec View commit details
    Browse the repository at this point in the history
  17. collapse test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    54cc6be View commit details
    Browse the repository at this point in the history
  18. poisson test file

    flagdanger committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    f6e5d7c View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. mdsCGNS PCUHandle fix

    flagdanger committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    5f0ef7e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6452f43 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8cb06bb View commit details
    Browse the repository at this point in the history
  4. Test files fixed

    flagdanger committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    f36021a View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2024

  1. Configuration menu
    Copy the full SHA
    0db8e21 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6f4c6df View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9900b46 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b0a6ff2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    52c9ab8 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Mesh interface fixes

    flagdanger committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    1eebc1e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94dcc92 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    7dbae41 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b03519 View commit details
    Browse the repository at this point in the history
  3. Delete config.sh

    flagdanger authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    00bf25e View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2 from flagdanger/pcu-object

    pcu-object changes
    jacobmerson authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    2f23fb1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    03eb93d View commit details
    Browse the repository at this point in the history
  6. Warning fixes

    flagdanger committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    ea3b36e View commit details
    Browse the repository at this point in the history
  7. Merge branch 'pcu-object' of https://github.com/flagdanger/core into …

    …pcu-object
    
    Merging pcu-object
    flagdanger committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    b2ae31a View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Merge pull request #3 from flagdanger/pcu-object

    pcu-object fixed warnings
    jacobmerson authored Apr 30, 2024
    Configuration menu
    Copy the full SHA
    d95cdcd View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    769c432 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. .github fix

    flagdanger committed May 6, 2024
    Configuration menu
    Copy the full SHA
    f96b764 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1e3d684 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. removed last uses of old pcu, removed pcu.cc and .h, got rid of defau…

    …lt nullptr PCUObj arguments
    flagdanger committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    e33b48d View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. small fixes

    flagdanger committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    0dd10d1 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. Configuration menu
    Copy the full SHA
    6e9a875 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. pumi_sys functions using pumi::instance to access PCU, added setPCU a…

    …nd getPCU functions to pumi::instance()
    flagdanger committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    deba052 View commit details
    Browse the repository at this point in the history
  2. added pumi_load_pcu to replace the use of setPCU, removed PCUObj as a…

    …n argument for pumi mesh creators
    flagdanger committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    687e160 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. apfSim typo fix

    flagdanger committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    7d57abc View commit details
    Browse the repository at this point in the history
  2. pumi_rank() replacements

    flagdanger committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    e90602f View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    55f887c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bfde63e View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. phLinks ptr issue fix

    flagdanger committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    a904f02 View commit details
    Browse the repository at this point in the history
  2. phasta convert fixes

    flagdanger committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    77812e5 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. test files small bugs

    flagdanger committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    a907b7e View commit details
    Browse the repository at this point in the history
  2. Revert "test files small bugs"

    This reverts commit a907b7e.
    flagdanger committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    8128e2a View commit details
    Browse the repository at this point in the history
  3. removed config file

    flagdanger committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    94549c7 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. PCU.h small fix

    flagdanger committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    73c5033 View commit details
    Browse the repository at this point in the history
  2. Delete config.sh

    flagdanger authored Aug 16, 2024
    Configuration menu
    Copy the full SHA
    90f9ff3 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Configuration menu
    Copy the full SHA
    236bffb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7025e62 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    90785ed View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6faa765 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. small fixes

    flagdanger committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    b5a2190 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. Typo cleaning

    flagdanger committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    85be809 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5b7413 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. Configuration menu
    Copy the full SHA
    d666a1e View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Configuration menu
    Copy the full SHA
    807746c View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. CGNS fixes

    flagdanger committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    7e4cd5a View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. cgns fixes

    flagdanger committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    6e47c85 View commit details
    Browse the repository at this point in the history