COIN-OR::LEMON - Graph Library

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


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/benchmark
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/benchmark/bench_tools.h

    r750 r921  
    11// -*- mode:C++ -*-
    2 #ifndef HUGO_BENCH_TEST_H
    3 #define HUGO_BENCH_TEST_H
     2#ifndef LEMON_BENCH_TEST_H
     3#define LEMON_BENCH_TEST_H
    44
    55#include<vector>
    66#include<iostream>
    77
    8 #include<hugo/time_measure.h>
     8#include<lemon/time_measure.h>
    99
    1010///An experimental typedef factory
     
    7575};
    7676
    77 inline void PrintTime(char *ID,hugo::Timer &T)
     77inline void PrintTime(char *ID,lemon::Timer &T)
    7878{
    79   hugo::TimeStamp S(T);
     79  lemon::TimeStamp S(T);
    8080  std::cout << ID << ' ' << S.getUserTime() << ' '
    8181            << S.getSystemTime() << ' ' << S.getRealTime() << std::endl;
  • src/benchmark/bfs-bench.cc

    r839 r921  
    33#include <queue>
    44#include<math.h>
    5 #include<hugo/smart_graph.h>
     5#include<lemon/smart_graph.h>
    66#include"bench_tools.h"
    77
    88using namespace std;
    9 using namespace hugo;
     9using namespace lemon;
    1010
    1111inline int numOfOnes(int n,int dim)
  • src/benchmark/graph-bench.cc

    r718 r921  
    11#include<math.h>
    2 #include<hugo/list_graph.h>
     2#include<lemon/list_graph.h>
    33
    44#include"bench_tools.h"
    55
    6 using namespace hugo;
     6using namespace lemon;
    77
    88///Makes a full graph by adding and deleting a lot of edges;
     
    4646int main()
    4747{
    48   hugo::Timer T;
     48  lemon::Timer T;
    4949  makeFullGraph<ListGraph>(nextPrim(1000),nextPrim(300),nextPrim(100));
    5050 
  • src/benchmark/hcube.cc

    r905 r921  
    22
    33#include<math.h>
    4 #include<hugo/list_graph.h>
    5 #include<hugo/smart_graph.h>
    6 #include<hugo/dijkstra.h>
    7 #include<hugo/preflow.h>
     4#include<lemon/list_graph.h>
     5#include<lemon/smart_graph.h>
     6#include<lemon/dijkstra.h>
     7#include<lemon/preflow.h>
    88
    99#include"bench_tools.h"
    1010
    1111using namespace std;
    12 using namespace hugo;
     12using namespace lemon;
    1313
    1414inline int numOfOnes(int n,int dim)
Note: See TracChangeset for help on using the changeset viewer.