COIN-OR::LEMON - Graph Library

Changeset 271:951cd01495e7 in lemon-0.x


Ignore:
Timestamp:
03/31/04 18:39:42 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@377
Message:

makefile, you see...

Location:
src/work/marci
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/edmonds_karp_demo.cc

    r269 r271  
    9494    GW gw(G);
    9595    std::cout << "edmonds karp demo (physical blocking flow augmentation)..." << std::endl;
    96     GW::EdgeMap<int> flow(G); //0 flow
     96    GW::EdgeMap<int> flow(gw); //0 flow
    9797
    9898    Timer ts;
     
    125125    GW gw(G);
    126126    std::cout << "edmonds karp demo (physical blocking flow 1 augmentation)..." << std::endl;
    127     GW::EdgeMap<int> flow(G); //0 flow
     127    GW::EdgeMap<int> flow(gw); //0 flow
    128128
    129129    Timer ts;
     
    156156    GW gw(G);
    157157    std::cout << "edmonds karp demo (on-the-fly blocking flow augmentation)..." << std::endl;
    158     GW::EdgeMap<int> flow(G); //0 flow
     158    GW::EdgeMap<int> flow(gw); //0 flow
    159159
    160160    Timer ts;
  • src/work/marci/makefile

    r259 r271  
    1111
    1212LEDABINARIES = lg_vs_sg leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
    13 BINARIES = edmonds_karp_demo
     13BINARIES = edmonds_karp_demo gw_vs_not
    1414#preflow_demo_boost edmonds_karp_demo_boost preflow_demo_jacint preflow_demo_athos edmonds_karp_demo_alpar preflow_demo_leda
    1515
     
    4747#       $(CXX3) $(CXXFLAGS) -pg -o edmonds_karp_demo_prof edmonds_karp_demo.cc
    4848
     49gw_vs_not:
     50        $(CXX3) $(CXXFLAGS) -o gw_vs_not gw_vs_not.cc
     51
    4952lg_vs_sg:
    5053        $(CXX3) $(CXXFLAGS) -g -I. -I.. -o lg_vs_sg lg_vs_sg.cc
Note: See TracChangeset for help on using the changeset viewer.