From: young Date: Wed, 13 Jan 2010 10:46:09 +0000 (+0000) Subject: Removed a call to MaTCompress (matrix); This function was never implemented in PETSc... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=137e74a5f339cff640cd1122239b84ca4f44f8e4;p=dealii-svn.git Removed a call to MaTCompress (matrix); This function was never implemented in PETSc, and has been slated for removal there git-svn-id: https://svn.dealii.org/trunk@20357 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/petsc_matrix_base.cc b/deal.II/lac/source/petsc_matrix_base.cc index e40a96fc2c..868e7261b0 100644 --- a/deal.II/lac/source/petsc_matrix_base.cc +++ b/deal.II/lac/source/petsc_matrix_base.cc @@ -252,10 +252,6 @@ namespace PETScWrappers AssertThrow (ierr == 0, ExcPETScError(ierr)); ierr = MatAssemblyEnd (matrix,MAT_FINAL_ASSEMBLY); - AssertThrow (ierr == 0, ExcPETScError(ierr)); - - // try to compress the representation - ierr = MatCompress (matrix); AssertThrow (ierr == 0, ExcPETScError(ierr)); }