# HG changeset patch
# User Alpar Juttner <alpar@cs.elte.hu>
# Date 1225872704 0
# Node ID 51597950d0fe0dfc124696b999aafbc9a8ca14e7
# Parent  f58410582b9bac22c553618b60d5fce2ad4e89ab# Parent  0eec1736ff1d6c4ed5904121ec2d3b93bc1c7f9c
Merge

diff -r f58410582b9b -r 51597950d0fe lemon/nauty_reader.h
--- a/lemon/nauty_reader.h	Tue Nov 04 21:37:59 2008 +0100
+++ b/lemon/nauty_reader.h	Wed Nov 05 08:11:44 2008 +0000
@@ -38,7 +38,7 @@
   /// graphs of several classes with given node number (e.g.
   /// general, connected, biconnected, triangle-free, 4-cycle-free,
   /// bipartite and graphs with given edge number and degree
-  /// constraints). This function reads a \e nauty \e graph \e format
+  /// constraints). This function reads a \e nauty \e graph6 \e format
   /// line from the given stream and builds it in the given graph.
   ///
   /// The site of nauty package: http://cs.anu.edu.au/~bdm/nauty/
@@ -48,7 +48,7 @@
   ///\code
   /// int num = 0;
   /// SmartGraph graph;
-  /// while (readNauty(graph, std::cin)) {
+  /// while (readNautyGraph(graph, std::cin)) {
   ///   PlanarityChecking<SmartGraph> pc(graph);
   ///   if (pc.run()) ++num;
   /// }
@@ -61,7 +61,7 @@
   /// ./geng -c 10 | ./num_of_planar_graphs
   ///\endcode
   template <typename Graph>
-  std::istream& readNauty(Graph& graph, std::istream& is = std::cin) {
+  std::istream& readNautyGraph(Graph& graph, std::istream& is = std::cin) {
     graph.clear();
 
     std::string line;
diff -r f58410582b9b -r 51597950d0fe tools/lemon-0.x-to-1.x.sh
--- a/tools/lemon-0.x-to-1.x.sh	Tue Nov 04 21:37:59 2008 +0100
+++ b/tools/lemon-0.x-to-1.x.sh	Wed Nov 05 08:11:44 2008 +0000
@@ -90,6 +90,7 @@
         -e "s/\<StoreBoolMap\>/LoggerBoolMap/g"\
         -e "s/\<storeBoolMap\>/loggerBoolMap/g"\
         -e "s/\<BoundingBox\>/Box/g"\
+        -e "s/\<readNauty\>/readNautyGraph/g"\
     <$i > $TMP
     mv $TMP $i
 done