void
myIntegrator<dim>::cell(MeshWorker::DoFInfo<dim> &info, CellInfo &) const
{
- //deallog << "C " << info.cell->id() << std::endl;
+ deallog << "C " << info.cell->id() << std::endl;
}
myIntegrator<dim>::face(MeshWorker::DoFInfo<dim> &info1, MeshWorker::DoFInfo<dim> &info2,
CellInfo &, CellInfo &) const
{
-// deallog << "F cell1 = " << info1.cell->id()
-// << " face = " << info1.face_number
-// << " cell2 = " << info2.cell->id()
-// << " face2 = " << info2.face_number
-// << std::endl;
+ deallog << "F cell1 = " << info1.cell->id()
+ << " face = " << info1.face_number
+ << " cell2 = " << info2.cell->id()
+ << " face2 = " << info2.face_number
+ << std::endl;
}
lctrl.own_cells = false;
lctrl.ghost_cells = false;
- lctrl.own_faces = MeshWorker::LoopControl::one;
+ lctrl.own_faces = MeshWorker::LoopControl::never;
lctrl.faces_to_ghost = MeshWorker::LoopControl::never;
test_loop(dofs, lctrl);
}
DEAL:0::DoFHandler ndofs=7
-DEAL:0::* own_cells=0 ghost_cells=0 own_faces=1 faces_to_ghost=0
+DEAL:0::* own_cells=0 ghost_cells=0 own_faces=0 faces_to_ghost=0
DEAL:0::B cell = 0_2:00 face = 0
DEAL:0::B cell = 0_2:00 face = 2
DEAL:0::B cell = 0_2:01 face = 2
DEAL:0::B cell = 0_2:02 face = 0
DEAL:1::DoFHandler ndofs=7
-DEAL:1::* own_cells=0 ghost_cells=0 own_faces=1 faces_to_ghost=0
+DEAL:1::* own_cells=0 ghost_cells=0 own_faces=0 faces_to_ghost=0
DEAL:1::B cell = 0_1:1 face = 1
DEAL:1::B cell = 0_1:1 face = 2
DEAL:1::B cell = 0_1:2 face = 0