From: Daniel Arndt Date: Mon, 10 Sep 2018 23:33:51 +0000 (+0200) Subject: Allow TrilinosWrappers::SparseMatrix::mmult for 64-bit indices X-Git-Tag: v9.1.0-rc1~728^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7171%2Fhead;p=dealii.git Allow TrilinosWrappers::SparseMatrix::mmult for 64-bit indices --- diff --git a/source/lac/trilinos_sparse_matrix.cc b/source/lac/trilinos_sparse_matrix.cc index a28803efad..d4e01cea70 100644 --- a/source/lac/trilinos_sparse_matrix.cc +++ b/source/lac/trilinos_sparse_matrix.cc @@ -2240,10 +2240,7 @@ namespace TrilinosWrappers const MPI::Vector & V, const bool transpose_left) { -# ifdef DEAL_II_WITH_64BIT_INDICES - Assert(false, ExcNotImplemented()) -# endif - const bool use_vector = (V.size() == inputright.m() ? true : false); + const bool use_vector = (V.size() == inputright.m() ? true : false); if (transpose_left == false) { Assert(inputleft.n() == inputright.m(), @@ -2329,10 +2326,7 @@ namespace TrilinosWrappers const SparseMatrix &B, const MPI::Vector & V) const { -# ifdef DEAL_II_WITH_64BIT_INDICES - Assert(false, ExcNotImplemented()) -# endif - internals::perform_mmult(*this, B, C, V, false); + internals::perform_mmult(*this, B, C, V, false); } @@ -2342,10 +2336,7 @@ namespace TrilinosWrappers const SparseMatrix &B, const MPI::Vector & V) const { -# ifdef DEAL_II_WITH_64BIT_INDICES - Assert(false, ExcNotImplemented()) -# endif - internals::perform_mmult(*this, B, C, V, true); + internals::perform_mmult(*this, B, C, V, true); }