deallog << " index " << idx << " global_dof_index:" << v << ":\n";
const auto pair = fiv.interface_dof_to_dof_indices(idx);
- deallog << " dof indices: " << pair[0] << " | " << pair[1] << "\n";
+ deallog << " dof indices: " << static_cast<int>(pair[0]) << " | "
+ << static_cast<int>(pair[1]) << "\n";
++idx;
}
deallog << std::endl;
}
-
-template <int dim>
-void
-make_2_cells(Triangulation<dim> &tria);
-
-template <>
-void make_2_cells<2>(Triangulation<2> &tria)
+void make_2_cells(Triangulation<2> &tria)
{
const unsigned int dim = 2;
std::vector<unsigned int> repetitions = {2, 1};
GridGenerator::subdivided_hyper_rectangle(tria, repetitions, p1, p2);
}
-template <>
-void make_2_cells<3>(Triangulation<3> &tria)
+void make_2_cells(Triangulation<3> &tria)
{
const unsigned int dim = 3;
std::vector<unsigned int> repetitions = {2, 1, 1};
n_current_interface_dofs(): 8
interface_dof_indices: 0 1 2 3 4 5 6 7
index 0 global_dof_index:0:
- dof indices: 0 | 4294967295
+ dof indices: 0 | -1
index 1 global_dof_index:1:
- dof indices: 1 | 4294967295
+ dof indices: 1 | -1
index 2 global_dof_index:2:
- dof indices: 2 | 4294967295
+ dof indices: 2 | -1
index 3 global_dof_index:3:
- dof indices: 3 | 4294967295
+ dof indices: 3 | -1
index 4 global_dof_index:4:
- dof indices: 4294967295 | 0
+ dof indices: -1 | 0
index 5 global_dof_index:5:
- dof indices: 4294967295 | 1
+ dof indices: -1 | 1
index 6 global_dof_index:6:
- dof indices: 4294967295 | 2
+ dof indices: -1 | 2
index 7 global_dof_index:7:
- dof indices: 4294967295 | 3
+ dof indices: -1 | 3
DEAL::** interface on level 1: **
n_current_interface_dofs(): 8
interface_dof_indices: 0 1 2 3 4 5 6 7
index 0 global_dof_index:0:
- dof indices: 0 | 4294967295
+ dof indices: 0 | -1
index 1 global_dof_index:1:
- dof indices: 1 | 4294967295
+ dof indices: 1 | -1
index 2 global_dof_index:2:
- dof indices: 2 | 4294967295
+ dof indices: 2 | -1
index 3 global_dof_index:3:
- dof indices: 3 | 4294967295
+ dof indices: 3 | -1
index 4 global_dof_index:4:
- dof indices: 4294967295 | 0
+ dof indices: -1 | 0
index 5 global_dof_index:5:
- dof indices: 4294967295 | 1
+ dof indices: -1 | 1
index 6 global_dof_index:6:
- dof indices: 4294967295 | 2
+ dof indices: -1 | 2
index 7 global_dof_index:7:
- dof indices: 4294967295 | 3
+ dof indices: -1 | 3
DEAL::** boundary interface on cell 1 **
n_current_interface_dofs(): 4
interface_dof_indices: 4 5 6 7
index 0 global_dof_index:4:
- dof indices: 0 | 4294967295
+ dof indices: 0 | -1
index 1 global_dof_index:5:
- dof indices: 1 | 4294967295
+ dof indices: 1 | -1
index 2 global_dof_index:6:
- dof indices: 2 | 4294967295
+ dof indices: 2 | -1
index 3 global_dof_index:7:
- dof indices: 3 | 4294967295
+ dof indices: 3 | -1