From f1e52b154d44cafa4cd824cca6fa7e01aefff545 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 9 Sep 1998 19:01:12 +0000 Subject: [PATCH] Remove use of non-existent function. git-svn-id: https://svn.dealii.org/trunk@595 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/mg_dof_handler.cc | 9 +-------- deal.II/deal.II/source/multigrid/mg_dof_handler.cc | 9 +-------- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/deal.II/deal.II/source/dofs/mg_dof_handler.cc b/deal.II/deal.II/source/dofs/mg_dof_handler.cc index 942ed37613..c1ce677a99 100644 --- a/deal.II/deal.II/source/dofs/mg_dof_handler.cc +++ b/deal.II/deal.II/source/dofs/mg_dof_handler.cc @@ -1026,21 +1026,14 @@ void MGDoFHandler::make_sparsity_pattern (const unsigned int level, + template void MGDoFHandler::renumber_dofs (const unsigned int level, const RenumberingMethod method, - const bool use_constraints, const vector &starting_points) { // make the connection graph dSMatrixStruct sparsity (n_dofs(level), max_couplings_between_dofs()); make_sparsity_pattern (level, sparsity); - - if (use_constraints) - { - ConstraintMatrix constraints; - make_constraint_matrix (level, constraints); - constraints.condense (sparsity); - }; int n_dofs = sparsity.n_rows(); // store the new dof numbers; -1 means diff --git a/deal.II/deal.II/source/multigrid/mg_dof_handler.cc b/deal.II/deal.II/source/multigrid/mg_dof_handler.cc index 942ed37613..c1ce677a99 100644 --- a/deal.II/deal.II/source/multigrid/mg_dof_handler.cc +++ b/deal.II/deal.II/source/multigrid/mg_dof_handler.cc @@ -1026,21 +1026,14 @@ void MGDoFHandler::make_sparsity_pattern (const unsigned int level, + template void MGDoFHandler::renumber_dofs (const unsigned int level, const RenumberingMethod method, - const bool use_constraints, const vector &starting_points) { // make the connection graph dSMatrixStruct sparsity (n_dofs(level), max_couplings_between_dofs()); make_sparsity_pattern (level, sparsity); - - if (use_constraints) - { - ConstraintMatrix constraints; - make_constraint_matrix (level, constraints); - constraints.condense (sparsity); - }; int n_dofs = sparsity.n_rows(); // store the new dof numbers; -1 means -- 2.39.5