From aeda7b923dacbdb7f7ee26f7a10c0ef759c837b0 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Sun, 3 May 2015 09:48:13 +0100 Subject: [PATCH] Back to vector for now; cost of init loop is clear in the a*x + y loop in memory benchmark and must move to better container class. --- lib/Grid_lattice.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Grid_lattice.h b/lib/Grid_lattice.h index cf1c30c5..75a80ef8 100644 --- a/lib/Grid_lattice.h +++ b/lib/Grid_lattice.h @@ -26,8 +26,8 @@ class Lattice public: GridBase *_grid; int checkerboard; - //std::vector > _odata; - std::valarray _odata; + std::vector > _odata; + //std::valarray _odata; public: typedef typename vobj::scalar_type scalar_type;