COIN-OR::LEMON - Graph Library

Changeset 2081:94a7deb46c07 in lemon-0.x for demo/descriptor_map_demo.cc


Ignore:
Timestamp:
05/12/06 17:29:42 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2744
Message:

New demo file for computing disjoint paths

Doc review

Correcting misformatting in adaptors
Adding header to demos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • demo/descriptor_map_demo.cc

    r1956 r2081  
    1717 */
    1818
     19/// \ingroup demos
     20/// \file
     21/// \brief Using descriptor map and own special map types.
     22///
     23/// This demo shows how can be used the DescriptorMap class
     24/// which helps to use unique label for each node or edge.
     25/// And it gives an example how easy is creating own map types.
     26///
     27/// \include descriptor_map_demo.cc
     28
    1929#include <lemon/list_graph.h>
    2030#include <lemon/graph_utils.h>
     
    3141using namespace lemon;
    3242
    33 // Special map type
    34 // It gives back a position for each node. The position of the nodes
     43// Special xy<double> map type
     44//
     45// It gives back a position for each node. The position of the nodes
    3546// are on the circle with the given center and radius.
    3647//
    37 // Because we use the descriptor map it will hold the proprty described above
    38 // even if a node added or deleted.
     48// Because we use the descriptor map it will hold the proprty
     49// described above even if a node added or deleted.
    3950template <typename Graph>
    4051class CircleMap {
Note: See TracChangeset for help on using the changeset viewer.