From: bangerth Date: Mon, 23 Feb 2009 14:47:44 +0000 (+0000) Subject: Also instantiate functions for SparseMatrixEZ X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=765a8de868c7ff1c321a87ec699c84fcf99dc1c3;p=dealii-svn.git Also instantiate functions for SparseMatrixEZ git-svn-id: https://svn.dealii.org/trunk@18416 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_constraints.cc b/deal.II/deal.II/source/dofs/dof_constraints.cc index 0d661f9eba..aea1a7ae1f 100644 --- a/deal.II/deal.II/source/dofs/dof_constraints.cc +++ b/deal.II/deal.II/source/dofs/dof_constraints.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -24,6 +24,8 @@ #include #include #include +#include +#include #include #include #include @@ -2092,10 +2094,17 @@ distribute_local_to_global (const FullMatrix VectorType &) const MATRIX_FUNCTIONS(SparseMatrix, Vector); -MATRIX_FUNCTIONS(SparseMatrix, Vector); +MATRIX_FUNCTIONS(SparseMatrix, Vector); MATRIX_FUNCTIONS(BlockSparseMatrix, BlockVector); -MATRIX_FUNCTIONS(BlockSparseMatrix, BlockVector); +MATRIX_FUNCTIONS(BlockSparseMatrix, BlockVector); + +MATRIX_FUNCTIONS(SparseMatrixEZ, Vector); +MATRIX_FUNCTIONS(SparseMatrixEZ, Vector); + +// MATRIX_FUNCTIONS(BlockSparseMatrixEZ, Vector); +// MATRIX_FUNCTIONS(BlockSparseMatrixEZ, Vector); + #ifdef DEAL_II_USE_PETSC MATRIX_FUNCTIONS(PETScWrappers::SparseMatrix, PETScWrappers::Vector);