From: wolf Date: Thu, 23 Jan 2003 23:04:41 +0000 (+0000) Subject: Add some missing explicit instantiations. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b1484a8e64bef065d17586b4d9bb0240491b7d5;p=dealii-svn.git Add some missing explicit instantiations. git-svn-id: https://svn.dealii.org/trunk@6951 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_decomposition.cc b/deal.II/lac/source/sparse_decomposition.cc index 49b43992c1..d79687368d 100644 --- a/deal.II/lac/source/sparse_decomposition.cc +++ b/deal.II/lac/source/sparse_decomposition.cc @@ -1,5 +1,5 @@ //---------------------------- sparse_decomposition.cc --------------------------- -// Copyright (C) 1998, 1999, 2000, 2001, 2002 +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 // by the deal.II authors and Stephen "Cheffo" Kolaroff // // This file is subject to QPL and may not be distributed @@ -18,8 +18,15 @@ template void SparseLUDecomposition::decompose (const SparseMatr template void SparseLUDecomposition::decompose (const SparseMatrix &, const double); +template void SparseLUDecomposition::copy_from (const SparseMatrix &); +template void SparseLUDecomposition::copy_from (const SparseMatrix &); + + template class SparseLUDecomposition; template void SparseLUDecomposition::decompose (const SparseMatrix &, const double); template void SparseLUDecomposition::decompose (const SparseMatrix &, const double); + +template void SparseLUDecomposition::copy_from (const SparseMatrix &); +template void SparseLUDecomposition::copy_from (const SparseMatrix &);