lemon/lgf_reader.h
changeset 1414 73e29215aaa4
parent 1270 dceba191c00d
child 1377 7d32a2d6ed59
equal deleted inserted replaced
58:67022915da3c 59:de90d3499a9d
  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).