Skip to content

Commit d10eebf

Browse files
remove remainings of SU2_INTERP
1 parent 3e498b0 commit d10eebf

2 files changed

Lines changed: 6 additions & 26 deletions

File tree

Common/include/adt/CADTElemClass.hpp

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,6 @@ class CADTElemClass : public CADTBaseClass {
7979
* \param[in] globalTree Whether or not a global tree must be built. If false
8080
a local ADT is built.
8181
*/
82-
83-
/*!
84-
* \brief Default constructor of the class, disabled.
85-
*/
86-
CADTElemClass() = default;
87-
8882
CADTElemClass(unsigned short val_nDim,
8983
vector<su2double> &val_coor,
9084
vector<unsigned long> &val_connElem,
@@ -93,14 +87,6 @@ class CADTElemClass : public CADTBaseClass {
9387
vector<unsigned long> &val_elemID,
9488
const bool globalTree);
9589

96-
void CreateADT(unsigned short val_nDim,
97-
vector<su2double> &val_coor,
98-
vector<unsigned long> &val_connElem,
99-
vector<unsigned short> &val_VTKElem,
100-
vector<unsigned short> &val_markerID,
101-
vector<unsigned long> &val_elemID,
102-
const bool globalTree);
103-
10490
/*!
10591
* \brief Function, which determines the element that contains the given coordinate.
10692
* \note This simply forwards the call to the implementation function selecting the right
@@ -146,6 +132,7 @@ class CADTElemClass : public CADTBaseClass {
146132
FrontLeavesNew[iThread], coor, dist, markerID, elemID, rankID);
147133
}
148134

135+
private:
149136
/*!
150137
* \brief Implementation of DetermineContainingElement.
151138
* \note Working variables (first two) passed explicitly for thread safety.
@@ -172,9 +159,6 @@ class CADTElemClass : public CADTBaseClass {
172159
unsigned long &elemID,
173160
int &rankID) const;
174161

175-
private:
176-
177-
178162
/*!
179163
* \brief Function, which checks whether or not the given coordinate is
180164
inside the given element.
@@ -411,6 +395,9 @@ class CADTElemClass : public CADTBaseClass {
411395
su2double &dist2Tria,
412396
su2double &r,
413397
su2double &s) const;
398+
/*!
399+
* \brief Default constructor of the class, disabled.
400+
*/
401+
CADTElemClass() = delete;
414402

415-
416-
};
403+
};

configure.ac

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,6 @@ AC_ARG_ENABLE(SOL,
111111
AC_ARG_ENABLE(GEO,
112112
AS_HELP_STRING([--disable-GEO], [build the SU2_GEO executable (default = yes)]),
113113
[build_GEO=$enableval], [build_GEO="yes"])
114-
AC_ARG_ENABLE(INTERP,
115-
AS_HELP_STRING([--disable-INTERP], [build the SU2_INTERP executable (default = yes)]),
116-
[build_INTERP=$enableval], [build_INTERP="yes"])
117114
AC_ARG_ENABLE(PY_WRAPPER,
118115
AS_HELP_STRING([--enable-PY_WRAPPER], [wrap the SU2 code with Python (default = no)]),
119116
[build_PY_WRAPPER="yes"], [build_PY_WRAPPER="no"])
@@ -298,7 +295,6 @@ then
298295
build_DEF=no
299296
build_SOL=no
300297
build_GEO=no
301-
build_INTERP=no
302298
build_PY=no
303299
fi
304300

@@ -318,7 +314,6 @@ AM_CONDITIONAL([BUILD_DOT],[test $build_DOT != "no"])
318314
AM_CONDITIONAL([BUILD_DEF],[test $build_DEF != "no"])
319315
AM_CONDITIONAL([BUILD_SOL],[test $build_SOL != "no"])
320316
AM_CONDITIONAL([BUILD_GEO],[test $build_GEO != "no"])
321-
AM_CONDITIONAL([BUILD_INTERP],[test $build_INTERP != "no"])
322317
AM_CONDITIONAL([BUILD_PY],[test $build_PY != "no"])
323318
AM_CONDITIONAL([BUILD_PY_WRAPPER], [test $build_PY_WRAPPER != "no"])
324319

@@ -332,7 +327,6 @@ AC_OUTPUT(Makefile \
332327
SU2_DEF/obj/Makefile \
333328
SU2_SOL/obj/Makefile \
334329
SU2_GEO/obj/Makefile \
335-
SU2_INTERP/obj/Makefile \
336330
SU2_PY/Makefile \
337331
SU2_PY/pySU2/Makefile)
338332

@@ -411,7 +405,6 @@ Build Configuration Summary:
411405
Build SU2_DEF: $build_DEF
412406
Build SU2_SOL: $build_SOL
413407
Build SU2_GEO: $build_GEO
414-
Build SU2_INTERP: $build_INTERP
415408
Build Py Wrapper: $build_PY_WRAPPER
416409
417410
Please be sure to add the [\$]SU2_HOME and [\$]SU2_RUN environment variables,

0 commit comments

Comments
 (0)