mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
23 lines
531 B
C++
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);
|
|
}
|
|
|
|
|