File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ namespace mrcpp {
4141
4242template <int D> double GaussExp<D>::defaultScreening = 10.0 ;
4343
44- template <int D> GaussExp<D>::GaussExp(int nTerms, double prec ) {
44+ template <int D> GaussExp<D>::GaussExp(int nTerms) {
4545 for (int i = 0 ; i < nTerms; i++) { this ->funcs .push_back (nullptr ); }
4646}
4747
Original file line number Diff line number Diff line change 3535
3636namespace mrcpp {
3737
38- #define GAUSS_EXP_PREC 1 .e-10
39-
4038/* * @class GaussExp
4139 *
4240 * @brief Gaussian expansion in D dimensions
@@ -53,7 +51,7 @@ namespace mrcpp {
5351
5452template <int D> class GaussExp : public RepresentableFunction <D, double > {
5553public:
56- GaussExp (int nTerms = 0 , double prec = GAUSS_EXP_PREC );
54+ GaussExp (int nTerms = 0 );
5755 GaussExp (const GaussExp<D> &gExp );
5856 GaussExp &operator =(const GaussExp<D> &gExp );
5957 ~GaussExp () override ;
You can’t perform that action at this time.
0 commit comments