From 710bdb75023a2a0b26518a601d07dd2dd157d746 Mon Sep 17 00:00:00 2001 From: "Toby D. Young" Date: Wed, 13 Jan 2010 10:46:09 +0000 Subject: [PATCH] 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 --- deal.II/lac/source/petsc_matrix_base.cc | 4 ---- 1 file changed, 4 deletions(-) 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)); } -- 2.39.5