COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/dijkstra.h

    r287 r286  
    145145    ///\param g is the digraph, to which we would like to define the
    146146    ///\ref PredMap.
     147    ///\todo The digraph alone may be insufficient for the initialization
    147148    static PredMap *createPredMap(const Digraph &g)
    148149    {
     
    155156    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    156157    ///By default it is a NullMap.
     158    ///\todo If it is set to a real map,
     159    ///Dijkstra::processed() should read this.
    157160    typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
    158161    ///Instantiates a \ref ProcessedMap.
     
    295298    bool local_heap;
    296299
    297     //Creates the maps if necessary.
     300    ///Creates the maps if necessary.
     301    ///\todo Better memory allocation (instead of new).
    298302    void create_maps()
    299303    {
     
    962966    /// \param g is the digraph, to which we would like to define the
    963967    /// HeapCrossRef.
     968    /// \todo The digraph alone may be insufficient for the initialization
    964969    static HeapCrossRef *createHeapCrossRef(const Digraph &g)
    965970    {
     
    9971002    ///\param g is the digraph, to which we would like to define the
    9981003    ///\ref PredMap.
     1004    ///\todo The digraph alone may be insufficient to initialize
    9991005    static PredMap *createPredMap(const Digraph &g)
    10001006    {
     
    10071013    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    10081014    ///By default it is a NullMap.
     1015    ///\todo If it is set to a real map,
     1016    ///Dijkstra::processed() should read this.
     1017    ///\todo named parameter to set this type, function to read and write.
    10091018    typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
    10101019    ///Instantiates a \ref ProcessedMap.
     
    10521061  /// The \ref DijkstraWizardBase is a class to be the default traits of the
    10531062  /// \ref DijkstraWizard class.
     1063  /// \todo More named parameters are required...
    10541064  template<class GR,class LM>
    10551065  class DijkstraWizardBase : public DijkstraWizardDefaultTraits<GR,LM>
Note: See TracChangeset for help on using the changeset viewer.