std::vector<std::vector<typename DoFHandler<dim>::active_cell_iterator> > coloring(
graph_coloring::make_graph_coloring(cell,dof_handler.end(),
std_cxx1x::function<std::vector<types::global_dof_index> (typename
- DoFHandler<dim>::active_cell_iterator const &)> (get_conflict_indices_cfem<dim>)));
+ DoFHandler<dim>::active_cell_iterator const &)> (&get_conflict_indices_cfem<dim>)));
// Output the coloring
for (unsigned int color=0; color<coloring.size(); ++color)
std::vector<std::vector<typename DoFHandler<dim>::active_cell_iterator> > coloring(
graph_coloring::make_graph_coloring(dof_handler.begin_active(),dof_handler.end(),
std_cxx1x::function<std::vector<types::global_dof_index> (typename
- DoFHandler<dim>::active_cell_iterator const &)> (get_conflict_indices_cfem<dim>)));
+ DoFHandler<dim>::active_cell_iterator const &)> (&get_conflict_indices_cfem<dim>)));
// Output the coloring
for (unsigned int color=0; color<coloring.size(); ++color)
std::vector<std::vector<typename hp::DoFHandler<dim>::active_cell_iterator> > coloring(
graph_coloring::make_graph_coloring(dof_handler.begin_active(),dof_handler.end(),
std_cxx1x::function<std::vector<types::global_dof_index> (typename
- hp::DoFHandler<dim>::active_cell_iterator const &)> (get_conflict_indices_cfem<dim>)));
+ hp::DoFHandler<dim>::active_cell_iterator const &)> (&get_conflict_indices_cfem<dim>)));
// Output the coloring
for (unsigned int color=0; color<coloring.size(); ++color)
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams