/*******************************************************************************
*
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
*
* Copyright (C) 2011-2014 by L. Boehnke, M. Ferrero, O. Parcollet
*
* TRIQS is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* TRIQS. If not, see .
*
******************************************************************************/
#ifndef TRIQS_GF_LOCAL_LEGENDRE_MATSU_H
#define TRIQS_GF_LOCAL_LEGENDRE_MATSU_H
#include
#include
#include
namespace triqs {
namespace gfs {
namespace tags {
struct legendre {};
}
inline gf_keeper legendre_to_imfreq(gf_const_view gl) {
return {gl};
}
inline gf_keeper legendre_to_imtime(gf_const_view gl) {
return {gl};
}
inline gf_keeper imfreq_to_legendre(gf_const_view gw) {
return {gw};
}
inline gf_keeper imtime_to_legendre(gf_const_view gt) {
return {gt};
}
void triqs_gf_view_assign_delegation(gf_view gw, gf_keeper const &L);
void triqs_gf_view_assign_delegation(gf_view gt, gf_keeper const &L);
void triqs_gf_view_assign_delegation(gf_view gl, gf_keeper const &L);
void triqs_gf_view_assign_delegation(gf_view gl, gf_keeper const &L);
}
}
#endif