From edbc0d49d775b330901c719cea46cb17a6c68648 Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Mon, 19 Mar 2018 18:30:24 +0100 Subject: [PATCH] WilsonMG: Get rid of explicit GridTypeMappers in CoarsenedMatrix --- lib/algorithms/CoarsenedMatrix.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/algorithms/CoarsenedMatrix.h b/lib/algorithms/CoarsenedMatrix.h index 26ff2ede..fdf0abce 100644 --- a/lib/algorithms/CoarsenedMatrix.h +++ b/lib/algorithms/CoarsenedMatrix.h @@ -94,7 +94,7 @@ namespace Grid { class Aggregation { public: - typedef typename GridTypeMapper::vector_type innerType; + typedef typename CComplex::vector_type innerType; typedef iScalar > > siteScalar; // used for inner products on fine field typedef iScalar, 1 > > siteVector; typedef iScalar, 1 > > siteMatrix; @@ -243,10 +243,10 @@ namespace Grid { // Fine Object == (per site) type of fine field // nbasis == number of deflation vectors template - class CoarsenedMatrix : public SparseMatrixBase::vector_type, nbasis >, 1 > > > > { + class CoarsenedMatrix : public SparseMatrixBase, 1 > > > > { public: - - typedef typename GridTypeMapper::vector_type innerType; + + typedef typename CComplex::vector_type innerType; typedef iScalar > > siteScalar; typedef iScalar, 1 > > siteVector; typedef iScalar, 1 > > siteMatrix;