3
0
mirror of https://github.com/triqs/dft_tools synced 2024-10-31 19:23:45 +01:00
dft_tools/test/triqs/gfs/fourier1.cpp
Olivier Parcollet 85141350e7 remove warnings in compilation
- triqs & tests now compiles with -Wall on clang (3.2)
Checked on OS X.
Todo : recheck on other compilers.
2014-01-30 22:17:28 +01:00

23 lines
529 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,100}, {2,2}};
auto gt = make_gf_from_inverse_fourier(G);
auto gw = make_gf_from_fourier(gt);
//gw() = fourier(gt);
G() = fourier(Gt);
}