From 2ab0878c9e68016cbb5085a15bef938a5a70557b Mon Sep 17 00:00:00 2001 From: Andrew Jewett Date: Wed, 9 Sep 2020 14:43:28 -0700 Subject: [PATCH] remreduced compile time by removing unnecessary instantiations from math_eigen.cpp --- src/math_eigen.cpp | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/src/math_eigen.cpp b/src/math_eigen.cpp index 9e98a161b6..2caa6414d1 100644 --- a/src/math_eigen.cpp +++ b/src/math_eigen.cpp @@ -48,25 +48,7 @@ template class MathEigen::PEigenDense&, const vector >&>; -// ----------------- now create instances for floats ---------------- - -template class MathEigen::Jacobi; -template class MathEigen::Jacobi; -template class MathEigen::Jacobi&, - vector >&, - const vector >& >; -template class MathEigen::Jacobi&, - array, 3 >&, - const array, 3 >& >; -template class MathEigen::LambdaLanczos; -template class MathEigen::PEigenDense; -template class MathEigen::PEigenDense&, - const vector >&>; - -// If you plan to use other numeric types, add them below... +// If you plan to use other numeric types (eg floats), add them to this list.