diff --git a/lib/lattice/Lattice_reduction.h b/lib/lattice/Lattice_reduction.h index a6d3e0dc..922821ed 100644 --- a/lib/lattice/Lattice_reduction.h +++ b/lib/lattice/Lattice_reduction.h @@ -51,6 +51,31 @@ PARALLEL_FOR_LOOP return nrm; } + template + inline auto sum(const LatticeUnaryExpression & expr) + ->typename decltype(expr.first.func(eval(0,std::get<0>(expr.second))))::scalar_object + { + return sum(closure(expr)); + } + + template + inline auto sum(const LatticeBinaryExpression & expr) + ->typename decltype(expr.first.func(eval(0,std::get<0>(expr.second)),eval(0,std::get<1>(expr.second))))::scalar_object + { + return sum(closure(expr)); + } + + + template + inline auto sum(const LatticeTrinaryExpression & expr) + ->typename decltype(expr.first.func(eval(0,std::get<0>(expr.second)), + eval(0,std::get<1>(expr.second)), + eval(0,std::get<2>(expr.second)) + ))::scalar_object + { + return sum(closure(expr)); + } + template inline typename vobj::scalar_object sum(const Lattice &arg){