std::cout << "Degree = " << degree << std::endl;
// First generate the
- // triangulation, the Boundary
- // and the Mapping object as
+ // triangulation, the boundary
+ // and the mapping object as
// already seen.
Triangulation<dim> triangulation;
GridGenerator::hyper_ball (triangulation);
const QGauss<dim-1> quadrature(4);
// We loop over all degrees, create
- // the Triangulation, the Boundary,
- // the Mapping, the dummy
- // FiniteElement and the DoFHandler
+ // the triangulation, the boundary,
+ // the mapping, the dummy
+ // finite element and the DoFHandler
// object as seen before.
for (unsigned int degree=1; degree<5; ++degree)
{
hanging_node_constraints.condense (matrix);
hanging_node_constraints.condense (residual);
- // Boundary values are, too, but with a
+ // %Boundary values are, too, but with a
// twist this time: in all previous example
// programs, we have used that by default
// (i.e. unless something else is set), all
// already, but for didactic reasons it
// was more appropriate to handle it
// after discussing boundary
- // objects). Boundary indicators in
+ // objects). %Boundary indicators in
// deal.II, for mostly historic reasons,
// serve a dual purpose: they describe
// the type of a boundary for other