From: Guido Kanschat Date: Sun, 28 Mar 2010 19:48:46 +0000 (+0000) Subject: ignore additional output files X-Git-Tag: v8.0.0~6267 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf31f685c232248339127d6a69d315b07bc020f6;p=dealii.git ignore additional output files git-svn-id: https://svn.dealii.org/trunk@20903 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-12/step-12.cc b/deal.II/examples/step-12/step-12.cc index 64322d2285..69c8ffdeba 100644 --- a/deal.II/examples/step-12/step-12.cc +++ b/deal.II/examples/step-12/step-12.cc @@ -387,7 +387,7 @@ void Step12::assemble_system () // result of std::bind if the local // integrators were, for example, // non-static member functions. - MeshWorker::loop, dim, dim> + MeshWorker::loop, MeshWorker::IntegrationInfoBox, dim, dim> (dof_handler.begin_active(), dof_handler.end(), dof_info, info_box, &Step12::integrate_cell_term, diff --git a/deal.II/examples/step-39/step-39.cc b/deal.II/examples/step-39/step-39.cc index c125ed4845..af29011009 100644 --- a/deal.II/examples/step-39/step-39.cc +++ b/deal.II/examples/step-39/step-39.cc @@ -446,7 +446,7 @@ Step39::assemble_matrix() MeshWorker::IntegrationInfoBox info_box; MeshWorker::DoFInfo dof_info(dof_handler); info_box.initialize(integration_worker, fe, mapping); - MeshWorker::loop, dim, dim>( + MeshWorker::loop, MeshWorker::IntegrationInfoBox, dim, dim>( dof_handler.begin_active(), dof_handler.end(), dof_info, info_box, &MatrixIntegrator::cell, @@ -473,7 +473,7 @@ Step39::assemble_mg_matrix() MeshWorker::IntegrationInfoBox info_box; MeshWorker::DoFInfo dof_info(mg_dof_handler); info_box.initialize(integration_worker, fe, mapping); - MeshWorker::loop, dim, dim> ( + MeshWorker::loop, MeshWorker::IntegrationInfoBox, dim, dim> ( mg_dof_handler.begin(), mg_dof_handler.end(), dof_info, info_box, &MatrixIntegrator::cell, @@ -503,7 +503,7 @@ Step39::assemble_right_hand_side() MeshWorker::DoFInfo dof_info(dof_handler); info_box.initialize(integration_worker, fe, mapping); - MeshWorker::loop, dim, dim>( + MeshWorker::loop, MeshWorker::IntegrationInfoBox, dim, dim>( dof_handler.begin_active(), dof_handler.end(), dof_info, info_box, &RHSIntegrator::cell, @@ -624,7 +624,7 @@ Step39::estimate() MeshWorker::IntegrationInfoBox info_box; MeshWorker::DoFInfo dof_info(dof_handler); info_box.initialize(integration_worker, fe, mapping, solution_data); - MeshWorker::loop, dim, dim> ( + MeshWorker::loop, MeshWorker::IntegrationInfoBox, dim, dim> ( dof_handler.begin_active(), dof_handler.end(), dof_info, info_box, &Estimator::cell,