From 286caafb8481d1c1e45e9372bf05dceb80bc75c2 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 4 Nov 2012 23:03:52 +0000 Subject: [PATCH] Partial merge from the cmake branch: Remove old and likely unused compatibility code. git-svn-id: https://svn.dealii.org/trunk@27363 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/numerics/matrix_tools.cc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/deal.II/source/numerics/matrix_tools.cc b/deal.II/source/numerics/matrix_tools.cc index 84bf26e84e..94a3a8f7b3 100644 --- a/deal.II/source/numerics/matrix_tools.cc +++ b/deal.II/source/numerics/matrix_tools.cc @@ -651,7 +651,6 @@ namespace MatrixCreator SparseMatrix &matrix, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_mass_matrix(StaticMappingQ1::mapping, dof, q, matrix, coefficient); } @@ -707,7 +706,6 @@ namespace MatrixCreator Vector &rhs_vector, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_mass_matrix(StaticMappingQ1::mapping, dof, q, matrix, rhs, rhs_vector, coefficient); } @@ -756,7 +754,6 @@ namespace MatrixCreator SparseMatrix &matrix, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_mass_matrix(hp::StaticMappingQ1::mapping_collection, dof, q, matrix, coefficient); } @@ -808,7 +805,6 @@ namespace MatrixCreator Vector &rhs_vector, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_mass_matrix(hp::StaticMappingQ1::mapping_collection, dof, q, matrix, rhs, rhs_vector, coefficient); } @@ -1595,7 +1591,6 @@ namespace MatrixCreator const Function * const a, std::vector component_mapping) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_boundary_mass_matrix(StaticMappingQ1::mapping, dof, q, matrix,rhs, rhs_vector, dof_to_boundary_mapping, a, component_mapping); } @@ -1701,7 +1696,6 @@ namespace MatrixCreator const Function * const a, std::vector component_mapping) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_boundary_mass_matrix(hp::StaticMappingQ1::mapping_collection, dof, q, matrix,rhs, rhs_vector, dof_to_boundary_mapping, a, component_mapping); } @@ -1758,7 +1752,6 @@ namespace MatrixCreator SparseMatrix &matrix, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_laplace_matrix(StaticMappingQ1::mapping, dof, q, matrix, coefficient); } @@ -1818,7 +1811,6 @@ namespace MatrixCreator Vector &rhs_vector, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_laplace_matrix(StaticMappingQ1::mapping, dof, q, matrix, rhs, rhs_vector, coefficient); } @@ -1872,7 +1864,6 @@ namespace MatrixCreator SparseMatrix &matrix, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_laplace_matrix(hp::StaticMappingQ1::mapping_collection, dof, q, matrix, coefficient); } @@ -1929,7 +1920,6 @@ namespace MatrixCreator Vector &rhs_vector, const Function * const coefficient) { - Assert (DEAL_II_COMPAT_MAPPING, ExcCompatibility("mapping")); create_laplace_matrix(hp::StaticMappingQ1::mapping_collection, dof, q, matrix, rhs, rhs_vector, coefficient); } -- 2.39.5