// Create the coloring
typename DoFHandler<dim>::active_cell_iterator cell(dof_handler.begin_active());
std::vector<std::vector<typename DoFHandler<dim>::active_cell_iterator> > coloring(
- graph_coloring::make_graph_coloring(cell,dof_handler.end(),
+ GraphColoring::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>)));
// Create the coloring
std::vector<std::vector<typename DoFHandler<dim>::active_cell_iterator> > coloring(
- graph_coloring::make_graph_coloring(dof_handler.begin_active(),dof_handler.end(),
+ GraphColoring::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>)));
// Create the coloring
std::vector<std::vector<typename DoFHandler<dim>::active_cell_iterator> > coloring(
- graph_coloring::make_graph_coloring(dof_handler.begin_active(),dof_handler.end(),
+ GraphColoring::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>)));
// Create the coloring
std::vector<std::vector<typename hp::DoFHandler<dim>::active_cell_iterator> > coloring(
- graph_coloring::make_graph_coloring(dof_handler.begin_active(),dof_handler.end(),
+ GraphColoring::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>)));
cell != stokes_dof_handler.end(); ++cell)
cell->clear_user_flag ();
std::vector<std::vector<typename DoFHandler<dim>::active_cell_iterator> > coloring
- = graph_coloring::make_graph_coloring(stokes_dof_handler.begin_active(),
+ = GraphColoring::make_graph_coloring(stokes_dof_handler.begin_active(),
stokes_dof_handler.end(),
std_cxx1x::function<std::vector<types::global_dof_index> (
const typename DoFHandler<dim>::active_cell_iterator &)>(&get_conflict_indices<dim>));
// Create the coloring
std::vector<std::vector<typename DoFHandler<dim>::active_cell_iterator> > coloring(
- graph_coloring::make_graph_coloring(dof_handler.begin_active(),dof_handler.end(),
+ GraphColoring::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>)));