From: Guido Kanschat Date: Wed, 4 May 2005 09:05:49 +0000 (+0000) Subject: allow construction and destruction of objects even without UMFPACK library X-Git-Tag: v8.0.0~13910 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc0caed681ec4f0b01c5ee57ae4830506db806dd;p=dealii.git allow construction and destruction of objects even without UMFPACK library git-svn-id: https://svn.dealii.org/trunk@10645 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 5fe5547b88..68b5dc1a6a 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -1852,16 +1852,12 @@ SparseDirectUMFPACK::SparseDirectUMFPACK () symbolic_decomposition (0), numeric_decomposition (0), control (0) -{ - Assert(false, ExcNeedsUMFPACK()); -} +{} void SparseDirectUMFPACK::clear () -{ - Assert(false, ExcNeedsUMFPACK()); -} +{} void SparseDirectUMFPACK::factorize (const SparseMatrix &)