From 627785091e869845699f305a0d41bc015e9c60c9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 7 Nov 2013 20:27:45 +0000 Subject: [PATCH] Rename namespace. Add some more documentation. git-svn-id: https://svn.dealii.org/trunk@31576 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/base/graph_coloring_01.cc | 2 +- tests/base/graph_coloring_02.cc | 2 +- tests/base/graph_coloring_02a.cc | 2 +- tests/base/graph_coloring_03.cc | 2 +- tests/base/graph_coloring_04.cc | 2 +- tests/base/graph_coloring_05.cc | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/base/graph_coloring_01.cc b/tests/base/graph_coloring_01.cc index ed4be3f137..752e50034d 100644 --- a/tests/base/graph_coloring_01.cc +++ b/tests/base/graph_coloring_01.cc @@ -57,7 +57,7 @@ void check() // Create the coloring typename DoFHandler::active_cell_iterator cell(dof_handler.begin_active()); std::vector::active_cell_iterator> > coloring( - graph_coloring::make_graph_coloring(cell,dof_handler.end(), + GraphColoring::make_graph_coloring(cell,dof_handler.end(), std_cxx1x::function (typename DoFHandler::active_cell_iterator const &)> (&get_conflict_indices_cfem))); diff --git a/tests/base/graph_coloring_02.cc b/tests/base/graph_coloring_02.cc index 456732eb36..b789d039d3 100644 --- a/tests/base/graph_coloring_02.cc +++ b/tests/base/graph_coloring_02.cc @@ -67,7 +67,7 @@ void check() // Create the coloring std::vector::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 (typename DoFHandler::active_cell_iterator const &)> (&get_conflict_indices_cfem))); diff --git a/tests/base/graph_coloring_02a.cc b/tests/base/graph_coloring_02a.cc index 274aa39979..c91af9dcb3 100644 --- a/tests/base/graph_coloring_02a.cc +++ b/tests/base/graph_coloring_02a.cc @@ -71,7 +71,7 @@ void check() // Create the coloring std::vector::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 (typename DoFHandler::active_cell_iterator const &)> (&get_conflict_indices_cfem))); diff --git a/tests/base/graph_coloring_03.cc b/tests/base/graph_coloring_03.cc index 3db85f0e9f..c354cd7ba1 100644 --- a/tests/base/graph_coloring_03.cc +++ b/tests/base/graph_coloring_03.cc @@ -69,7 +69,7 @@ void check() // Create the coloring std::vector::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 (typename hp::DoFHandler::active_cell_iterator const &)> (&get_conflict_indices_cfem))); diff --git a/tests/base/graph_coloring_04.cc b/tests/base/graph_coloring_04.cc index 901430bc8a..9ff6fd11d2 100644 --- a/tests/base/graph_coloring_04.cc +++ b/tests/base/graph_coloring_04.cc @@ -80,7 +80,7 @@ void check () cell != stokes_dof_handler.end(); ++cell) cell->clear_user_flag (); std::vector::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 ( const typename DoFHandler::active_cell_iterator &)>(&get_conflict_indices)); diff --git a/tests/base/graph_coloring_05.cc b/tests/base/graph_coloring_05.cc index f3d92deb3d..3961368d98 100644 --- a/tests/base/graph_coloring_05.cc +++ b/tests/base/graph_coloring_05.cc @@ -68,7 +68,7 @@ void check() // Create the coloring std::vector::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 (typename DoFHandler::active_cell_iterator const &)> (&get_conflict_indices_cfem))); -- 2.39.5