From 02885ee58398f3fe774212b727c3236beac7a7cd Mon Sep 17 00:00:00 2001 From: Azusa Yamaguchi Date: Sun, 14 Jun 2015 01:03:28 +0100 Subject: [PATCH] trying to find a way to remove functions from the ET system using explicit expression closure statements. Not sure if this works yet --- lib/lattice/Lattice_reduction.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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){