From 3386bb5af0c1e67748e7fa523084a081d70f96c5 Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Wed, 19 May 2004 09:14:13 +0000 Subject: [PATCH] Add missing implementation of SparseMatrix::operator =. git-svn-id: https://svn.dealii.org/trunk@9265 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/petsc_parallel_sparse_matrix.cc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/deal.II/lac/source/petsc_parallel_sparse_matrix.cc b/deal.II/lac/source/petsc_parallel_sparse_matrix.cc index a445c2ab24..e71ba0ae96 100644 --- a/deal.II/lac/source/petsc_parallel_sparse_matrix.cc +++ b/deal.II/lac/source/petsc_parallel_sparse_matrix.cc @@ -65,6 +65,15 @@ namespace PETScWrappers + SparseMatrix & + SparseMatrix::operator = (const double d) + { + MatrixBase::operator = (d); + return *this; + } + + + void SparseMatrix::reinit (const MPI_Comm &communicator, const unsigned int m, -- 2.39.5