COIN-OR::LEMON - Graph Library

Changeset 1090:c1a959df3b2c in lemon for test


Ignore:
Timestamp:
10/24/11 21:40:31 (12 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
1.2
Parents:
1085:7340bd3e008c (diff), 1087:b96574ff36ec (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge #428 and #429 to branch 1.2

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • test/lgf_test.cc

    r1078 r1089  
    118118        run();
    119119    }
    120     catch (FormatError& error)
     120    catch (FormatError&)
    121121      {
    122122        ok = true;
     
    132132        run();
    133133    }
    134     catch (FormatError& error)
     134    catch (FormatError&)
    135135      {
    136136        ok = true;
     
    147147        run();
    148148    }
    149     catch (FormatError& error)
     149    catch (FormatError&)
    150150      {
    151151        ok = true;
     
    161161        run();
    162162    }
    163     catch (FormatError& error)
     163    catch (FormatError&)
    164164      {
    165165        ok = true;
  • test/lgf_test.cc

    r1087 r1089  
    6464
    6565
    66 int main() 
     66int main()
    6767{
    6868  {
    69     ListDigraph d; 
     69    ListDigraph d;
    7070    ListDigraph::Node s,t;
    7171    ListDigraph::ArcMap<int> label(d);
     
    9494
    9595  {
    96     ListDigraph d; 
     96    ListDigraph d;
    9797    std::istringstream input(test_lgf_nomap);
    9898    digraphReader(d, input).
     
    111111
    112112  {
    113     ListDigraph d; 
     113    ListDigraph d;
    114114    std::istringstream input(test_lgf_bad1);
    115115    bool ok=false;
     
    140140
    141141  {
    142     ListDigraph d; 
     142    ListDigraph d;
    143143    std::istringstream input(test_lgf_bad2);
    144144    bool ok=false;
Note: See TracChangeset for help on using the changeset viewer.