Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/functions/GaussExp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace mrcpp {

template <int D> double GaussExp<D>::defaultScreening = 10.0;

template <int D> GaussExp<D>::GaussExp(int nTerms, double prec) {
template <int D> GaussExp<D>::GaussExp(int nTerms) {
for (int i = 0; i < nTerms; i++) { this->funcs.push_back(nullptr); }
}

Expand Down
4 changes: 1 addition & 3 deletions src/functions/GaussExp.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@

namespace mrcpp {

#define GAUSS_EXP_PREC 1.e-10

/** @class GaussExp
*
* @brief Gaussian expansion in D dimensions
Expand All @@ -53,7 +51,7 @@ namespace mrcpp {

template <int D> class GaussExp : public RepresentableFunction<D, double> {
public:
GaussExp(int nTerms = 0, double prec = GAUSS_EXP_PREC);
GaussExp(int nTerms = 0);
GaussExp(const GaussExp<D> &gExp);
GaussExp &operator=(const GaussExp<D> &gExp);
~GaussExp() override;
Expand Down
Loading