@@ -42,7 +42,7 @@ struct laplace_p : public GenericKernel<laplace_p> {
4242 static const int FLOPS = 20 ;
4343 template <class Real >
4444 static Real ScaleFactor () {
45- return 1.0 / (4.0 * const_pi<Real>());
45+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
4646 }
4747
4848 /* *
@@ -68,7 +68,7 @@ struct laplace_pgrad : public GenericKernel<laplace_pgrad> {
6868 static const int FLOPS = 20 ;
6969 template <class Real >
7070 static Real ScaleFactor () {
71- return 1.0 / (4.0 * const_pi<Real>());
71+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
7272 }
7373
7474 /* *
@@ -99,7 +99,7 @@ struct laplace_dipolep : public GenericKernel<laplace_dipolep> {
9999 static const int FLOPS = 20 ;
100100 template <class Real >
101101 static Real ScaleFactor () {
102- return 1.0 / (4.0 * const_pi<Real>());
102+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
103103 }
104104 template <class VecType , int digits>
105105 static void uKerEval (VecType (&u)[1], const VecType (&r)[3], const VecType (&f)[3], const void *ctx_ptr) {
@@ -116,7 +116,7 @@ struct laplace_dipolepgrad : public GenericKernel<laplace_dipolepgrad> {
116116 static const int FLOPS = 20 ;
117117 template <class Real >
118118 static Real ScaleFactor () {
119- return 1.0 / (4.0 * const_pi<Real>());
119+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
120120 }
121121 template <class VecType , int digits>
122122 static void uKerEval (VecType (&u)[4], const VecType (&r)[3], const VecType (&f)[3], const void *ctx_ptr) {
@@ -139,7 +139,7 @@ struct laplace_pgradgrad : public GenericKernel<laplace_pgradgrad> {
139139 static const int FLOPS = 20 ;
140140 template <class Real >
141141 static Real ScaleFactor () {
142- return 1.0 / (4.0 * const_pi<Real>());
142+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
143143 }
144144 template <class VecType , int digits>
145145 static void uKerEval (VecType (&u)[10], const VecType (&r)[3], const VecType (&f)[1], const void *ctx_ptr) {
@@ -169,7 +169,7 @@ struct laplace_dipolepgradgrad : public GenericKernel<laplace_dipolepgradgrad> {
169169 static const int FLOPS = 20 ;
170170 template <class Real >
171171 static Real ScaleFactor () {
172- return 1.0 / (4.0 * const_pi<Real>());
172+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
173173 }
174174 template <class VecType , int digits>
175175 static void uKerEval (VecType (&u)[10], const VecType (&r)[3], const VecType (&f)[3], const void *ctx_ptr) {
@@ -203,7 +203,7 @@ struct laplace_quadp : public GenericKernel<laplace_quadp> {
203203 static const int FLOPS = 20 ;
204204 template <class Real >
205205 static Real ScaleFactor () {
206- return 1.0 / (4.0 * const_pi<Real>());
206+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
207207 }
208208 template <class VecType , int digits>
209209 static void uKerEval (VecType (&u)[1], const VecType (&r)[3], const VecType (&f)[9], const void *ctx_ptr) {
@@ -235,7 +235,7 @@ struct laplace_quadpgradgrad : public GenericKernel<laplace_quadpgradgrad> {
235235 static const int FLOPS = 20 ;
236236 template <class Real >
237237 static Real ScaleFactor () {
238- return 1.0 / (4.0 * const_pi<Real>());
238+ return 1.0 / (4.0 * sctl:: const_pi<Real>());
239239 }
240240 template <class VecType , int digits>
241241 static void uKerEval (VecType (&u)[10], const VecType (&r)[3], const VecType (&f)[9], const void *ctx_ptr) {
0 commit comments