@@ -492,13 +492,13 @@ TEST(imtime_ops, convolve_scalar_real) {
492492 auto gc = itops.vals2coefs (g);
493493
494494 // Get convolution and time-ordered convolution of f and g directly
495- auto h = itops.convolve (beta, Fermion, fc, gc);
496- auto ht = itops.convolve (beta, Fermion, fc, gc, TIME_ORDERED);
495+ auto h = itops.convolve (beta, fc, gc);
496+ auto ht = itops.convolve (beta, fc, gc, TIME_ORDERED);
497497
498498 // Get convolution and time-ordered convolution of f and g by first forming
499499 // matrix of convolution by f and then applying it to g
500- auto h2 = itops.convolve (itops.convmat (beta, Fermion, fc), g);
501- auto ht2 = itops.convolve (itops.convmat (beta, Fermion, fc, TIME_ORDERED), g);
500+ auto h2 = itops.convolve (itops.convmat (beta, fc), g);
501+ auto ht2 = itops.convolve (itops.convmat (beta, fc, TIME_ORDERED), g);
502502
503503 // Check that the two methods give the same result
504504 EXPECT_LT (max_element (abs (h - h2)), 1e-14 );
@@ -577,13 +577,13 @@ TEST(imtime_ops, convolve_scalar_cmplx) {
577577 auto gc = itops.vals2coefs (g);
578578
579579 // Get convolution and time-ordered convolution of f and g directly
580- auto h = itops.convolve (beta, Fermion, fc, gc);
581- auto ht = itops.convolve (beta, Fermion, fc, gc, TIME_ORDERED);
580+ auto h = itops.convolve (beta, fc, gc);
581+ auto ht = itops.convolve (beta, fc, gc, TIME_ORDERED);
582582
583583 // Get convolution and time-ordered convolution of f and g by first forming
584584 // matrix of convolution by f and then applying it to g
585- auto h2 = itops.convolve (itops.convmat (beta, Fermion, fc), g);
586- auto ht2 = itops.convolve (itops.convmat (beta, Fermion, fc, TIME_ORDERED), g);
585+ auto h2 = itops.convolve (itops.convmat (beta, fc), g);
586+ auto ht2 = itops.convolve (itops.convmat (beta, fc, TIME_ORDERED), g);
587587
588588 // Check that the two methods give the same result
589589 EXPECT_LT (max_element (abs (h - h2)), 1e-14 );
@@ -667,11 +667,11 @@ TEST(imtime_ops, convolve_matrix_real) {
667667 auto gc = itops.vals2coefs (g);
668668
669669 // Get convolution and time-ordered convolution of f and g directly
670- auto h = itops.convolve (beta, Fermion, fc, gc);
671- auto ht = itops.convolve (beta, Fermion, fc, gc, TIME_ORDERED);
670+ auto h = itops.convolve (beta, fc, gc);
671+ auto ht = itops.convolve (beta, fc, gc, TIME_ORDERED);
672672
673- auto h2 = itops.convolve (itops.convmat (beta, Fermion, fc), g);
674- auto ht2 = itops.convolve (itops.convmat (beta, Fermion, fc, TIME_ORDERED), g);
673+ auto h2 = itops.convolve (itops.convmat (beta, fc), g);
674+ auto ht2 = itops.convolve (itops.convmat (beta, fc, TIME_ORDERED), g);
675675
676676 // Check that the two methods give the same result
677677 EXPECT_LT (max_element (abs (h - h2)), 1e-14 );
@@ -758,13 +758,13 @@ TEST(imtime_ops, convolve_matrix_cmplx) {
758758 auto gc = itops.vals2coefs (g);
759759
760760 // Get convolution and time-ordered convolution of f and g directly
761- auto h = itops.convolve (beta, Fermion, fc, gc);
762- auto ht = itops.convolve (beta, Fermion, fc, gc, TIME_ORDERED);
761+ auto h = itops.convolve (beta, fc, gc);
762+ auto ht = itops.convolve (beta, fc, gc, TIME_ORDERED);
763763
764764 // Get convolution and time-ordered convolution of f and g by first forming
765765 // matrix of convolution by f and then applying it to g
766- auto h2 = itops.convolve (itops.convmat (beta, Fermion, fc), g);
767- auto ht2 = itops.convolve (itops.convmat (beta, Fermion, fc, TIME_ORDERED), g);
766+ auto h2 = itops.convolve (itops.convmat (beta, fc), g);
767+ auto ht2 = itops.convolve (itops.convmat (beta, fc, TIME_ORDERED), g);
768768
769769 // Check that the two methods give the same result
770770 EXPECT_LT (max_element (abs (h - h2)), 1e-14 );
0 commit comments