COIN-OR::LEMON - Graph Library

Changeset 959:c80ef5912903 in lemon-0.x for src/work


Ignore:
Timestamp:
11/04/04 21:24:59 (20 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1342
Message:

skeleton(s) -> concept renaming

Location:
src/work
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • src/work/Doxyfile

    r939 r959  
    397397                         ../../doc/groups.dox \
    398398                         ../lemon \
    399                          ../lemon/skeletons \
     399                         ../lemon/concept \
    400400                         ../test/test_tools.h \
    401401                         klao/path.h \
  • src/work/alpar/dijkstra.h

    r955 r959  
    101101  ///This class provides an efficient implementation of %Dijkstra algorithm.
    102102  ///The edge lengths are passed to the algorithm using a
    103   ///\ref skeleton::ReadMap "ReadMap",
     103  ///\ref concept::ReadMap "ReadMap",
    104104  ///so it is easy to change it to any kind of length.
    105105  ///
    106106  ///The type of the length is determined by the
    107   ///\ref skeleton::ReadMap::ValueType "ValueType" of the length map.
     107  ///\ref concept::ReadMap::ValueType "ValueType" of the length map.
    108108  ///
    109109  ///It is also possible to change the underlying priority heap.
     
    118118  ///may involve in relatively time consuming process to compute the edge
    119119  ///length if it is necessary. The default map type is
    120   ///\ref skeleton::StaticGraph::EdgeMap "Graph::EdgeMap<int>".
     120  ///\ref concept::StaticGraph::EdgeMap "Graph::EdgeMap<int>".
    121121  ///The value of LM is not used directly by Dijkstra, it
    122122  ///is only passed to \ref DijkstraDefaultTraits.
  • src/work/alpar/list_graph_demo.cc

    r921 r959  
    11#include<list_graph.h>
    2 #include<skeletons/graph.h>
     2#include<concept/graph.h>
    33
    44#include <iostream>
  • src/work/marci/bfs_mm_test.cc

    r944 r959  
    1818#include <lemon/smart_graph.h>
    1919#include <bfs_mm.h>
    20 #include <lemon/skeletons/graph.h>
     20#include <lemon/concept/graph.h>
    2121
    2222using namespace lemon;
     
    2727void check_Bfs_Compile()
    2828{
    29   typedef skeleton::StaticGraph Graph;
     29  typedef concept::StaticGraph Graph;
    3030
    3131  typedef Graph::Edge Edge;
  • src/work/peter/path/path.h

    r921 r959  
    1313algorithm to store its result in any kind of path structure.
    1414
    15 \sa lemon::skeleton::Path
     15\sa lemon::concept::Path
    1616
    1717*/
  • src/work/peter/path/path_skeleton.h

    r921 r959  
    22// -*- c++ -*- //
    33
    4 ///\ingroup skeletons
     4///\ingroup concept
    55///\file
    66///\brief Classes for representing paths in graphs.
     
    1212
    1313namespace lemon {
    14   namespace skeleton {
    15     /// \addtogroup skeletons
     14  namespace concept {
     15    /// \addtogroup concept
    1616    /// @{
    1717   
    1818   
    19     //! \brief A skeletom structure for representing directed paths in a graph.
     19    //! \brief A skeleton structure for representing directed paths in a graph.
    2020    //!
    2121    //! A skeleton structure for representing directed paths in a graph.
     
    8686       * \brief Iterator class to iterate on the edges of the paths
    8787       *
    88        * \ingroup skeletons
     88       * \ingroup concept
    8989       * This class is used to iterate on the edges of the paths
    9090       *
     
    119119       * \brief Iterator class to iterate on the nodes of the paths
    120120       *
    121        * \ingroup skeletons
     121       * \ingroup concept
    122122       * This class is used to iterate on the nodes of the paths
    123123       *
     
    154154       * \brief Class to build paths
    155155       *
    156        * \ingroup skeletons
     156       * \ingroup concept
    157157       * This class is used to fill a path with edges.
    158158       *
  • src/work/peter/path/path_test.cc

    r921 r959  
    77using namespace std;
    88using namespace lemon;
    9 using namespace skeleton;
     9using namespace concept;
    1010
    1111bool passed = true;
Note: See TracChangeset for help on using the changeset viewer.