From: nicolacavallini Date: Mon, 11 Apr 2016 14:47:38 +0000 (+0200) Subject: matrix creator instantiation X-Git-Tag: v8.5.0-rc1~1110^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f02dbcd2aedaaea69b6f4b646bd99b6ee641a1f1;p=dealii.git matrix creator instantiation restored codimension zero instatiation deleted blank line --- diff --git a/source/numerics/matrix_creator.inst.in b/source/numerics/matrix_creator.inst.in index 181cebd506..ca84d978bc 100644 --- a/source/numerics/matrix_creator.inst.in +++ b/source/numerics/matrix_creator.inst.in @@ -382,3 +382,44 @@ for (deal_II_dimension : DIMENSIONS; deal_II_space_dimension : SPACE_DIMENSIONS #endif } +for (deal_II_dimension : DIMENSIONS; deal_II_space_dimension : SPACE_DIMENSIONS) + { +#if deal_II_dimension < deal_II_space_dimension + // non-hp version of create_laplace_matrix + template + void MatrixCreator::create_laplace_matrix + (const Mapping &mapping, + const DoFHandler &dof, + const Quadrature &q, + SparseMatrix &matrix, + const Function * const coefficient, + const ConstraintMatrix &constraints); + template + void MatrixCreator::create_laplace_matrix + (const DoFHandler &dof, + const Quadrature &q, + SparseMatrix &matrix, + const Function * const coefficient, + const ConstraintMatrix &constraints); + template + void MatrixCreator::create_laplace_matrix + (const Mapping &mapping, + const DoFHandler &dof, + const Quadrature &q, + SparseMatrix &matrix, + const Function &rhs, + Vector &rhs_vector, + const Function * const coefficient, + const ConstraintMatrix &constraints); + template + void MatrixCreator::create_laplace_matrix + (const DoFHandler &dof, + const Quadrature &q, + SparseMatrix &matrix, + const Function &rhs, + Vector &rhs_vector, + const Function * const coefficient, + const ConstraintMatrix &constraints); +#endif + } +