Changes in / [362:51597950d0fe:361:f58410582b9b] in lemon-main
- Files:
-
- 2 edited
-
lemon/nauty_reader.h (modified) (3 diffs)
-
tools/lemon-0.x-to-1.x.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lemon/nauty_reader.h
r359 r352 39 39 /// general, connected, biconnected, triangle-free, 4-cycle-free, 40 40 /// bipartite and graphs with given edge number and degree 41 /// constraints). This function reads a \e nauty \e graph 6\e format41 /// constraints). This function reads a \e nauty \e graph \e format 42 42 /// line from the given stream and builds it in the given graph. 43 43 /// … … 49 49 /// int num = 0; 50 50 /// SmartGraph graph; 51 /// while (readNauty Graph(graph, std::cin)) {51 /// while (readNauty(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& graph, std::istream& is = std::cin) {64 std::istream& readNauty(Graph& graph, std::istream& is = std::cin) { 65 65 graph.clear(); 66 66 -
tools/lemon-0.x-to-1.x.sh
r359 r344 91 91 -e "s/\<storeBoolMap\>/loggerBoolMap/g"\ 92 92 -e "s/\<BoundingBox\>/Box/g"\ 93 -e "s/\<readNauty\>/readNautyGraph/g"\94 93 <$i > $TMP 95 94 mv $TMP $i
Note: See TracChangeset
for help on using the changeset viewer.

