We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c73bd57 commit e838161Copy full SHA for e838161
source/Makefile.Objects
@@ -411,6 +411,8 @@ OBJS_PSI_INITIALIZER=psi_initializer.o\
411
psi_initializer_nao_random.o\
412
413
OBJS_PW=fft.o\
414
+ fft_base.o\
415
+ fft_temp.o\
416
pw_basis.o\
417
pw_basis_k.o\
418
pw_basis_sup.o\
source/module_basis/module_pw/pw_basis.h
@@ -243,6 +243,7 @@ class PW_Basis
243
int nmaxgr=0; // Gamma_only: max between npw and (nrxx+1)/2, others: max between npw and nrxx
244
// Thus complex<double>[nmaxgr] is able to contain either reciprocal or real data
245
FFT ft;
246
+ FFT1 ft1;
247
//The position of pointer in and out can be equal(in-place transform) or different(out-of-place transform).
248
249
template <typename FPTYPE>
0 commit comments