COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/maps_test.cc

    r998 r942  
    104104    NullMap<A,B> map1;
    105105    NullMap<A,B> map2 = map1;
    106     ignore_unused_variable_warning(map2);
    107106    map1 = nullMap<A,B>();
    108107  }
     
    115114    ConstMap<A,B> map2 = B();
    116115    ConstMap<A,B> map3 = map1;
    117     ignore_unused_variable_warning(map2,map3);
    118 
    119116    map1 = constMap<A>(B());
    120117    map1 = constMap<A,B>();
     
    122119    ConstMap<A,C> map4(C(1));
    123120    ConstMap<A,C> map5 = map4;
    124     ignore_unused_variable_warning(map5);
    125 
    126121    map4 = constMap<A>(C(2));
    127122    map4.setAll(C(3));
     
    144139    IdentityMap<A> map1;
    145140    IdentityMap<A> map2 = map1;
    146     ignore_unused_variable_warning(map2);
    147 
    148141    map1 = identityMap<A>();
    149142
     
    205198    checkConcept<ReadMap<B,double>, CompMap>();
    206199    CompMap map1 = CompMap(DoubleMap(),ReadMap<B,A>());
    207     ignore_unused_variable_warning(map1);
    208200    CompMap map2 = composeMap(DoubleMap(), ReadMap<B,A>());
    209     ignore_unused_variable_warning(map2);
    210201
    211202    SparseMap<double, bool> m1(false); m1[3.14] = true;
     
    220211    checkConcept<ReadMap<A,double>, CombMap>();
    221212    CombMap map1 = CombMap(DoubleMap(), DoubleMap());
    222     ignore_unused_variable_warning(map1);
    223213    CombMap map2 = combineMap(DoubleMap(), DoubleMap(), std::plus<double>());
    224     ignore_unused_variable_warning(map2);
    225214
    226215    check(combineMap(constMap<B,int,2>(), identityMap<B>(), &binc)[B()] == 3,
     
    234223    FunctorToMap<F> map1;
    235224    FunctorToMap<F> map2 = FunctorToMap<F>(F());
    236     ignore_unused_variable_warning(map2);
    237 
    238225    B b = functorToMap(F())[A()];
    239     ignore_unused_variable_warning(b);
    240226
    241227    checkConcept<ReadMap<A,B>, MapToFunctor<ReadMap<A,B> > >();
    242228    MapToFunctor<ReadMap<A,B> > map =
    243229      MapToFunctor<ReadMap<A,B> >(ReadMap<A,B>());
    244     ignore_unused_variable_warning(map);
    245230
    246231    check(functorToMap(&func)[A()] == 3,
     
    260245      ConvertMap<ReadMap<double, int>, double> >();
    261246    ConvertMap<RangeMap<bool>, int> map1(rangeMap(1, true));
    262     ignore_unused_variable_warning(map1);
    263247    ConvertMap<RangeMap<bool>, int> map2 = convertMap<int>(rangeMap(2, false));
    264     ignore_unused_variable_warning(map2);
    265 
    266248  }
    267249
Note: See TracChangeset for help on using the changeset viewer.