COIN-OR::LEMON - Graph Library

Changeset 921:818510fa3d99 in lemon-0.x for src/work/peter/path


Ignore:
Timestamp:
09/29/04 17:30:04 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
Message:

hugo -> lemon

Location:
src/work/peter/path
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/work/peter/path/debug.h

    r815 r921  
    11// -*- C++ -*- //
    22
    3 #ifndef HUGO_DEBUG_H
    4 #define HUGO_DEBUG_H
     3#ifndef LEMON_DEBUG_H
     4#define LEMON_DEBUG_H
    55
    66//! \file
    77//! \brief Basic definitions for debug control.
    88
    9 namespace hugo {
     9namespace lemon {
    1010
    1111  //! Debug mode for testing/debugging
     
    5454
    5555}
    56 #endif // HUGO_DEBUG_H
     56#endif // LEMON_DEBUG_H
  • src/work/peter/path/path.h

    r815 r921  
    44@defgroup paths Path Structures
    55@ingroup datas
    6 \brief Path structures implemented in Hugo.
    7 
    8 Hugolib provides flexible data structures
     6\brief Path structures implemented in LEMON.
     7
     8LEMON provides flexible data structures
    99to work with paths.
    1010
     
    1313algorithm to store its result in any kind of path structure.
    1414
    15 \sa hugo::skeleton::Path
     15\sa lemon::skeleton::Path
    1616
    1717*/
     
    2121///\brief Classes for representing paths in graphs.
    2222
    23 #ifndef HUGO_PATH_H
    24 #define HUGO_PATH_H
     23#ifndef LEMON_PATH_H
     24#define LEMON_PATH_H
    2525
    2626#include <deque>
     
    2828#include <algorithm>
    2929
    30 #include <hugo/invalid.h>
    31 #include <hugo/error.h>
     30#include <lemon/invalid.h>
     31#include <lemon/error.h>
    3232#include <debug.h>
    3333
    34 namespace hugo {
     34namespace lemon {
    3535
    3636  /// \addtogroup paths
     
    11701170  ///@}
    11711171
    1172 } // namespace hugo
    1173 
    1174 #endif // HUGO_PATH_H
     1172} // namespace lemon
     1173
     1174#endif // LEMON_PATH_H
  • src/work/peter/path/path_skeleton.h

    r815 r921  
    66///\brief Classes for representing paths in graphs.
    77
    8 #ifndef HUGO_PATH_H
    9 #define HUGO_PATH_H
    10 
    11 #include <hugo/invalid.h>
    12 
    13 namespace hugo {
     8#ifndef LEMON_PATH_H
     9#define LEMON_PATH_H
     10
     11#include <lemon/invalid.h>
     12
     13namespace lemon {
    1414  namespace skeleton {
    1515    /// \addtogroup skeletons
     
    219219  }
    220220 
    221 } // namespace hugo
    222 
    223 #endif // HUGO_PATH_H
     221} // namespace lemon
     222
     223#endif // LEMON_PATH_H
  • src/work/peter/path/path_test.cc

    r815 r921  
    66
    77using namespace std;
    8 using namespace hugo;
     8using namespace lemon;
    99using namespace skeleton;
    1010
Note: See TracChangeset for help on using the changeset viewer.