equal
deleted
inserted
replaced
1242 /// \e source and \e target nodes. This digraph can be read with the |
1242 /// \e source and \e target nodes. This digraph can be read with the |
1243 /// following code: |
1243 /// following code: |
1244 /// |
1244 /// |
1245 ///\code |
1245 ///\code |
1246 ///ListDigraph digraph; |
1246 ///ListDigraph digraph; |
1247 ///ListDigraph::ArcMap<int> cm(digraph); |
1247 ///ListDigraph::ArcMap<int> cap(digraph); |
1248 ///ListDigraph::Node src, trg; |
1248 ///ListDigraph::Node src, trg; |
1249 ///digraphReader(digraph, std::cin). |
1249 ///digraphReader(digraph, std::cin). |
1250 /// arcMap("capacity", cap). |
1250 /// arcMap("capacity", cap). |
1251 /// node("source", src). |
1251 /// node("source", src). |
1252 /// node("target", trg). |
1252 /// node("target", trg). |