2013-07-17 19:24:07 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
|
|
|
|
*
|
2013-12-30 22:31:36 +01:00
|
|
|
* Copyright (C) 2012-2013 by O. Parcollet
|
2013-07-17 19:24:07 +02:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2013-12-30 22:31:36 +01:00
|
|
|
#pragma once
|
2013-07-17 19:24:07 +02:00
|
|
|
#include "./tools.hpp"
|
|
|
|
#include "./gf.hpp"
|
|
|
|
#include "./local/tail.hpp"
|
2013-12-30 22:31:36 +01:00
|
|
|
#include "./meshes/segment.hpp"
|
2013-10-16 23:55:26 +02:00
|
|
|
#include "./evaluators.hpp"
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
namespace triqs {
|
|
|
|
namespace gfs {
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
struct retime {};
|
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
template <typename Opt> struct gf_mesh<retime, Opt> : segment_mesh {
|
|
|
|
template <typename... T> gf_mesh(T &&... x) : segment_mesh(std::forward<T>(x)...) {}
|
|
|
|
//using segment_mesh::segment_mesh;
|
2013-08-24 14:47:47 +02:00
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
// singularity
|
|
|
|
template <> struct gf_default_singularity<retime, matrix_valued> {
|
|
|
|
using type = local::tail;
|
|
|
|
};
|
|
|
|
template <> struct gf_default_singularity<retime, scalar_valued> {
|
|
|
|
using type = local::tail;
|
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
namespace gfs_implementation {
|
2013-08-24 14:47:47 +02:00
|
|
|
|
2013-07-19 13:28:30 +02:00
|
|
|
// h5 name
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename Singularity, typename Opt> struct h5_name<retime, matrix_valued, Singularity, Opt> {
|
2013-12-30 22:31:36 +01:00
|
|
|
static std::string invoke() { return "ReTime"; }
|
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
/// --------------------------- evaluator ---------------------------------
|
2013-12-30 22:31:36 +01:00
|
|
|
template <>
|
|
|
|
struct evaluator_fnt_on_mesh<retime> TRIQS_INHERIT_AND_FORWARD_CONSTRUCTOR(evaluator_fnt_on_mesh,
|
|
|
|
evaluator_grid_linear_interpolation);
|
2013-10-16 23:55:26 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename Singularity, typename Opt, typename Target> struct evaluator<retime, Target, Singularity, Opt> : evaluator_one_var<retime> {};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
/// --------------------------- data access ---------------------------------
|
2013-12-30 22:31:36 +01:00
|
|
|
template <typename Opt> struct data_proxy<retime, matrix_valued, Opt> : data_proxy_array<std::complex<double>, 3> {};
|
|
|
|
template <typename Opt> struct data_proxy<retime, scalar_valued, Opt> : data_proxy_array<std::complex<double>, 1> {};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2013-07-28 13:28:19 +02:00
|
|
|
} // gfs_implementation
|
2013-12-30 22:31:36 +01:00
|
|
|
}
|
|
|
|
}
|