Skip to content

Commit 3cb709c

Browse files
authored
Merge pull request #1173 from su2code/develop
Update master
2 parents 88eec40 + 8889db7 commit 3cb709c

948 files changed

Lines changed: 12696 additions & 15429 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,6 @@ Mercurial
8787
# Ignore build folder
8888
./build/
8989
build/
90+
91+
# ninja binary (build system)
9092
ninja

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@
1212
[submodule "externals/meson"]
1313
path = externals/meson
1414
url = https://github.com/mesonbuild/meson
15+
[submodule "subprojects/Mutationpp"]
16+
path = subprojects/Mutationpp
17+
url = https://github.com/mutationpp/Mutationpp.git

Common/doc/docmain.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file docmain.hpp
33
* \brief This file contains documentation for Doxygen and does not have any significance with respect to C++.
44
* \author F. Palacios
5-
* \version 7.0.8 "Blackbird"
5+
* \version 7.1.0 "Blackbird"
66
*
77
* The current SU2 release has been coordinated by the
88
* SU2 International Developers Society <www.su2devsociety.org>
@@ -33,7 +33,7 @@
3333
*/
3434

3535
/*!
36-
* \mainpage SU2 version 7.0.8 "Blackbird"
36+
* \mainpage SU2 version 7.1.0 "Blackbird"
3737
* SU2 suite is an open-source collection of C++ based software tools
3838
* to perform PDE analysis and PDE constrained optimization problems. The toolset is designed with
3939
* computational fluid dynamics and aerodynamic shape optimization in mind, but is extensible to

Common/include/CConfig.hpp

Lines changed: 78 additions & 193 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,7 +2,7 @@
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 7.0.8 "Blackbird"
5+
* \version 7.1.0 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
@@ -32,7 +32,7 @@
3232

3333
#include "../basic_types/datatype_structure.hpp"
3434
#include "./CADTNodeClass.hpp"
35-
#include "../omp_structure.hpp"
35+
#include "../parallelization/omp_structure.hpp"
3636

3737
using namespace std;
3838

Common/include/adt/CADTComparePointClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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 7.0.8 "Blackbird"
5+
* \version 7.1.0 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTElemClass.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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 7.0.8 "Blackbird"
5+
* \version 7.1.0 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
@@ -29,13 +29,13 @@
2929

3030
#include "./CADTBaseClass.hpp"
3131
#include "./CBBoxTargetClass.hpp"
32-
#include "../omp_structure.hpp"
32+
#include "../parallelization/omp_structure.hpp"
3333

3434
/*!
3535
* \class CADTElemClass
3636
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
3737
* \author E. van der Weide
38-
* \version 7.0.8 "Blackbird"
38+
* \version 7.1.0 "Blackbird"
3939
*/
4040
class CADTElemClass : public CADTBaseClass {
4141
private:
@@ -400,4 +400,4 @@ class CADTElemClass : public CADTBaseClass {
400400
*/
401401
CADTElemClass() = delete;
402402

403-
};
403+
};

Common/include/adt/CADTNodeClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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 7.0.8 "Blackbird"
5+
* \version 7.1.0 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTPointsOnlyClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTPointsOnlyClass.hpp
33
* \brief Class for storing an ADT of only points in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 7.0.8 "Blackbird"
5+
* \version 7.1.0 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CBBoxTargetClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* \brief Class for storing the information of a possible bounding box candidate
44
during a minimum distance search.
55
* \author E. van der Weide
6-
* \version 7.0.8 "Blackbird"
6+
* \version 7.1.0 "Blackbird"
77
*
88
* SU2 Project Website: https://su2code.github.io
99
*
@@ -34,7 +34,7 @@
3434
* \brief Class for storing the information of a possible bounding box candidate
3535
during a minimum distance search.
3636
* \author E. van der Weide
37-
* \version 7.0.8 "Blackbird"
37+
* \version 7.1.0 "Blackbird"
3838
*/
3939
struct CBBoxTargetClass {
4040

0 commit comments

Comments
 (0)