From: guido Date: Tue, 26 Apr 2005 09:12:27 +0000 (+0000) Subject: add dummy implementation without LAPACK X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9245861f1df8eef588e60055aabd4988c74e3dd2;p=dealii-svn.git add dummy implementation without LAPACK git-svn-id: https://svn.dealii.org/trunk@10580 0785d39b-7218-0410-832d-ea1e28bc413d --- 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