test/maps_test.cc
author Alpar Juttner <alpar@cs.elte.hu>
Wed, 07 Nov 2012 18:10:07 +0100
branch1.1
changeset 1168 b78a46fe8002
parent 1081 f1398882a928
parent 1157 761fe0846f49
child 1258 bdfc038f364c
permissions -rw-r--r--
Merge bugfix #440 to branch 1.1
alpar@209
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@25
     2
 *
alpar@209
     3
 * This file is a part of LEMON, a generic C++ optimization library.
alpar@25
     4
 *
alpar@1081
     5
 * Copyright (C) 2003-2011
alpar@25
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@25
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@25
     8
 *
alpar@25
     9
 * Permission to use, modify and distribute this software is granted
alpar@25
    10
 * provided that this copyright notice appears in all copies. For
alpar@25
    11
 * precise terms see the accompanying LICENSE file.
alpar@25
    12
 *
alpar@25
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@25
    14
 * express or implied, and with no claim as to its suitability for any
alpar@25
    15
 * purpose.
alpar@25
    16
 *
alpar@25
    17
 */
alpar@25
    18
alpar@25
    19
#include <deque>
alpar@25
    20
#include <set>
alpar@25
    21
alpar@25
    22
#include <lemon/concept_check.h>
alpar@25
    23
#include <lemon/concepts/maps.h>
alpar@25
    24
#include <lemon/maps.h>
kpeter@731
    25
#include <lemon/list_graph.h>
alpar@25
    26
alpar@25
    27
#include "test_tools.h"
alpar@25
    28
alpar@25
    29
using namespace lemon;
alpar@25
    30
using namespace lemon::concepts;
alpar@25
    31
alpar@25
    32
struct A {};
alpar@25
    33
inline bool operator<(A, A) { return true; }
alpar@25
    34
struct B {};
alpar@25
    35
kpeter@94
    36
class C {
kpeter@94
    37
  int x;
kpeter@94
    38
public:
kpeter@94
    39
  C(int _x) : x(_x) {}
kpeter@94
    40
};
kpeter@94
    41
alpar@25
    42
class F {
alpar@25
    43
public:
alpar@25
    44
  typedef A argument_type;
alpar@25
    45
  typedef B result_type;
alpar@25
    46
kpeter@80
    47
  B operator()(const A&) const { return B(); }
kpeter@80
    48
private:
kpeter@80
    49
  F& operator=(const F&);
alpar@25
    50
};
alpar@25
    51
kpeter@80
    52
int func(A) { return 3; }
alpar@25
    53
kpeter@80
    54
int binc(int a, B) { return a+1; }
alpar@25
    55
kpeter@80
    56
typedef ReadMap<A, double> DoubleMap;
kpeter@80
    57
typedef ReadWriteMap<A, double> DoubleWriteMap;
kpeter@80
    58
typedef ReferenceMap<A, double, double&, const double&> DoubleRefMap;
alpar@25
    59
kpeter@80
    60
typedef ReadMap<A, bool> BoolMap;
alpar@25
    61
typedef ReadWriteMap<A, bool> BoolWriteMap;
kpeter@80
    62
typedef ReferenceMap<A, bool, bool&, const bool&> BoolRefMap;
alpar@25
    63
alpar@25
    64
