From 53d19fe4452a6a582f5b89281c6263aeb9a655a5 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Tue, 16 Feb 2010 04:05:10 +0000 Subject: [PATCH] changed template signature in MeshWorker::loop git-svn-id: https://svn.dealii.org/trunk@20646 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/mesh_worker_01.cc | 3 +-- tests/deal.II/mesh_worker_02.cc | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/deal.II/mesh_worker_01.cc b/tests/deal.II/mesh_worker_01.cc index 37c57bb29f..e79f103b04 100644 --- a/tests/deal.II/mesh_worker_01.cc +++ b/tests/deal.II/mesh_worker_01.cc @@ -161,8 +161,7 @@ test_simple(MGDoFHandler& mgdofs) info_box.initialize(integrator, fe, mapping); MeshWorker::DoFInfo dof_info(dofs); - MeshWorker::loop - , MeshWorker::IntegrationInfoBox > + MeshWorker::loop, dim, dim> (dofs.begin_active(), dofs.end(), dof_info, info_box, std_cxx1x::bind (&Local::cell, local, _1, _2), diff --git a/tests/deal.II/mesh_worker_02.cc b/tests/deal.II/mesh_worker_02.cc index 9df0556486..382c220c70 100644 --- a/tests/deal.II/mesh_worker_02.cc +++ b/tests/deal.II/mesh_worker_02.cc @@ -149,8 +149,7 @@ assemble(const DoFHandler& dof_handler, SparseMatrix& matrix) MeshWorker::DoFInfo dof_info(dof_handler); info_box.initialize(integration_worker, fe, mapping); - MeshWorker::loop - , MeshWorker::IntegrationInfoBox > + MeshWorker::loop, dim, dim> (dof_handler.begin_active(), dof_handler.end(), dof_info, @@ -297,7 +296,7 @@ int main () deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); -// deallog.depth_console (0); + deallog.depth_console (0); std::vector > > fe2; fe2.push_back(boost::shared_ptr >(new FE_DGP<2>(1))); -- 2.39.5