//---------------------------- 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
template void SparseLUDecomposition<double>::decompose<float> (const SparseMatrix<float> &,
const double);
+template void SparseLUDecomposition<double>::copy_from<double> (const SparseMatrix<double> &);
+template void SparseLUDecomposition<double>::copy_from<float> (const SparseMatrix<float> &);
+
+
template class SparseLUDecomposition<float>;
template void SparseLUDecomposition<float>::decompose<double> (const SparseMatrix<double> &,
const double);
template void SparseLUDecomposition<float>::decompose<float> (const SparseMatrix<float> &,
const double);
+
+template void SparseLUDecomposition<float>::copy_from<double> (const SparseMatrix<double> &);
+template void SparseLUDecomposition<float>::copy_from<float> (const SparseMatrix<float> &);