From 0f7cf40867df7b6c1efc552b209943b1fb49d63c Mon Sep 17 00:00:00 2001 From: Azusa Yamaguchi Date: Sun, 14 Jun 2015 01:01:21 +0100 Subject: [PATCH] Moving where in to the expression template system; deprecate --- lib/lattice/Lattice_where.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/lattice/Lattice_where.h b/lib/lattice/Lattice_where.h index 84d7471c..c83d80c1 100644 --- a/lib/lattice/Lattice_where.h +++ b/lib/lattice/Lattice_where.h @@ -8,13 +8,14 @@ namespace Grid { // and blow away the tensor structures. // template -inline void where(Lattice &ret,const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) +inline void whereWolf(Lattice &ret,const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) { conformable(iftrue,iffalse); conformable(iftrue,predicate); conformable(iftrue,ret); GridBase *grid=iftrue._grid; + typedef typename vobj::scalar_object scalar_object; typedef typename vobj::scalar_type scalar_type; typedef typename vobj::vector_type vector_type; @@ -43,7 +44,7 @@ PARALLEL_FOR_LOOP } template -inline Lattice where(const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) +inline Lattice whereWolf(const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) { conformable(iftrue,iffalse); conformable(iftrue,predicate);