3
0
mirror of https://github.com/triqs/dft_tools synced 2024-12-26 06:14:14 +01:00

gf.Fourier scalar_valued. Fix tail size

- tail is 0, but must be of dimension (1,1)
This commit is contained in:
Olivier Parcollet 2013-10-31 14:54:43 +01:00
parent 4c1c14b989
commit 8be0c208c2

View File

@ -51,7 +51,7 @@ namespace gfs {
} }
void direct(gf_view<imfreq, scalar_valued, no_tail> gw, gf_const_view<imtime, scalar_valued, no_tail> gt) { void direct(gf_view<imfreq, scalar_valued, no_tail> gw, gf_const_view<imtime, scalar_valued, no_tail> gt) {
auto ta = local::tail(); auto ta = local::tail{1,1};
direct_impl(gw, gt, ta); direct_impl(gw, gt, ta);
} }