COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/dijkstra.h

    r286 r287  
    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
    148147    static PredMap *createPredMap(const Digraph &g)
    149148    {
     
    156155    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    157156    ///By default it is a NullMap.
    158     ///\todo If it is set to a real map,
    159     ///Dijkstra::processed() should read this.
    160157    typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
    161158    ///Instantiates a \ref ProcessedMap.
     
    298295    bool local_heap;
    299296
    300     ///Creates the maps if necessary.
    301     ///\todo Better memory allocation (instead of new).
     297    //Creates the maps if necessary.
    302298    void create_maps()
    303299    {
     
    966962    /// \param g is the digraph, to which we would like to define the
    967963    /// HeapCrossRef.
    968     /// \todo The digraph alone may be insufficient for the initialization
    969964    static HeapCrossRef *createHeapCrossRef(const Digraph &g)
    970965    {
     
    1002997    ///\param g is the digraph, to which we would like to define the
    1003998    ///\ref PredMap.
    1004     ///\todo The digraph alone may be insufficient to initialize
    1005999    static PredMap *createPredMap(const Digraph &g)
    10061000    {
     
    10131007    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    10141008    ///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.
    10181009    typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
    10191010    ///Instantiates a \ref ProcessedMap.
     
    10611052  /// The \ref DijkstraWizardBase is a class to be the default traits of the
    10621053  /// \ref DijkstraWizard class.
    1063   /// \todo More named parameters are required...
    10641054  template<class GR,class LM>
    10651055  class DijkstraWizardBase : public DijkstraWizardDefaultTraits<GR,LM>
Note: See TracChangeset for help on using the changeset viewer.