3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 03:33:50 +01:00
dft_tools/test/triqs/gfs/fourier1.cpp
2014-07-02 22:56:06 +02:00

23 lines
531 B
C++

#define TRIQS_ARRAYS_ENFORCE_BOUNDCHECK
#include <triqs/gfs.hpp>
#include <triqs/gfs/local/fourier_matsubara.hpp>
using namespace triqs::gfs;
#define TEST(X) std::cout << BOOST_PP_STRINGIZE((X)) << " ---> "<< (X) <<std::endl<<std::endl;
int main() {
double beta =1;
auto G = gf<imfreq> {{beta, Fermion}, {2,2}};
auto Gc = G;
auto G3 = G;
auto Gt = gf<imtime> {{beta, Fermion, 3000}, {2,2}};
auto gt = make_gf_from_inverse_fourier(G);
auto gw = make_gf_from_fourier(gt);
//gw() = fourier(gt);
G() = fourier(Gt);
}