From: kanschat Date: Sun, 30 Oct 2011 04:39:17 +0000 (+0000) Subject: add missing parameter X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97828af7d39ea458b72e8e6f1f7d8a752bf6e1ec;p=dealii-svn.git add missing parameter git-svn-id: https://svn.dealii.org/trunk@24694 0785d39b-7218-0410-832d-ea1e28bc413d --- 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();