From 469e0bd868df6191bbec8071d166c2c5ab528828 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 3 May 2005 13:44:04 +0000 Subject: [PATCH] In the absence of umfpack, don't use special #define's. git-svn-id: https://svn.dealii.org/trunk@10617 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparse_direct.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 70304c1300..d4488cb81e 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -1851,7 +1851,7 @@ SparseDirectUMFPACK::SparseDirectUMFPACK () : symbolic_decomposition (0), numeric_decomposition (0), - control (UMFPACK_CONTROL) + control (0) { Assert(false, ExcNeedsUMFPack()); } @@ -1863,17 +1863,20 @@ SparseDirectUMFPACK::clear () Assert(false, ExcNeedsUMFPack()); } + void SparseDirectUMFPACK::factorize (const SparseMatrix &) { Assert(false, ExcNeedsUMFPack()); } + void SparseDirectUMFPACK::solve (Vector &) const { Assert(false, ExcNeedsUMFPack()); } + void SparseDirectUMFPACK::solve (const SparseMatrix &, Vector &) -- 2.39.5