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
6363Dear John,
6464
6565I 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,
6868we have been working on a new high-order discontinuous Galerkin fluid solver within
6969the codebase, led by Prof. Edwin van der Weide at the University of Twente (cc’d).
7070
7171We found your attached code to be very helpful in resolving some issues with integration
7272for 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
7474properly 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.
7676For SU2, we are using GNU LGPL v2.1.
7777
7878Thanks for the time and take care,
8686#include < cstdlib>
8787#include < vector>
8888
89- #include " CConfig.hpp"
89+ #include " ../ CConfig.hpp"
9090
9191using namespace std ;
9292
@@ -99,17 +99,6 @@ using namespace std;
9999 */
100100class CGaussJacobiQuadrature {
101101public:
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, const passivedouble aj[], passivedouble bj[], passivedouble zemu, passivedouble t[],
187176 passivedouble wts[]);
188177};
189-
190- #include " fem_gauss_jacobi_quadrature.inl"
0 commit comments