... | ... |
@@ -56,6 +56,6 @@ |
56 | 56 |
/// int num = 0; |
57 | 57 |
/// SmartGraph graph; |
58 |
/// while(readNauty(std::cin, graph)) { |
|
59 |
/// PlanarityChecking<SmartUGraph> pc(graph); |
|
58 |
/// while (readNauty(graph, std::cin)) { |
|
59 |
/// PlanarityChecking<SmartGraph> pc(graph); |
|
60 | 60 |
/// if (pc.run()) ++num; |
61 | 61 |
/// } |
... | ... |
@@ -69,5 +69,5 @@ |
69 | 69 |
///\endcode |
70 | 70 |
template <typename Graph> |
71 |
std::istream& readNauty(std::istream& is |
|
71 |
std::istream& readNauty(Graph& graph, std::istream& is) { |
|
72 | 72 |
graph.clear(); |
73 | 73 |
|
0 comments (0 inline)