for (unsigned int i = 0; i < sizes.size (); ++i)
sizes[i].resize (dof.get_fe ().n_blocks ());
-
- MGTools::count_dofs_per_block (dof, sizes);
+
+//TODO[MB]:
+ Assert (false, ExcMessage("Markus: This still needs to be fixed, it doesn't compile."));
+// MGTools::count_dofs_per_block (dof, sizes);
levels.resize (sizes.size ());
for (unsigned int i = 0; i < sizes.size (); ++i)
- template <>
- void
- make_boundary_list(
- const DoFHandler<1,1>&,
- const FunctionMap<1>::type&,
- std::vector<std::set<unsigned int> >&,
- const std::vector<bool>&)
- {
- Assert(false, ExcNotImplemented());
- }
-
-
-
template <>
void
make_boundary_list(
- template <>
- void
- make_boundary_list(
- const DoFHandler<1,2>&,
- const FunctionMap<1>::type&,
- std::vector<std::set<unsigned int> >&,
- const std::vector<bool>&)
- {
- Assert(false, ExcNotImplemented());
- }
-
-
-
template <int dim, int spacedim>
void
make_boundary_list(
#include <deal.II/dofs/dof_handler.h>
#include <deal.II/hp/dof_handler.h>
-#include <deal.II/numerics/vectors.templates.h>
+#include <deal.II/numerics/vector_tools.templates.h>
DEAL_II_NAMESPACE_OPEN