From f888fc810a0203d70d2fabdd0844f138ca12d3f3 Mon Sep 17 00:00:00 2001 From: kanschat Date: Mon, 25 Jan 2010 21:31:12 +0000 Subject: [PATCH] step 39 works again git-svn-id: https://svn.dealii.org/trunk@20451 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-39/step-39.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-39/step-39.cc b/deal.II/examples/step-39/step-39.cc index 54097ff146..51fd293606 100644 --- a/deal.II/examples/step-39/step-39.cc +++ b/deal.II/examples/step-39/step-39.cc @@ -453,7 +453,7 @@ Step39::assemble_mg_matrix() MeshWorker::IntegrationInfoBox info_box(mg_dof_handler); info_box.initialize(integration_worker, assembler, fe, mapping); MeshWorker::integration_loop( - dof_handler.begin_active(), dof_handler.end(), + mg_dof_handler.begin(), mg_dof_handler.end(), info_box, &MatrixIntegrator::cell, &MatrixIntegrator::bdry, @@ -600,7 +600,7 @@ Step39::estimate() out_data.add(est, "cells"); assembler.initialize(out_data, false); MeshWorker::IntegrationInfoBox info_box(dof_handler); - info_box.initialize(integration_worker, assembler, fe, mapping); + info_box.initialize(integration_worker, assembler, fe, mapping, solution_data); MeshWorker::integration_loop ( dof_handler.begin_active(), dof_handler.end(), info_box, -- 2.39.5