Changeset 359:0eec1736ff1d in lemon-1.2 for lemon
- Timestamp:
- 11/04/08 21:25:15 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/nauty_reader.h
r358 r359 49 49 /// int num = 0; 50 50 /// SmartGraph graph; 51 /// while (readNauty (graph, std::cin)) {51 /// while (readNautyGraph(graph, std::cin)) { 52 52 /// PlanarityChecking<SmartGraph> pc(graph); 53 53 /// if (pc.run()) ++num; … … 62 62 ///\endcode 63 63 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) { 65 65 graph.clear(); 66 66
Note: See TracChangeset
for help on using the changeset viewer.