/******************************************************************************* * * TRIQS: a Toolbox for Research in Interacting Quantum Systems * * Copyright (C) 2011 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 { void legendre_matsubara_direct (gf_view &gw, gf_view const &gl); void legendre_matsubara_inverse (gf_view &gl, gf_view const &gw); void legendre_matsubara_direct (gf_view >, gf_view const &gl); void legendre_matsubara_inverse (gf_view &gl, gf_view const >); namespace tags { struct legendre{}; } gf_keeper lazy_legendre_imfreq (gf_view const & gl); gf_keeper lazy_legendre_imtime (gf_view const & gl); gf_keeper lazy_imfreq_legendre (gf_view const & gw); gf_keeper lazy_imtime_legendre (gf_view const & gt); void triqs_gf_view_assign_delegation( gf_view &gw, gf_keeper const & L); void triqs_gf_view_assign_delegation( gf_view >, 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