From 9245861f1df8eef588e60055aabd4988c74e3dd2 Mon Sep 17 00:00:00 2001 From: guido 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