COIN-OR::LEMON - Graph Library

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


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/jacint
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • src/work/jacint/graph_gen.h

    r605 r921  
    1111// ///\author Marton Makai
    1212
    13 namespace hugo {
     13namespace lemon {
    1414
    1515
     
    118118  }
    119119 
    120 } //namespace hugo
     120} //namespace lemon
  • src/work/jacint/ledacomp.cc

    r581 r921  
    4242// }
    4343
    44 using namespace hugo;
     44using namespace lemon;
    4545
    4646int main() {
  • src/work/jacint/max_flow.h

    r709 r921  
    11// -*- C++ -*-
    2 #ifndef HUGO_MAX_FLOW_H
    3 #define HUGO_MAX_FLOW_H
     2#ifndef LEMON_MAX_FLOW_H
     3#define LEMON_MAX_FLOW_H
    44
    55#include <vector>
     
    77#include <stack>
    88
    9 #include <hugo/graph_wrapper.h>
     9#include <lemon/graph_wrapper.h>
    1010#include <bfs_dfs.h>
    11 #include <hugo/invalid.h>
    12 #include <hugo/maps.h>
    13 #include <hugo/for_each_macros.h>
     11#include <lemon/invalid.h>
     12#include <lemon/maps.h>
     13#include <lemon/for_each_macros.h>
    1414
    1515/// \file
     
    1717/// \ingroup galgs
    1818
    19 namespace hugo {
     19namespace lemon {
    2020
    2121  /// \addtogroup galgs
     
    11941194
    11951195      dfs.pushAndSetReached
    1196         ///\bug hugo 0.2
     1196        ///\bug lemon 0.2
    11971197        (typename ErasingResGW::Node
    11981198         (typename FilterResGW::Node
     
    12611261
    12621262
    1263 } //namespace hugo
    1264 
    1265 #endif //HUGO_MAX_FLOW_H
    1266 
    1267 
    1268 
    1269 
     1263} //namespace lemon
     1264
     1265#endif //LEMON_MAX_FLOW_H
     1266
     1267
     1268
     1269
  • src/work/jacint/max_flow_bug.cc

    r757 r921  
    11#include <iostream>
    22
    3 //#include <hugo/list_graph.h>
     3//#include <lemon/list_graph.h>
    44#include <sage_graph.h>
    5 #include <hugo/dimacs.h>
    6 #include <hugo/max_flow.h>
     5#include <lemon/dimacs.h>
     6#include <lemon/max_flow.h>
    77//#include <max_flow_no_stack.h>
    8 #include <hugo/time_measure.h>
     8#include <lemon/time_measure.h>
    99
    10 using namespace hugo;
     10using namespace lemon;
    1111
    1212int main(int, char **) {
  • src/work/jacint/max_flow_test.cc

    r757 r921  
    11#include <iostream>
    22
    3 #include <hugo/list_graph.h>
    4 #include <hugo/dimacs.h>
     3#include <lemon/list_graph.h>
     4#include <lemon/dimacs.h>
    55#include <max_flow.h>
    66#include <max_flow_no_stack.h>
    7 #include <hugo/time_measure.h>
     7#include <lemon/time_measure.h>
    88
    9 using namespace hugo;
     9using namespace lemon;
    1010
    1111int main(int, char **) {
  • src/work/jacint/max_matching.cc

    r536 r921  
    1111#include <graph_wrapper.h>
    1212
    13 using namespace hugo;
     13using namespace lemon;
    1414
    1515int main(int, char **) {
  • src/work/jacint/max_matching.h

    r682 r921  
    11// -*- C++ -*-
    2 #ifndef HUGO_MAX_MATCHING_H
    3 #define HUGO_MAX_MATCHING_H
     2#ifndef LEMON_MAX_MATCHING_H
     3#define LEMON_MAX_MATCHING_H
    44
    55///\ingroup galgs
     
    1212#include <unionfind.h>
    1313
    14 namespace hugo {
     14namespace lemon {
    1515
    1616  /// \addtogroup galgs
     
    565565  /// @}
    566566 
    567 } //END OF NAMESPACE HUGO
     567} //END OF NAMESPACE LEMON
    568568
    569569#endif //EDMONDS_H
  • src/work/jacint/max_save.h

    r620 r921  
    11// -*- C++ -*-
    2 #ifndef HUGO_MAX_FLOW_H
    3 #define HUGO_MAX_FLOW_H
     2#ifndef LEMON_MAX_FLOW_H
     3#define LEMON_MAX_FLOW_H
    44
    55///\ingroup galgs
     
    2323/// \brief Dimacs file format reader.
    2424
    25 namespace hugo {
     25namespace lemon {
    2626
    2727  /// \addtogroup galgs
     
    11281128  /// @}
    11291129 
    1130 } //END OF NAMESPACE HUGO
    1131 
    1132 #endif //HUGO_MAX_FLOW_H
    1133 
    1134 
    1135 
    1136 
     1130} //END OF NAMESPACE LEMON
     1131
     1132#endif //LEMON_MAX_FLOW_H
     1133
     1134
     1135
     1136
  • src/work/jacint/preflow.cc

    r470 r921  
    66#include <time_measure.h>
    77
    8 using namespace hugo;
     8using namespace lemon;
    99
    1010int main(int, char **) {
  • src/work/jacint/preflow_excess.h

    r437 r921  
    4444*/
    4545
    46 #ifndef HUGO_PREFLOW_H
    47 #define HUGO_PREFLOW_H
     46#ifndef LEMON_PREFLOW_H
     47#define LEMON_PREFLOW_H
    4848
    4949#define H0 20
     
    5454#include <stack>
    5555
    56 namespace hugo {
     56namespace lemon {
    5757
    5858  template <typename Graph, typename T,
     
    656656  };
    657657
    658 } //namespace hugo
     658} //namespace lemon
    659659
    660660#endif //PREFLOW_H
  • src/work/jacint/preflow_excess_test.cc

    r437 r921  
    1212#include <time_measure.h>
    1313
    14 using namespace hugo;
     14using namespace lemon;
    1515
    1616int main(int, char **) {
  • src/work/jacint/preflow_res.h

    r444 r921  
    11// -*- C++ -*-
    22//The same as preflow.h, using ResGraphWrapper
    3 #ifndef HUGO_PREFLOW_RES_H
    4 #define HUGO_PREFLOW_RES_H
     3#ifndef LEMON_PREFLOW_RES_H
     4#define LEMON_PREFLOW_RES_H
    55
    66#define H0 20
     
    1313#include<iostream>
    1414
    15 namespace hugo {
     15namespace lemon {
    1616
    1717  template <typename Graph, typename T,
     
    487487  };
    488488
    489 } //namespace hugo
    490 
    491 #endif //HUGO_PREFLOW_RES_H
    492 
    493 
    494 
    495 
     489} //namespace lemon
     490
     491#endif //LEMON_PREFLOW_RES_H
     492
     493
     494
     495
  • src/work/jacint/prim.cc

    r258 r921  
    1111#include <fib_heap.h>
    1212
    13 using namespace hugo;
     13using namespace lemon;
    1414
    1515int main(int, char **) {
  • src/work/jacint/prim.h

    r211 r921  
    3030 */
    3131
    32 #ifndef HUGO_PRIM_H
    33 #define HUGO_PRIM_H
     32#ifndef LEMON_PRIM_H
     33#define LEMON_PRIM_H
    3434
    3535#include <fib_heap.h>
    3636#include <invalid.h>
    3737
    38 namespace hugo {
     38namespace lemon {
    3939
    4040  template <typename Graph, typename T,
Note: See TracChangeset for help on using the changeset viewer.