From: kanschat Date: Mon, 24 Jun 2013 10:00:53 +0000 (+0000) Subject: on our way... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7b022e736afd668c3f33117933b24b2842ad249;p=dealii-svn.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),