From 0a9baae040ad44d4900623e7fc2f011857cc063d Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Tue, 26 Apr 2005 09:12:27 +0000 Subject: [PATCH] add dummy implementation without LAPACK git-svn-id: https://svn.dealii.org/trunk@10580 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/lapack_full_matrix.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/deal.II/lac/source/lapack_full_matrix.cc b/deal.II/lac/source/lapack_full_matrix.cc index 71b9641e90..092d912642 100644 --- a/deal.II/lac/source/lapack_full_matrix.cc +++ b/deal.II/lac/source/lapack_full_matrix.cc @@ -195,6 +195,16 @@ LAPACKFullMatrix::compute_eigenvalues() state = LAPACKSupport::State(eigenvalues | unusable); } +#else + +template +void +LAPACKFullMatrix::compute_eigenvalues() +{ + Assert(false, ExcNeedsLAPACK()); +} + + #endif // template -- 2.39.5