COIN-OR::LEMON - Graph Library

Changeset 359:0eec1736ff1d in lemon-main


Ignore:
Timestamp:
11/04/08 21:25:15 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Rename readNauty() to readNautyGraph() (#55)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/nauty_reader.h

    r358 r359  
    4949  /// int num = 0;
    5050  /// SmartGraph graph;
    51   /// while (readNauty(graph, std::cin)) {
     51  /// while (readNautyGraph(graph, std::cin)) {
    5252  ///   PlanarityChecking<SmartGraph> pc(graph);
    5353  ///   if (pc.run()) ++num;
     
    6262  ///\endcode
    6363  template <typename Graph>
    64   std::istream& readNauty(Graph& graph, std::istream& is = std::cin) {
     64  std::istream& readNautyGraph(Graph& graph, std::istream& is = std::cin) {
    6565    graph.clear();
    6666
  • tools/lemon-0.x-to-1.x.sh

    r344 r359  
    9191        -e "s/\<storeBoolMap\>/loggerBoolMap/g"\
    9292        -e "s/\<BoundingBox\>/Box/g"\
     93        -e "s/\<readNauty\>/readNautyGraph/g"\
    9394    <$i > $TMP
    9495    mv $TMP $i
Note: See TracChangeset for help on using the changeset viewer.