From 58fe71219437e90d5db00e8245149892a6a0530a Mon Sep 17 00:00:00 2001 From: guido Date: Wed, 4 May 2005 09:05:49 +0000 Subject: [PATCH] allow construction and destruction of objects even without UMFPACK library git-svn-id: https://svn.dealii.org/trunk@10645 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparse_direct.cc | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 &) -- 2.39.5