From 97828af7d39ea458b72e8e6f1f7d8a752bf6e1ec Mon Sep 17 00:00:00 2001 From: kanschat Date: Sun, 30 Oct 2011 04:39:17 +0000 Subject: [PATCH] add missing parameter git-svn-id: https://svn.dealii.org/trunk@24694 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/block_list_02.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/deal.II/block_list_02.cc b/tests/deal.II/block_list_02.cc index c925707d94..2ee211b6e6 100644 --- a/tests/deal.II/block_list_02.cc +++ b/tests/deal.II/block_list_02.cc @@ -63,7 +63,7 @@ test_block_list(const Triangulation& tr, const FiniteElement& fe) { deallog.push("ttt"); SparsityPattern bl; - DoFTools::make_vertex_patches(bl, dof, level, true, true, true); + DoFTools::make_vertex_patches(bl, dof, level, true, true, true, true); bl.compress(); print_patches(bl); deallog.pop(); @@ -90,7 +90,7 @@ test_block_list(const Triangulation& tr, const FiniteElement& fe) { deallog.push("ftt"); SparsityPattern bl; - DoFTools::make_vertex_patches(bl, dof, level, false, true, true); + DoFTools::make_vertex_patches(bl, dof, level, false, true, true, true); bl.compress(); print_patches(bl); deallog.pop(); -- 2.39.5