From: Guido Kanschat Date: Mon, 24 Jun 2013 10:00:53 +0000 (+0000) Subject: on our way... X-Git-Tag: v8.0.0~251 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30ccb1b55ae2bbe4b494f3d818fe1ac63327ccb5;p=dealii.git on our way... git-svn-id: https://svn.dealii.org/trunk@29867 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/mesh_worker_matrix_01.cc b/tests/mpi/mesh_worker_matrix_01.cc index e1c69284cd..81b9555612 100644 --- a/tests/mpi/mesh_worker_matrix_01.cc +++ b/tests/mpi/mesh_worker_matrix_01.cc @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -149,8 +150,13 @@ test_simple(DoFHandler& dofs, bool faces) MeshWorker::Assembler::MatrixSimple assembler; assembler.initialize(matrix); + FilteredIterator::active_cell_iterator> + cell(IteratorFilters::LocallyOwnedCell(), dofs.begin_active()); + FilteredIterator::active_cell_iterator> + end(IteratorFilters::LocallyOwnedCell(), dofs.end()); + MeshWorker::loop, MeshWorker::IntegrationInfoBox > - (dofs.begin_active(), dofs.end(), + (cell, end, dof_info, info_box, std_cxx1x::bind (&Local::cell, local, std_cxx1x::_1, std_cxx1x::_2), std_cxx1x::bind (&Local::bdry, local, std_cxx1x::_1, std_cxx1x::_2),