COIN-OR::LEMON - Graph Library

Changeset 1910:f95eea8c34b0 in lemon-0.x for demo


Ignore:
Timestamp:
01/26/06 17:24:40 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2485
Message:

Bipartite => Bp
Upper => A
Lower => B

+ some bug fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • demo/topology_demo.cc

    r1909 r1910  
    6060  connectedComponents(graph, compMap);
    6161
    62   graphToEps(graph, "connected_components.eps").u().
     62  graphToEps(graph, "connected_components.eps").undirected().
    6363    coords(coords).scaleToA4().enableParallel().
    6464    parEdgeDist(20.0).edgeWidthScale(2.0).nodeScale(20.0).
     
    116116  biNodeConnectedComponents(graph, compMap);
    117117  biNodeConnectedCutNodes(graph, cutMap);
    118   graphToEps(graph, "bi_node_connected_components.eps").u().
     118
     119  graphToEps(graph, "bi_node_connected_components.eps").undirected().
    119120    coords(coords).scaleToA4().enableParallel().
    120121    parEdgeDist(20.0).edgeWidthScale(5.0).nodeScale(20.0).
     
    146147  biEdgeConnectedCutEdges(graph, cutMap);
    147148
    148   graphToEps(graph, "bi_edge_connected_components.eps").u().
     149  graphToEps(graph, "bi_edge_connected_components.eps").undirected().
    149150    coords(coords).scaleToA4().enableParallel().
    150151    parEdgeDist(20.0).edgeWidthScale(2.0).nodeScale(20.0).
     
    173174  bipartitePartitions(graph, partMap);
    174175
    175   graphToEps(graph, "bipartite_partitions.eps").u().
     176  graphToEps(graph, "bipartite_partitions.eps").undirected().
    176177    coords(coords).scaleToA4().enableParallel().
    177178    parEdgeDist(20.0).edgeWidthScale(2.0).nodeScale(20.0).
Note: See TracChangeset for help on using the changeset viewer.