diff --git a/src/functions/GaussExp.cpp b/src/functions/GaussExp.cpp index a57fe670..21432686 100644 --- a/src/functions/GaussExp.cpp +++ b/src/functions/GaussExp.cpp @@ -41,7 +41,7 @@ namespace mrcpp { template double GaussExp::defaultScreening = 10.0; -template GaussExp::GaussExp(int nTerms, double prec) { +template GaussExp::GaussExp(int nTerms) { for (int i = 0; i < nTerms; i++) { this->funcs.push_back(nullptr); } } diff --git a/src/functions/GaussExp.h b/src/functions/GaussExp.h index a4315e38..38221321 100644 --- a/src/functions/GaussExp.h +++ b/src/functions/GaussExp.h @@ -35,8 +35,6 @@ namespace mrcpp { -#define GAUSS_EXP_PREC 1.e-10 - /** @class GaussExp * * @brief Gaussian expansion in D dimensions @@ -53,7 +51,7 @@ namespace mrcpp { template class GaussExp : public RepresentableFunction { public: - GaussExp(int nTerms = 0, double prec = GAUSS_EXP_PREC); + GaussExp(int nTerms = 0); GaussExp(const GaussExp &gExp); GaussExp &operator=(const GaussExp &gExp); ~GaussExp() override;