From: bangerth Date: Thu, 7 Nov 2013 20:27:45 +0000 (+0000) Subject: Rename namespace. Add some more documentation. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=155136aaf8f0696726ab46c80bec7106e802004e;p=dealii-svn.git Rename namespace. Add some more documentation. git-svn-id: https://svn.dealii.org/trunk@31576 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)));