// result of std::bind if the local
// integrators were, for example,
// non-static member functions.
- MeshWorker::loop<MeshWorker::IntegrationInfoBox<dim>, dim, dim>
+ MeshWorker::loop<MeshWorker::DoFInfo<dim>, MeshWorker::IntegrationInfoBox<dim>, dim, dim>
(dof_handler.begin_active(), dof_handler.end(),
dof_info, info_box,
&Step12<dim>::integrate_cell_term,
MeshWorker::IntegrationInfoBox<dim> info_box;
MeshWorker::DoFInfo<dim> dof_info(dof_handler);
info_box.initialize(integration_worker, fe, mapping);
- MeshWorker::loop<MeshWorker::IntegrationInfoBox<dim>, dim, dim>(
+ MeshWorker::loop<MeshWorker::DoFInfo<dim>, MeshWorker::IntegrationInfoBox<dim>, dim, dim>(
dof_handler.begin_active(), dof_handler.end(),
dof_info, info_box,
&MatrixIntegrator<dim>::cell,
MeshWorker::IntegrationInfoBox<dim> info_box;
MeshWorker::DoFInfo<dim> dof_info(mg_dof_handler);
info_box.initialize(integration_worker, fe, mapping);
- MeshWorker::loop<MeshWorker::IntegrationInfoBox<dim>, dim, dim> (
+ MeshWorker::loop<MeshWorker::DoFInfo<dim>, MeshWorker::IntegrationInfoBox<dim>, dim, dim> (
mg_dof_handler.begin(), mg_dof_handler.end(),
dof_info, info_box,
&MatrixIntegrator<dim>::cell,
MeshWorker::DoFInfo<dim> dof_info(dof_handler);
info_box.initialize(integration_worker, fe, mapping);
- MeshWorker::loop<MeshWorker::IntegrationInfoBox<dim>, dim, dim>(
+ MeshWorker::loop<MeshWorker::DoFInfo<dim>, MeshWorker::IntegrationInfoBox<dim>, dim, dim>(
dof_handler.begin_active(), dof_handler.end(),
dof_info, info_box,
&RHSIntegrator<dim>::cell,
MeshWorker::IntegrationInfoBox<dim> info_box;
MeshWorker::DoFInfo<dim> dof_info(dof_handler);
info_box.initialize(integration_worker, fe, mapping, solution_data);
- MeshWorker::loop<MeshWorker::IntegrationInfoBox<dim>, dim, dim> (
+ MeshWorker::loop<MeshWorker::DoFInfo<dim>, MeshWorker::IntegrationInfoBox<dim>, dim, dim> (
dof_handler.begin_active(), dof_handler.end(),
dof_info, info_box,
&Estimator<dim>::cell,