Skip to content

Commit a80ef5e

Browse files
authored
Merge pull request #2224 from su2code/develop
update master
2 parents 6027069 + 8ef4b1b commit a80ef5e

File tree

1,039 files changed

+11771
-4303
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,039 files changed

+11771
-4303
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ BasedOnStyle: Google
22
PointerAlignment: Left
33
DerivePointerAlignment: false
44
ColumnLimit: 120
5-
SortIncludes: Never
5+
SortIncludes: false

.github/workflows/code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
- name: Setup python
1717
uses: actions/setup-python@v4
1818
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Install Packages (cpp)
3030
if: ${{ matrix.language == 'cpp' }}

.github/workflows/require-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
label:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: mheap/github-action-required-labels@v3
9+
- uses: mheap/github-action-required-labels@v5
1010
with:
1111
mode: exactly
1212
count: 1

AUTHORS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ Eduardo Molina
7171
Edwin van der Weide
7272
Ethan Alan Hereth
7373
Florian Dittmann
74+
Filip Hahs
7475
Francesco Poli
7576
Francisco D. Palacios
7677
Gaurav Bansal
@@ -98,6 +99,7 @@ Kedar Naik
9899
Kürşat Yurt
99100
LaSerpe
100101
Lennaert Tol
102+
Liang Cheng
101103
Lisa Kusch
102104
Matteo Pini
103105
Max Aehle
@@ -137,6 +139,7 @@ VivaanKhatri
137139
Wally Maier
138140
Y. Chandukrishna
139141
Zan Xu
142+
Zcaic
140143
aaronyicongfu
141144
aeroamit
142145
anilvar

Common/include/CConfig.hpp

Lines changed: 114 additions & 107 deletions
Large diffs are not rendered by default.

Common/include/adt/CADTBaseClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
* \file CADTBaseClass.hpp
33
* \brief Base class for storing an ADT in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 8.0.0 "Harrier"
5+
* \version 8.0.1 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
99
* The SU2 Project is maintained by the SU2 Foundation
1010
* (http://su2foundation.org)
1111
*
12-
* Copyright 2012-2023, SU2 Contributors (cf. AUTHORS.md)
12+
* Copyright 2012-2024, SU2 Contributors (cf. AUTHORS.md)
1313
*
1414
* SU2 is free software; you can redistribute it and/or
1515
* modify it under the terms of the GNU Lesser General Public

Common/include/adt/CADTComparePointClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
* \file CADTComparePointClass.hpp
33
* \brief subroutines for comparing two points in an alternating digital tree (ADT).
44
* \author E. van der Weide
5-
* \version 8.0.0 "Harrier"
5+
* \version 8.0.1 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
99
* The SU2 Project is maintained by the SU2 Foundation
1010
* (http://su2foundation.org)
1111
*
12-
* Copyright 2012-2023, SU2 Contributors (cf. AUTHORS.md)
12+
* Copyright 2012-2024, SU2 Contributors (cf. AUTHORS.md)
1313
*
1414
* SU2 is free software; you can redistribute it and/or
1515
* modify it under the terms of the GNU Lesser General Public

Common/include/adt/CADTElemClass.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
* \file CADTElemClass.hpp
33
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 8.0.0 "Harrier"
5+
* \version 8.0.1 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
99
* The SU2 Project is maintained by the SU2 Foundation
1010
* (http://su2foundation.org)
1111
*
12-
* Copyright 2012-2023, SU2 Contributors (cf. AUTHORS.md)
12+
* Copyright 2012-2024, SU2 Contributors (cf. AUTHORS.md)
1313
*
1414
* SU2 is free software; you can redistribute it and/or
1515
* modify it under the terms of the GNU Lesser General Public
@@ -36,7 +36,7 @@
3636
* \ingroup ADT
3737
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
3838
* \author E. van der Weide
39-
* \version 8.0.0 "Harrier"
39+
* \version 8.0.1 "Harrier"
4040
*/
4141
class CADTElemClass : public CADTBaseClass {
4242
private:

Common/include/adt/CADTNodeClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
* \file CADTNodeClass.hpp
33
* \brief Class for storing the information needed in a node of an ADT.
44
* \author E. van der Weide
5-
* \version 8.0.0 "Harrier"
5+
* \version 8.0.1 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
99
* The SU2 Project is maintained by the SU2 Foundation
1010
* (http://su2foundation.org)
1111
*
12-
* Copyright 2012-2023, SU2 Contributors (cf. AUTHORS.md)
12+
* Copyright 2012-2024, SU2 Contributors (cf. AUTHORS.md)
1313
*
1414
* SU2 is free software; you can redistribute it and/or
1515
* modify it under the terms of the GNU Lesser General Public

0 commit comments

Comments
 (0)