COIN-OR::LEMON - Graph Library

Changeset 1946:17eb3eaad9f8 in lemon-0.x for lemon/graph_reader.h


Ignore:
Timestamp:
02/02/06 18:43:24 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2521
Message:
  • workaround for a Doxygen 1.4.6 bug
  • other doc fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_reader.h

    r1935 r1946  
    5555  /// it should skip the values when the string representation contains spaces.
    5656  ///
    57   /// \code
     57  ///\code
    5858  /// GraphReader<ListGraph> reader(std::cin, graph);
    59   /// \endcode
     59  ///\endcode
    6060  ///
    6161  /// The \c readNodeMap() function reads a map from the \c \@nodeset section.
     
    6565  /// parameters.
    6666  ///
    67   /// \code
     67  ///\code
    6868  /// reader.readNodeMap("coords", coords);
    6969  ///
     
    7171  ///
    7272  /// reader.readNodeMap("color", colorMap);
    73   /// \endcode
     73  ///\endcode
    7474  ///
    7575  /// With the \c readEdgeMap() member function you can give an edge map
    7676  /// reading command similar to the NodeMaps.
    7777  ///
    78   /// \code
     78  ///\code
    7979  /// reader.readEdgeMap("weight", weightMap);
    8080  /// reader.readEdgeMap("label", labelMap);
    81   /// \endcode
     81  ///\endcode
    8282  ///
    8383  /// With \c readNode() and \c readEdge() functions you can read
    8484  /// labeled Nodes and Edges.
    8585  ///
    86   /// \code
     86  ///\code
    8787  /// reader.readNode("source", sourceNode);
    8888  /// reader.readNode("target", targetNode);
    8989  ///
    9090  /// reader.readEdge("observed", edge);
    91   /// \endcode
     91  ///\endcode
    9292  ///
    9393  /// With the \c readAttribute() functions you can read an attribute
     
    9898  /// function, which executes all the commands.
    9999  ///
    100   /// \code
     100  ///\code
    101101  /// reader.run();
    102   /// \endcode
     102  ///\endcode
    103103  ///
    104104  /// \see DefaultReaderTraits
     
    399399  /// it should skip the values when the string representation contains spaces.
    400400  ///
    401   /// \code
     401  ///\code
    402402  /// UGraphReader<ListUGraph> reader(std::cin, graph);
    403   /// \endcode
     403  ///\endcode
    404404  ///
    405405  /// The \c readNodeMap() function reads a map from the \c \@nodeset section.
     
    409409  /// parameters.
    410410  ///
    411   /// \code
     411  ///\code
    412412  /// reader.readNodeMap("coords", coords);
    413413  ///
     
    415415  ///
    416416  /// reader.readNodeMap("color", colorMap);
    417   /// \endcode
     417  ///\endcode
    418418  ///
    419419  /// With the \c readUEdgeMap() member function you can give an
    420420  /// uedge map reading command similar to the NodeMaps.
    421421  ///
    422   /// \code
     422  ///\code
    423423  /// reader.readUEdgeMap("capacity", capacityMap);
    424   /// \endcode
     424  ///\endcode
    425425  ///
    426426  /// The reading of the directed edge maps is just a syntactical sugar.
     
    429429  /// \c '-' character and the same.
    430430  ///
    431   /// \code
     431  ///\code
    432432  /// reader.readEdgeMap("flow", flowMap);
    433   /// \endcode
     433  ///\endcode
    434434  ///
    435435  /// With \c readNode() and \c readUEdge() functions you can read
    436436  /// labeled Nodes and UEdges.
    437437  ///
    438   /// \code
     438  ///\code
    439439  /// reader.readNode("source", sourceNode);
    440440  /// reader.readNode("target", targetNode);
    441441  ///
    442442  /// reader.readUEdge("observed", uEdge);
    443   /// \endcode
     443  ///\endcode
    444444  ///
    445445  /// With the \c readAttribute() functions you can read an attribute
     
    450450  /// function, which execute all the commands.
    451451  ///
    452   /// \code
     452  ///\code
    453453  /// reader.run();
    454   /// \endcode
     454  ///\endcode
    455455  ///
    456456  /// \see GraphReader
Note: See TracChangeset for help on using the changeset viewer.