COIN-OR::LEMON - Graph Library

Changeset 921:818510fa3d99 in lemon-0.x for src/test/graph_test.cc


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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/graph_test.cc

    r919 r921  
    11/* -*- C++ -*-
    2  * src/test/graph_test.cc - Part of HUGOlib, a generic C++ optimization library
     2 * src/test/graph_test.cc - Part of LEMON, a generic C++ optimization library
    33 *
    44 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     
    1616
    1717#include<iostream>
    18 #include<hugo/smart_graph.h>
    19 #include<hugo/skeletons/graph.h>
    20 #include<hugo/list_graph.h>
    21 #include<hugo/full_graph.h>
     18#include<lemon/smart_graph.h>
     19#include<lemon/skeletons/graph.h>
     20#include<lemon/list_graph.h>
     21#include<lemon/full_graph.h>
    2222
    2323#include"test_tools.h"
     
    3434*/
    3535
    36 using namespace hugo;
     36using namespace lemon;
    3737
    3838template<class Graph> void bidirPetersen(Graph &G)
     
    6969
    7070//Compile Graph
    71 template void hugo::checkCompileStaticGraph<skeleton::StaticGraph>
     71template void lemon::checkCompileStaticGraph<skeleton::StaticGraph>
    7272(skeleton::StaticGraph &);
    7373
    74 template void hugo::checkCompileGraph<skeleton::ExtendableGraph>
     74template void lemon::checkCompileGraph<skeleton::ExtendableGraph>
    7575(skeleton::ExtendableGraph &);
    7676
    77 template void hugo::checkCompileErasableGraph<skeleton::ErasableGraph>
     77template void lemon::checkCompileErasableGraph<skeleton::ErasableGraph>
    7878(skeleton::ErasableGraph &);
    7979
    8080//Compile SmartGraph
    81 template void hugo::checkCompileGraph<SmartGraph>(SmartGraph &);
    82 template void hugo::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
     81template void lemon::checkCompileGraph<SmartGraph>(SmartGraph &);
     82template void lemon::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &);
    8383
    8484//Compile SymSmartGraph
    85 template void hugo::checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
    86 template void hugo::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
     85template void lemon::checkCompileGraph<SymSmartGraph>(SymSmartGraph &);
     86template void lemon::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &);
    8787
    8888//Compile ListGraph
    89 template void hugo::checkCompileGraph<ListGraph>(ListGraph &);
    90 template void hugo::checkCompileErasableGraph<ListGraph>(ListGraph &);
    91 template void hugo::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
     89template void lemon::checkCompileGraph<ListGraph>(ListGraph &);
     90template void lemon::checkCompileErasableGraph<ListGraph>(ListGraph &);
     91template void lemon::checkCompileGraphFindEdge<ListGraph>(ListGraph &);
    9292
    9393
    9494//Compile SymListGraph
    95 template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &);
    96 template void hugo::checkCompileErasableGraph<SymListGraph>(SymListGraph &);
    97 template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
     95template void lemon::checkCompileGraph<SymListGraph>(SymListGraph &);
     96template void lemon::checkCompileErasableGraph<SymListGraph>(SymListGraph &);
     97template void lemon::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &);
    9898
    9999//Compile FullGraph
    100 template void hugo::checkCompileStaticGraph<FullGraph>(FullGraph &);
    101 template void hugo::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
     100template void lemon::checkCompileStaticGraph<FullGraph>(FullGraph &);
     101template void lemon::checkCompileGraphFindEdge<FullGraph>(FullGraph &);
    102102
    103103//Compile EdgeSet <ListGraph>
    104 template void hugo::checkCompileGraph<EdgeSet <ListGraph> >
     104template void lemon::checkCompileGraph<EdgeSet <ListGraph> >
    105105(EdgeSet <ListGraph> &);
    106 template void hugo::checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
     106template void lemon::checkCompileGraphEraseEdge<EdgeSet <ListGraph> >
    107107(EdgeSet <ListGraph> &);
    108 template void hugo::checkCompileGraphFindEdge<EdgeSet <ListGraph> >
     108template void lemon::checkCompileGraphFindEdge<EdgeSet <ListGraph> >
    109109(EdgeSet <ListGraph> &);
    110110
    111111//Compile EdgeSet <NodeSet>
    112 template void hugo::checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &);
    113 template void hugo::checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
     112template void lemon::checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &);
     113template void lemon::checkCompileGraphEraseEdge<EdgeSet <NodeSet> >
    114114(EdgeSet <NodeSet> &);
    115 template void hugo::checkCompileGraphFindEdge<EdgeSet <NodeSet> >
     115template void lemon::checkCompileGraphFindEdge<EdgeSet <NodeSet> >
    116116(EdgeSet <NodeSet> &);
    117117
Note: See TracChangeset for help on using the changeset viewer.