int main()
kpeter@80
    65
{
kpeter@80
    66
  // Map concepts
alpar@25
    67
  checkConcept<ReadMap<A,B>, ReadMap<A,B> >();
kpeter@94
    68
  checkConcept<ReadMap<A,C>, ReadMap<A,C> >();
alpar@25
    69
  checkConcept<WriteMap<A,B>, WriteMap<A,B> >();
kpeter@94
    70
  checkConcept<WriteMap<A,C>, WriteMap<A,C> >();
alpar@25
    71
  checkConcept<ReadWriteMap<A,B>, ReadWriteMap<A,B> >();
kpeter@94
    72
  checkConcept<ReadWriteMap<A,C>, ReadWriteMap<A,C> >();
alpar@1081
    73
  checkConcept<ReferenceMap<A,B,B&,const B&>,
alpar@1081
    74
               ReferenceMap<A,B,B&,const B&> >();
alpar@1081
    75
  checkConcept<ReferenceMap<A,C,C&,const C&>,
alpar@1081
    76
               ReferenceMap<A,C,C&,const C&> >();
alpar@25
    77
kpeter@80
    78
  // NullMap
kpeter@80
    79
  {
kpeter@80
    80
    checkConcept<ReadWriteMap<A,B>, NullMap<A,B> >();
kpeter@80
    81
    NullMap<A,B> map1;
kpeter@80
    82
    NullMap<A,B> map2 = map1;
alpar@1157
    83
    ignore_unused_variable_warning(map2);
kpeter@80
    84
    map1 = nullMap<A,B>();
kpeter@80
    85
  }
kpeter@80
    86
kpeter@80
    87
  // ConstMap
kpeter@80
    88
  {
kpeter@80
    89
    checkConcept<ReadWriteMap<A,B>, ConstMap<A,B> >();
kpeter@123
    90
    checkConcept<ReadWriteMap<A,C>, ConstMap<A,C> >();
kpeter@80
    91
    ConstMap<A,B> map1;
deba@136
    92
    ConstMap<A,B> map2 = B();
kpeter@80
    93
    ConstMap<A,B> map3 = map1;
alpar@1157
    94
    ignore_unused_variable_warning(map2,map3);
alpar@1157
    95
kpeter@80
    96
    map1 = constMap<A>(B());
kpeter@123
    97
    map1 = constMap<A,B>();
kpeter@80
    98
    map1.setAll(B());
kpeter@123
    99
    ConstMap<A,C> map4(C(1));
kpeter@123
   100
    ConstMap<A,C> map5 = map4;
alpar@1157
   101
    ignore_unused_variable_warning(map5);
alpar@1157
   102
kpeter@123
   103
    map4 = constMap<A>(C(2));
kpeter@123
   104
    map4.setAll(C(3));
kpeter@82
   105
kpeter@80
   106
    checkConcept<ReadWriteMap<A,int>, ConstMap<A,int> >();
kpeter@80
   107
    check(constMap<A>(10)[A()] == 10, "Something is wrong with ConstMap");
kpeter@80
   108
kpeter@80
   109
    checkConcept<ReadWriteMap<A,int>, ConstMap<A,Const<int,10> > >();
kpeter@123
   110
    ConstMap<A,Const<int,10> > map6;
kpeter@123
   111
    ConstMap<A,Const<int,10> > map7 = map6;
kpeter@123
   112
    map6 = constMap<A,int,10>();
kpeter@123
   113
    map7 = constMap<A,Const<int,10> >();
alpar@210
   114
    check(map6[A()] == 10 && map7[A()] == 10,
alpar@210
   115
          "Something is wrong with ConstMap");
kpeter@80
   116
  }
kpeter@80
   117
kpeter@80
   118
  // IdentityMap
kpeter@80
   119
  {
kpeter@80
   120
    checkConcept<ReadMap<A,A>, IdentityMap<A> >();
kpeter@80
   121
    IdentityMap<A> map1;
kpeter@80
   122
    IdentityMap<A> map2 = map1;
alpar@1157
   123
    ignore_unused_variable_warning(map2);
alpar@1157
   124
kpeter@80
   125
    map1 = identityMap<A>();
kpeter@82
   126
kpeter@80
   127
    checkConcept<ReadMap<double,double>, IdentityMap<double> >();
alpar@210
   128
    check(identityMap<double>()[1.0] == 1.0 &&
alpar@210
   129
          identityMap<double>()[3.14] == 3.14,
kpeter@80
   130
          "Something is wrong with IdentityMap");
kpeter@80
   131
  }
kpeter@80
   132
kpeter@80
   133
  // RangeMap
kpeter@80
   134
  {
kpeter@80
   135
    checkConcept<ReferenceMap<int,B,B&,const B&>, RangeMap<B> >();
kpeter@80
   136
    RangeMap<B> map1;
kpeter@80
   137
    RangeMap<B> map2(10);
kpeter@80
   138
    RangeMap<B> map3(10,B());
kpeter@80
   139
    RangeMap<B> map4 = map1;
kpeter@80
   140
    RangeMap<B> map5 = rangeMap<B>();
kpeter@80
   141
    RangeMap<B> map6 = rangeMap<B>(10);
kpeter@80
   142
    RangeMap<B> map7 = rangeMap(10,B());
kpeter@80
   143
kpeter@80
   144
    checkConcept< ReferenceMap<int, double, double&, const double&>,
kpeter@80
   145
                  RangeMap<double> >();
kpeter@80
   146
    std::vector<double> v(10, 0);
kpeter@80
   147
    v[5] = 100;
kpeter@80
   148
    RangeMap<double> map8(v);
kpeter@80
   149
    RangeMap<double> map9 = rangeMap(v);
kpeter@80
   150
    check(map9.size() == 10 && map9[2] == 0 && map9[5] == 100,
kpeter@80
   151
          "Something is wrong with RangeMap");
kpeter@80
   152
  }
kpeter@80
   153
kpeter@80
   154
  // SparseMap
kpeter@80
   155
  {
kpeter@80
   156
    checkConcept<ReferenceMap<A,B,B&,const B&>, SparseMap<A,B> >();
kpeter@80
   157
    SparseMap<A,B> map1;
deba@136
   158
    SparseMap<A,B> map2 = B();
kpeter@80
   159
    SparseMap<A,B> map3 = sparseMap<A,B>();
kpeter@80
   160
    SparseMap<A,B> map4 = sparseMap<A>(B());
kpeter@80
   161
kpeter@80
   162
    checkConcept< ReferenceMap<double, int, int&, const int&>,
kpeter@80
   163
                  SparseMap<double, int> >();
kpeter@80
   164
    std::map<double, int> m;
kpeter@80
   165
    SparseMap<double, int> map5(m);
kpeter@80
   166
    SparseMap<double, int> map6(m,10);
kpeter@80
   167
    SparseMap<double, int> map7 = sparseMap(m);
kpeter@80
   168
    SparseMap<double, int> map8 = sparseMap(m,10);
kpeter@80
   169
alpar@210
   170
    check(map5[1.0] == 0 && map5[3.14] == 0 &&
alpar@210
   171
          map6[1.0] == 10 && map6[3.14] == 10,
kpeter@80
   172
          "Something is wrong with SparseMap");
kpeter@80
   173
    map5[1.0] = map6[3.14] = 100;
alpar@210
   174
    check(map5[1.0] == 100 && map5[3.14] == 0 &&
alpar@210
   175
          map6[1.0] == 10 && map6[3.14] == 100,
kpeter@80
   176
          "Something is wrong with SparseMap");
kpeter@80
   177
  }
kpeter@80
   178
kpeter@80
   179
  // ComposeMap
kpeter@80
   180
  {
kpeter@80
   181
    typedef ComposeMap<DoubleMap, ReadMap<B,A> > CompMap;
kpeter@80
   182
    checkConcept<ReadMap<B,double>, CompMap>();
alpar@554
   183
    CompMap map1 = CompMap(DoubleMap(),ReadMap<B,A>());
alpar@1157
   184
    ignore_unused_variable_warning(map1);
kpeter@80
   185
    CompMap map2 = composeMap(DoubleMap(), ReadMap<B,A>());
alpar@1157
   186
    ignore_unused_variable_warning(map2);
kpeter@82
   187
kpeter@80
   188
    SparseMap<double, bool> m1(false); m1[3.14] = true;
kpeter@80
   189
    RangeMap<double> m2(2); m2[0] = 3.0; m2[1] = 3.14;
alpar@210
   190
    check(!composeMap(m1,m2)[0] && composeMap(m1,m2)[1],
alpar@210
   191
          "Something is wrong with ComposeMap")
kpeter@80
   192
  }
kpeter@80
   193
kpeter@80
   194
  // CombineMap
kpeter@80
   195
  {
kpeter@80
   196
    typedef CombineMap<DoubleMap, DoubleMap, std::plus<double> > CombMap;
kpeter@80
   197
    checkConcept<ReadMap<A,double>, CombMap>();
alpar@554
   198
    CombMap map1 = CombMap(DoubleMap(), DoubleMap());
alpar@1157
   199
    ignore_unused_variable_warning(map1);
kpeter@80
   200
    CombMap map2 = combineMap(DoubleMap(), DoubleMap(), std::plus<double>());
alpar@1157
   201
    ignore_unused_variable_warning(map2);
kpeter@80
   202
kpeter@80
   203
    check(combineMap(constMap<B,int,2>(), identityMap<B>(), &binc)[B()] == 3,
kpeter@80
   204
          "Something is wrong with CombineMap");
kpeter@80
   205
  }
kpeter@80
   206
kpeter@80
   207
  // FunctorToMap, MapToFunctor
kpeter@80
   208
  {
kpeter@80
   209
    checkConcept<ReadMap<A,B>, FunctorToMap<F,A,B> >();
kpeter@80
   210
    checkConcept<ReadMap<A,B>, FunctorToMap<F> >();
kpeter@80
   211
    FunctorToMap<F> map1;
alpar@554
   212
    FunctorToMap<F> map2 = FunctorToMap<F>(F());
alpar@1157
   213
    ignore_unused_variable_warning(map2);
alpar@1157
   214
kpeter@80
   215
    B b = functorToMap(F())[A()];
alpar@1157
   216
    ignore_unused_variable_warning(b);
kpeter@80
   217
kpeter@80
   218
    checkConcept<ReadMap<A,B>, MapToFunctor<ReadMap<A,B> > >();
alpar@1157
   219
    MapToFunctor<ReadMap<A,B> > map =
alpar@1157
   220
      MapToFunctor<ReadMap<A,B> >(ReadMap<A,B>());
alpar@1157
   221
    ignore_unused_variable_warning(map);
kpeter@80
   222
alpar@210
   223
    check(functorToMap(&func)[A()] == 3,
alpar@210
   224
          "Something is wrong with FunctorToMap");
alpar@210
   225
    check(mapToFunctor(constMap<A,int>(2))(A()) == 2,
alpar@210
   226
          "Something is wrong with MapToFunctor");
alpar@210
   227
    check(mapToFunctor(functorToMap(&func))(A()) == 3 &&
alpar@210
   228
          mapToFunctor(functorToMap(&func))[A()] == 3,
kpeter@80
   229
          "Something is wrong with FunctorToMap or MapToFunctor");
kpeter@80
   230
    check(functorToMap(mapToFunctor(constMap<A,int>(2)))[A()] == 2,
kpeter@80
   231
          "Something is wrong with FunctorToMap or MapToFunctor");
kpeter@80
   232
  }
kpeter@80
   233
kpeter@80
   234
  // ConvertMap
kpeter@80
   235
  {
alpar@210
   236
    checkConcept<ReadMap<double,double>,
alpar@210
   237
      ConvertMap<ReadMap<double, int>, double> >();
kpeter@80
   238
    ConvertMap<RangeMap<bool>, int> map1(rangeMap(1, true));
alpar@1157
   239
    ignore_unused_variable_warning(map1);
kpeter@80
   240
    ConvertMap<RangeMap<bool>, int> map2 = convertMap<int>(rangeMap(2, false));
alpar@1157
   241
    ignore_unused_variable_warning(map2);
alpar@1157
   242
kpeter@80
   243
  }
kpeter@80
   244
kpeter@80
   245
  // ForkMap
kpeter@80
   246
  {
kpeter@80
   247
    checkConcept<DoubleWriteMap, ForkMap<DoubleWriteMap, DoubleWriteMap> >();
kpeter@82
   248
kpeter@80
   249
    typedef RangeMap<double> RM;
kpeter@80
   250
    typedef SparseMap<int, double> SM;
kpeter@80
   251
    RM m1(10, -1);
kpeter@80
   252
    SM m2(-1);
kpeter@80
   253
    checkConcept<ReadWriteMap<int, double>, ForkMap<RM, SM> >();
kpeter@80
   254
    checkConcept<ReadWriteMap<int, double>, ForkMap<SM, RM> >();
kpeter@80
   255
    ForkMap<RM, SM> map1(m1,m2);
kpeter@80
   256
    ForkMap<SM, RM> map2 = forkMap(m2,m1);
kpeter@80
   257
    map2.set(5, 10);
alpar@210
   258
    check(m1[1] == -1 && m1[5] == 10 && m2[1] == -1 &&
alpar@210
   259
          m2[5] == 10 && map2[1] == -1 && map2[5] == 10,
kpeter@80
   260
          "Something is wrong with ForkMap");
kpeter@80
   261
  }
kpeter@82
   262
kpeter@80
   263
  // Arithmetic maps:
kpeter@80
   264
  // - AddMap, SubMap, MulMap, DivMap
kpeter@80
   265
  // - ShiftMap, ShiftWriteMap, ScaleMap, ScaleWriteMap
kpeter@80
   266
  // - NegMap, NegWriteMap, AbsMap
kpeter@80
   267
  {
kpeter@80
   268
    checkConcept<DoubleMap, AddMap<DoubleMap,DoubleMap> >();
kpeter@80
   269
    checkConcept<DoubleMap, SubMap<DoubleMap,DoubleMap> >();
kpeter@80
   270
    checkConcept<DoubleMap, MulMap<DoubleMap,DoubleMap> >();
kpeter@80
   271
    checkConcept<DoubleMap, DivMap<DoubleMap,DoubleMap> >();
kpeter@82
   272
kpeter@80
   273
    ConstMap<int, double> c1(1.0), c2(3.14);
kpeter@80
   274
    IdentityMap<int> im;
kpeter@80
   275
    ConvertMap<IdentityMap<int>, double> id(im);
alpar@210
   276
    check(addMap(c1,id)[0] == 1.0  && addMap(c1,id)[10] == 11.0,
alpar@210
   277
          "Something is wrong with AddMap");
alpar@210
   278
    check(subMap(id,c1)[0] == -1.0 && subMap(id,c1)[10] == 9.0,
alpar@210
   279
          "Something is wrong with SubMap");
alpar@210
   280
    check(mulMap(id,c2)[0] == 0    && mulMap(id,c2)[2]  == 6.28,
alpar@210
   281
          "Something is wrong with MulMap");
alpar@210
   282
    check(divMap(c2,id)[1] == 3.14 && divMap(c2,id)[2]  == 1.57,
alpar@210
   283
          "Something is wrong with DivMap");
kpeter@82
   284
kpeter@80
   285
    checkConcept<DoubleMap, ShiftMap<DoubleMap> >();
kpeter@80
   286
    checkConcept<DoubleWriteMap, ShiftWriteMap<DoubleWriteMap> >();
kpeter@80
   287
    checkConcept<DoubleMap, ScaleMap<DoubleMap> >();
kpeter@80
   288
    checkConcept<DoubleWriteMap, ScaleWriteMap<DoubleWriteMap> >();
kpeter@80
   289
    checkConcept<DoubleMap, NegMap<DoubleMap> >();
kpeter@80
   290
    checkConcept<DoubleWriteMap, NegWriteMap<DoubleWriteMap> >();
kpeter@80
   291
    checkConcept<DoubleMap, AbsMap<DoubleMap> >();
alpar@25
   292
kpeter@80
   293
    check(shiftMap(id, 2.0)[1] == 3.0 && shiftMap(id, 2.0)[10] == 12.0,
kpeter@80
   294
          "Something is wrong with ShiftMap");
alpar@210
   295
    check(shiftWriteMap(id, 2.0)[1] == 3.0 &&
alpar@210
   296
          shiftWriteMap(id, 2.0)[10] == 12.0,
kpeter@80
   297
          "Something is wrong with ShiftWriteMap");
kpeter@80
   298
    check(scaleMap(id, 2.0)[1] == 2.0 && scaleMap(id, 2.0)[10] == 20.0,
kpeter@80
   299
          "Something is wrong with ScaleMap");
alpar@210
   300
    check(scaleWriteMap(id, 2.0)[1] == 2.0 &&
alpar@210
   301
          scaleWriteMap(id, 2.0)[10] == 20.0,
kpeter@80
   302
          "Something is wrong with ScaleWriteMap");
kpeter@80
   303
    check(negMap(id)[1] == -1.0 && negMap(id)[-10] == 10.0,
kpeter@80
   304
          "Something is wrong with NegMap");
kpeter@80
   305
    check(negWriteMap(id)[1] == -1.0 && negWriteMap(id)[-10] == 10.0,
kpeter@80
   306
          "Something is wrong with NegWriteMap");
kpeter@80
   307
    check(absMap(id)[1] == 1.0 && absMap(id)[-10] == 10.0,
kpeter@80
   308
          "Something is wrong with AbsMap");
kpeter@80
   309
  }
kpeter@82
   310
kpeter@82
   311
  // Logical maps:
kpeter@82
   312
  // - TrueMap, FalseMap
kpeter@82
   313
  // - AndMap, OrMap
kpeter@82
   314
  // - NotMap, NotWriteMap
kpeter@82
   315
  // - EqualMap, LessMap
kpeter@80
   316
  {
kpeter@82
   317
    checkConcept<BoolMap, TrueMap<A> >();
kpeter@82
   318
    checkConcept<BoolMap, FalseMap<A> >();
kpeter@82
   319
    checkConcept<BoolMap, AndMap<BoolMap,BoolMap> >();
kpeter@82
   320
    checkConcept<BoolMap, OrMap<BoolMap,BoolMap> >();
kpeter@80
   321
    checkConcept<BoolMap, NotMap<BoolMap> >();
kpeter@80
   322
    checkConcept<BoolWriteMap, NotWriteMap<BoolWriteMap> >();
kpeter@82
   323
    checkConcept<BoolMap, EqualMap<DoubleMap,DoubleMap> >();
kpeter@82
   324
    checkConcept<BoolMap, LessMap<DoubleMap,DoubleMap> >();
kpeter@82
   325
kpeter@82
   326
    TrueMap<int> tm;
kpeter@82
   327
    FalseMap<int> fm;
kpeter@80
   328
    RangeMap<bool> rm(2);
kpeter@80
   329
    rm[0] = true; rm[1] = false;
alpar@210
   330
    check(andMap(tm,rm)[0] && !andMap(tm,rm)[1] &&
alpar@210
   331
          !andMap(fm,rm)[0] && !andMap(fm,rm)[1],
kpeter@82
   332
          "Something is wrong with AndMap");
alpar@210
   333
    check(orMap(tm,rm)[0] && orMap(tm,rm)[1] &&
alpar@210
   334
          orMap(fm,rm)[0] && !orMap(fm,rm)[1],
kpeter@82
   335
          "Something is wrong with OrMap");
alpar@210
   336
    check(!notMap(rm)[0] && notMap(rm)[1],
alpar@210
   337
          "Something is wrong with NotMap");
alpar@210
   338
    check(!notWriteMap(rm)[0] && notWriteMap(rm)[1],
alpar@210
   339
          "Something is wrong with NotWriteMap");
kpeter@82
   340
kpeter@82
   341
    ConstMap<int, double> cm(2.0);
kpeter@82
   342
    IdentityMap<int> im;
kpeter@82
   343
    ConvertMap<IdentityMap<int>, double> id(im);
kpeter@82
   344
    check(lessMap(id,cm)[1] && !lessMap(id,cm)[2] && !lessMap(id,cm)[3],
kpeter@82
   345
          "Something is wrong with LessMap");
kpeter@82
   346
    check(!equalMap(id,cm)[1] && equalMap(id,cm)[2] && !equalMap(id,cm)[3],
kpeter@82
   347
          "Something is wrong with EqualMap");
kpeter@80
   348
  }
alpar@209
   349
kpeter@167
   350
  // LoggerBoolMap
kpeter@159
   351
  {
kpeter@159
   352
    typedef std::vector<int> vec;
kpeter@159
   353
    vec v1;
kpeter@159
   354
    vec v2(10);
alpar@210
   355
    LoggerBoolMap<std::back_insert_iterator<vec> >
alpar@210
   356
      map1(std::back_inserter(v1));
kpeter@167
   357
    LoggerBoolMap<vec::iterator> map2(v2.begin());
kpeter@159
   358
    map1.set(10, false);
kpeter@159
   359
    map1.set(20, true);   map2.set(20, true);
kpeter@159
   360
    map1.set(30, false);  map2.set(40, false);
kpeter@159
   361
    map1.set(50, true);   map2.set(50, true);
kpeter@159
   362
    map1.set(60, true);   map2.set(60, true);
kpeter@159
   363
    check(v1.size() == 3 && v2.size() == 10 &&
alpar@210
   364
          v1[0]==20 && v1[1]==50 && v1[2]==60 &&
alpar@210
   365
          v2[0]==20 && v2[1]==50 && v2[2]==60,
kpeter@167
   366
          "Something is wrong with LoggerBoolMap");
alpar@209
   367
kpeter@159
   368
    int i = 0;
kpeter@167
   369
    for ( LoggerBoolMap<vec::iterator>::Iterator it = map2.begin();
kpeter@159
   370
          it != map2.end(); ++it )
kpeter@167
   371
      check(v1[i++] == *it, "Something is wrong with LoggerBoolMap");
kpeter@159
   372
  }
alpar@1081
   373
kpeter@731
   374
  // CrossRefMap
kpeter@731
   375
  {
kpeter@731
   376
    typedef ListDigraph Graph;
kpeter@731
   377
    DIGRAPH_TYPEDEFS(Graph);
kpeter@731
   378
kpeter@731
   379
    checkConcept<ReadWriteMap<Node, int>,
kpeter@731
   380
                 CrossRefMap<Graph, Node, int> >();
alpar@1081
   381
kpeter@731
   382
    Graph gr;
kpeter@731
   383
    typedef CrossRefMap<Graph, Node, char> CRMap;
kpeter@731
   384
    typedef CRMap::ValueIterator ValueIt;
kpeter@731
   385
    CRMap map(gr);
alpar@1081
   386
kpeter@731
   387
    Node n0 = gr.addNode();
kpeter@731
   388
    Node n1 = gr.addNode();
kpeter@731
   389
    Node n2 = gr.addNode();
alpar@1081
   390
kpeter@731
   391
    map.set(n0, 'A');
kpeter@731
   392
    map.set(n1, 'B');
kpeter@731
   393
    map.set(n2, 'C');
kpeter@731
   394
    map.set(n2, 'A');
kpeter@731
   395
    map.set(n0, 'C');
kpeter@731
   396
kpeter@731
   397
    check(map[n0] == 'C' && map[n1] == 'B' && map[n2] == 'A',
kpeter@731
   398
          "Wrong CrossRefMap");
kpeter@731
   399
    check(map('A') == n2 && map.inverse()['A'] == n2, "Wrong CrossRefMap");
kpeter@731
   400
    check(map('B') == n1 && map.inverse()['B'] == n1, "Wrong CrossRefMap");
kpeter@731
   401
    check(map('C') == n0 && map.inverse()['C'] == n0, "Wrong CrossRefMap");
kpeter@731
   402
kpeter@731
   403
    ValueIt it = map.beginValue();
kpeter@731
   404
    check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' &&
kpeter@731
   405
          it == map.endValue(), "Wrong value iterator");
kpeter@731
   406
  }
alpar@25
   407
alpar@25
   408
  return 0;
alpar@25
   409
}