Skip to content

Commit a00bce2

Browse files
committed
move inline functions
1 parent f8d4603 commit a00bce2

9 files changed

Lines changed: 199 additions & 912 deletions

Common/include/fem_gauss_jacobi_quadrature.hpp

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* SU2 Project Website: https://su2code.github.io
1212
*
13-
* The SU2 Project is maintained by the SU2 Foundation
13+
* The SU2 Project is maintained by the SU2 Foundation
1414
* (http://su2foundation.org)
1515
*
1616
* Copyright 2012-2020, SU2 Contributors (cf. AUTHORS.md)
@@ -63,16 +63,16 @@ Subject: Gauss-Jacobi Quadrature Code
6363
Dear John,
6464
6565
I am the lead developer for the open-source SU2 suite, which is primarily for
66-
computational fluid dynamics, but also for solving other PDE systems
66+
computational fluid dynamics, but also for solving other PDE systems
6767
(http://su2.stanford.edu, https://github.com/su2code/SU2). Over the past few months,
6868
we have been working on a new high-order discontinuous Galerkin fluid solver within
6969
the codebase, led by Prof. Edwin van der Weide at the University of Twente (cc’d).
7070
7171
We found your attached code to be very helpful in resolving some issues with integration
7272
for our pyramid elements, and we would really like to reuse the implementation if possible.
73-
First, we would like to check if this is ok with you personally, and ask how we can
73+
First, we would like to check if this is ok with you personally, and ask how we can
7474
properly attribute your work in the code? Second, we are curious just what version of the
75-
GNU LGPL license you are using to make sure that we don’t have any licensing issues.
75+
GNU LGPL license you are using to make sure that we don’t have any licensing issues.
7676
For SU2, we are using GNU LGPL v2.1.
7777
7878
Thanks for the time and take care,
@@ -99,17 +99,6 @@ using namespace std;
9999
*/
100100
class CGaussJacobiQuadrature {
101101
public:
102-
103-
/*!
104-
* \brief Constructor of the class, nothing to be done.
105-
*/
106-
CGaussJacobiQuadrature();
107-
108-
/*!
109-
* \brief Destructor of the class, nothing to be done.
110-
*/
111-
~CGaussJacobiQuadrature();
112-
113102
/*!
114103
* \brief Function, which serves as the API to compute the integration points
115104
and weights.
@@ -186,5 +175,3 @@ class CGaussJacobiQuadrature {
186175
void sgqf(int nt, passivedouble aj[], passivedouble bj[], passivedouble zemu, passivedouble t[],
187176
passivedouble wts[]);
188177
};
189-
190-
#include "fem_gauss_jacobi_quadrature.inl"

Common/include/fem_gauss_jacobi_quadrature.inl

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)