COIN-OR::LEMON - Graph Library

Changeset 927:d303bfa8b1ed in lemon-1.2 for test/graph_copy_test.cc


Ignore:
Timestamp:
08/08/11 13:13:03 (13 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
1.2
Phase:
public
Tags:
r1.2.2
Message:

Unify sources

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/graph_copy_test.cc

    r896 r927  
    33 * This file is a part of LEMON, a generic C++ optimization library.
    44 *
    5  * Copyright (C) 2003-2009
     5 * Copyright (C) 2003-2011
    66 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    77 * (Egervary Research Group on Combinatorial Optimization, EGRES).
     
    7171    nodeCrossRef(ncr).arcCrossRef(ecr).
    7272    node(fn, tn).arc(fa, ta).run();
    73  
     73
    7474  check(countNodes(from) == countNodes(to), "Wrong copy.");
    7575  check(countArcs(from) == countArcs(to), "Wrong copy.");
     
    9999  // Test repeated copy
    100100  digraphCopy(from, to).run();
    101  
     101
    102102  check(countNodes(from) == countNodes(to), "Wrong copy.");
    103103  check(countArcs(from) == countArcs(to), "Wrong copy.");
     
    201201  // Test repeated copy
    202202  graphCopy(from, to).run();
    203  
     203
    204204  check(countNodes(from) == countNodes(to), "Wrong copy.");
    205205  check(countEdges(from) == countEdges(to), "Wrong copy.");
Note: See TracChangeset for help on using the changeset viewer.