From: guido Date: Wed, 4 May 2005 09:05:49 +0000 (+0000) Subject: allow construction and destruction of objects even without UMFPACK library X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58fe71219437e90d5db00e8245149892a6a0530a;p=dealii-svn.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 &)