test/maps_test.cc
author Alpar Juttner <alpar@cs.elte.hu>
Wed, 07 Aug 2013 07:09:31 +0200
branch1.2
changeset 985 b9887ae63df0
parent 966 08712a8c3afe
parent 983 8b2d4e5d96e4
child 991 e13061207f85
permissions -rw-r--r--
Merge #294 to branch 1.2
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@927
     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@684
    25
#include <lemon/list_graph.h>
kpeter@694
    26
#include <lemon/smart_graph.h>
kpeter@723
    27
#include <lemon/adaptors.h>
kpeter@723
    28
#include <lemon/dfs.h>
kpeter@789
    29
#include <algorithm>
alpar@25
    30
alpar@25
    31
#include "test_tools.h"
alpar@25
    32
alpar@25
    33
using namespace lemon;
alpar@25
    34
using namespace lemon::concepts;
alpar@25
    35
alpar@25
    36
struct A {};
alpar@25
    37
inline bool operator<(A, A) { return true; }
alpar@25
    38
struct B {};
alpar@25
    39
kpeter@94
    40
class C {
kpeter@789
    41
  int _x;
kpeter@94
    42
public:
kpeter@789
    43
  C(int x) : _x(x) {}
kpeter@789
    44
  int get() const { return _x; }
kpeter@789
    45
};
kpeter@789
    46
inline bool operator<(C c1, C c2) { return c1.get() < c2.get(); }
kpeter@789
    47
inline bool operator==(C c1, C c2) { return c1.get() == c2.get(); }
kpeter@789
    48
kpeter@789
    49
C createC(int x) { return C(x); }
kpeter@789
    50
kpeter@789
    51
template <typename T>
kpeter@789
    52
class Less {
kpeter@789
    53
  T _t;
kpeter@789
    54
public:
kpeter@789
    55
  Less(T t): _t(t) {}
kpeter@789
    56
  bool operator()(const T& t) const { return t < _t; }
kpeter@94
    57
};
kpeter@94
    58
alpar@25
    59
class F {
alpar@25
    60
public:
alpar@25
    61
  typedef A argument_type;
alpar@25
    62
  typedef B result_type;
alpar@25
    63
kpeter@80
    64
  B operator()(const A&) const { return B(); }
kpeter@80
    65
private:
kpeter@80
    66
  F& operator=(const F&);
alpar@25
    67
};
alpar@25
    68
kpeter@80
    69
int func(A) { return 3; }
alpar@25
    70
kpeter@80
    71
int binc(int a, B) { return a+1; }
alpar@25
    72
kpeter@789
    73
template <typename T>
kpeter@789
    74
class Sum {
kpeter@789
    75
  T& _sum;
kpeter@789
    76
public:
kpeter@789
    77
  Sum(T& sum) : _sum(sum) {}
kpeter@789
    78
  void operator()(const T& t) { _sum += t; }
kpeter@789
    79
};
kpeter@789
    80
kpeter@80
    81
typedef ReadMap<A, double> DoubleMap;
kpeter@80
    82
typedef ReadWriteMap<A, double> DoubleWriteMap;
kpeter@80
    83
typedef ReferenceMap<A, double, double&, const double&> DoubleRefMap;
alpar@25
    84
kpeter@80
    85
typedef ReadMap<A, bool> BoolMap;
alpar@25
    86
typedef ReadWriteMap<A, bool> BoolWriteMap;
kpeter@80
    87
typedef ReferenceMap<A, bool, bool&, const bool&> BoolRefMap;
alpar@25
    88
alpar@25
    89
int main()
kpeter@80
    90
{
kpeter@80
    91
  // Map concepts
alpar@25
    92
  checkConcept<ReadMap<A,B>, ReadMap<A,B> >();
kpeter@94
    93
  checkConcept<ReadMap<A,C>, ReadMap<A,C> >();
alpar@25
    94
  checkConcept<WriteMap<A,B>, WriteMap<A,B> >();
kpeter@94
    95
  checkConcept<WriteMap<A,C>, WriteMap<A,C> >();
alpar@25
    96
  checkConcept<ReadWriteMap<A,B>, ReadWriteMap<A,B> >();
kpeter@94
    97
  checkConcept<ReadWriteMap<A,C>, ReadWriteMap<A,C> >();
alpar@25
    98
  checkConcept<ReferenceMap<A,B,B&,const B&>, ReferenceMap<A,B,B&,const B&> >();
kpeter@94
    99
  checkConcept<ReferenceMap<A,C,C&,const C&>, ReferenceMap<A,C,C&,const C&> >();
alpar@25
   100
kpeter@80
   101
  // NullMap
kpeter@80
   102
  {
kpeter@80
   103
    checkConcept<ReadWriteMap<A,B>, NullMap<A,B> >();
kpeter@80
   104
    NullMap<A,B> map1;
kpeter@80
   105
    NullMap<A,B> map2 = map1;
alpar@982
   106
    ::lemon::ignore_unused_variable_warning(map2);
kpeter@80
   107
    map1 = nullMap<A,B>();
kpeter@80
   108
  }
kpeter@80
   109
kpeter@80
   110
  // ConstMap
kpeter@80
   111
  {
kpeter@80
   112
    checkConcept<ReadWriteMap<A,B>, ConstMap<A,B> >();
kpeter@123
   113
    checkConcept<ReadWriteMap<A,C>, ConstMap<A,C> >();
kpeter@80
   114
    ConstMap<A,B> map1;
deba@136
   115
    ConstMap<A,B> map2 = B();
kpeter@80
   116
    ConstMap<A,B> map3 = map1;
alpar@982
   117
    ::lemon::ignore_unused_variable_warning(map2,map3);
alpar@963
   118
kpeter@80
   119
    map1 = constMap<A>(B());
kpeter@123
   120
    map1 = constMap<A,B>();
kpeter@80
   121
    map1.setAll(B());
kpeter@123
   122
    ConstMap<A,C> map4(C(1));
kpeter@123
   123
    ConstMap<A,C> map5 = map4;
alpar@982
   124
    ::lemon::ignore_unused_variable_warning(map5);
alpar@963
   125
kpeter@123
   126
    map4 = constMap<A>(C(2));
kpeter@123
   127
    map4.setAll(C(3));
kpeter@82
   128
kpeter@80
   129
    checkConcept<ReadWriteMap<A,int>, ConstMap<A,int> >();
kpeter@80
   130
    check(constMap<A>(10)[A()] == 10, "Something is wrong with ConstMap");
kpeter@80
   131
kpeter@80
   132
    checkConcept<ReadWriteMap<A,int>, ConstMap<A,Const<int,10> > >();
kpeter@123
   133
    ConstMap<A,Const<int,10> > map6;
kpeter@123
   134
    ConstMap<A,Const<int,10> > map7 = map6;
kpeter@123
   135
    map6 = constMap<A,int,10>();
kpeter@123
   136
    map7 = constMap<A,Const<int,10> >();
alpar@210
   137
    check(map6[A()] == 10 && map7[A()] == 10,
alpar@210
   138
          "Something is wrong with ConstMap");
kpeter@80
   139
  }
kpeter@80
   140
kpeter@80
   141
  // IdentityMap
kpeter@80
   142
  {
kpeter@80
   143
    checkConcept<ReadMap<A,A>, IdentityMap<A> >();
kpeter@80
   144
    IdentityMap<A> map1;
kpeter@80
   145
    IdentityMap<A> map2 = map1;
alpar@982
   146
    ::lemon::ignore_unused_variable_warning(map2);
alpar@963
   147
kpeter@80
   148
    map1 = identityMap<A>();
kpeter@82
   149
kpeter@80
   150
    checkConcept<ReadMap<double,double>, IdentityMap<double> >();
alpar@210
   151
    check(identityMap<double>()[1.0] == 1.0 &&
alpar@210
   152
          identityMap<double>()[3.14] == 3.14,
kpeter@80
   153
          "Something is wrong with IdentityMap");
kpeter@80
   154
  }
kpeter@80
   155
kpeter@80
   156
  // RangeMap
kpeter@80
   157
  {
kpeter@80
   158
    checkConcept<ReferenceMap<int,B,B&,const B&>, RangeMap<B> >();
kpeter@80
   159
    RangeMap<B> map1;
kpeter@80
   160
    RangeMap<B> map2(10);
kpeter@80
   161
    RangeMap<B> map3(10,B());
kpeter@80
   162
    RangeMap<B> map4 = map1;
kpeter@80
   163
    RangeMap<B> map5 = rangeMap<B>();
kpeter@80
   164
    RangeMap<B> map6 = rangeMap<B>(10);
kpeter@80
   165
    RangeMap<B> map7 = rangeMap(10,B());
kpeter@80
   166
kpeter@80
   167
    checkConcept< ReferenceMap<int, double, double&, const double&>,
kpeter@80
   168
                  RangeMap<double> >();
kpeter@80
   169
    std::vector<double> v(10, 0);
kpeter@80
   170
    v[5] = 100;
kpeter@80
   171
    RangeMap<double> map8(v);
kpeter@80
   172
    RangeMap<double> map9 = rangeMap(v);
kpeter@80
   173
    check(map9.size() == 10 && map9[2] == 0 && map9[5] == 100,
kpeter@80
   174
          "Something is wrong with RangeMap");
kpeter@80
   175
  }
kpeter@80
   176
kpeter@80
   177
  // SparseMap
kpeter@80
   178
  {
kpeter@80
   179
    checkConcept<ReferenceMap<A,B,B&,const B&>, SparseMap<A,B> >();
kpeter@80
   180
    SparseMap<A,B> map1;
deba@136
   181
    SparseMap<A,B> map2 = B();
kpeter@80
   182
    SparseMap<A,B> map3 = sparseMap<A,B>();
kpeter@80
   183
    SparseMap<A,B> map4 = sparseMap<A>(B());
kpeter@80
   184
kpeter@80
   185
    checkConcept< ReferenceMap<double, int, int&, const int&>,
kpeter@80
   186
                  SparseMap<double, int> >();
kpeter@80
   187
    std::map<double, int> m;
kpeter@80
   188
    SparseMap<double, int> map5(m);
kpeter@80
   189
    SparseMap<double, int> map6(m,10);
kpeter@80
   190
    SparseMap<double, int> map7 = sparseMap(m);
kpeter@80
   191
    SparseMap<double, int> map8 = sparseMap(m,10);
kpeter@80
   192
alpar@210
   193
    check(map5[1.0] == 0 && map5[3.14] == 0 &&
alpar@210
   194
          map6[1.0] == 10 && map6[3.14] == 10,
kpeter@80
   195
          "Something is wrong with SparseMap");
kpeter@80
   196
    map5[1.0] = map6[3.14] = 100;
alpar@210
   197
    check(map5[1.0] == 100 && map5[3.14] == 0 &&
alpar@210
   198
          map6[1.0] == 10 && map6[3.14] == 100,
kpeter@80
   199
          "Something is wrong with SparseMap");
kpeter@80
   200
  }
kpeter@80
   201
kpeter@80
   202
  // ComposeMap
kpeter@80
   203
  {
kpeter@80
   204
    typedef ComposeMap<DoubleMap, ReadMap<B,A> > CompMap;
kpeter@80
   205
    checkConcept<ReadMap<B,double>, CompMap>();
alpar@507
   206
    CompMap map1 = CompMap(DoubleMap(),ReadMap<B,A>());
alpar@982
   207
    ::lemon::ignore_unused_variable_warning(map1);
kpeter@80
   208
    CompMap map2 = composeMap(DoubleMap(), ReadMap<B,A>());
alpar@982
   209
    ::lemon::ignore_unused_variable_warning(map2);
kpeter@82
   210
kpeter@80
   211
    SparseMap<double, bool> m1(false); m1[3.14] = true;
kpeter@80
   212
    RangeMap<double> m2(2); m2[0] = 3.0; m2[1] = 3.14;
alpar@210
   213
    check(!composeMap(m1,m2)[0] && composeMap(m1,m2)[1],
alpar@210
   214
          "Something is wrong with ComposeMap")
kpeter@80
   215
  }
kpeter@80
   216
kpeter@80
   217
  // CombineMap
kpeter@80
   218
  {
kpeter@80
   219
    typedef CombineMap<DoubleMap, DoubleMap, std::plus<double> > CombMap;
kpeter@80
   220
    checkConcept<ReadMap<A,double>, CombMap>();
alpar@507
   221
    CombMap map1 = CombMap(DoubleMap(), DoubleMap());
alpar@982
   222
    ::lemon::ignore_unused_variable_warning(map1);
kpeter@80
   223
    CombMap map2 = combineMap(DoubleMap(), DoubleMap(), std::plus<double>());
alpar@982
   224
    ::lemon::ignore_unused_variable_warning(map2);
kpeter@80
   225
kpeter@80
   226
    check(combineMap(constMap<B,int,2>(), identityMap<B>(), &binc)[B()] == 3,
kpeter@80
   227
          "Something is wrong with CombineMap");
kpeter@80
   228
  }
kpeter@80
   229
kpeter@80
   230
  // FunctorToMap, MapToFunctor
kpeter@80
   231
  {
kpeter@80
   232
    checkConcept<ReadMap<A,B>, FunctorToMap<F,A,B> >();
kpeter@80
   233
    checkConcept<ReadMap<A,B>, FunctorToMap<F> >();
kpeter@80
   234
    FunctorToMap<F> map1;
alpar@507
   235
    FunctorToMap<F> map2 = FunctorToMap<F>(F());
alpar@982
   236
    ::lemon::ignore_unused_variable_warning(map2);
alpar@963
   237
kpeter@80
   238
    B b = functorToMap(F())[A()];
alpar@982
   239
    ::lemon::ignore_unused_variable_warning(b);
kpeter@80
   240
kpeter@80
   241
    checkConcept<ReadMap<A,B>, MapToFunctor<ReadMap<A,B> > >();
alpar@963
   242
    MapToFunctor<ReadMap<A,B> > map =
alpar@963
   243
      MapToFunctor<ReadMap<A,B> >(ReadMap<A,B>());
alpar@982
   244
    ::lemon::ignore_unused_variable_warning(map);
kpeter@80
   245
alpar@210
   246
    check(functorToMap(&func)[A()] == 3,
alpar@210
   247
          "Something is wrong with FunctorToMap");
alpar@210
   248
    check(mapToFunctor(constMap<A,int>(2))(A()) == 2,
alpar@210
   249
          "Something is wrong with MapToFunctor");
alpar@210
   250
    check(mapToFunctor(functorToMap(&func))(A()) == 3 &&
alpar@210
   251
          mapToFunctor(functorToMap(&func))[A()] == 3,
kpeter@80
   252
          "Something is wrong with FunctorToMap or MapToFunctor");
kpeter@80
   253
    check(functorToMap(mapToFunctor(constMap<A,int>(2)))[A()] == 2,
kpeter@80
   254
          "Something is wrong with FunctorToMap or MapToFunctor");
kpeter@80
   255
  }
kpeter@80
   256
kpeter@80
   257
  // ConvertMap
kpeter@80
   258
  {
alpar@210
   259
    checkConcept<ReadMap<double,double>,
alpar@210
   260
      ConvertMap<ReadMap<double, int>, double> >();
kpeter@80
   261
    ConvertMap<RangeMap<bool>, int> map1(rangeMap(1, true));
alpar@982
   262
    ::lemon::ignore_unused_variable_warning(map1);
kpeter@80
   263
    ConvertMap<RangeMap<bool>, int> map2 = convertMap<int>(rangeMap(2, false));
alpar@982
   264
    ::lemon::ignore_unused_variable_warning(map2);
alpar@963
   265
kpeter@80
   266
  }
kpeter@80
   267
kpeter@80
   268
  // ForkMap
kpeter@80
   269
  {
kpeter@80
   270
    checkConcept<DoubleWriteMap, ForkMap<DoubleWriteMap, DoubleWriteMap> >();
kpeter@82
   271
kpeter@80
   272
    typedef RangeMap<double> RM;
kpeter@80
   273
    typedef SparseMap<int, double> SM;
kpeter@80
   274
    RM m1(10, -1);
kpeter@80
   275
    SM m2(-1);
kpeter@80
   276
    checkConcept<ReadWriteMap<int, double>, ForkMap<RM, SM> >();
kpeter@80
   277
    checkConcept<ReadWriteMap<int, double>, ForkMap<SM, RM> >();
kpeter@80
   278
    ForkMap<RM, SM> map1(m1,m2);
kpeter@80
   279
    ForkMap<SM, RM> map2 = forkMap(m2,m1);
kpeter@80
   280
    map2.set(5, 10);
alpar@210
   281
    check(m1[1] == -1 && m1[5] == 10 && m2[1] == -1 &&
alpar@210
   282
          m2[5] == 10 && map2[1] == -1 && map2[5] == 10,
kpeter@80
   283
          "Something is wrong with ForkMap");
kpeter@80
   284
  }
kpeter@82
   285
kpeter@80
   286
  // Arithmetic maps:
kpeter@80
   287
  // - AddMap, SubMap, MulMap, DivMap
kpeter@80
   288
  // - ShiftMap, ShiftWriteMap, ScaleMap, ScaleWriteMap
kpeter@80
   289
  // - NegMap, NegWriteMap, AbsMap
kpeter@80
   290
  {
kpeter@80
   291
    checkConcept<DoubleMap, AddMap<DoubleMap,DoubleMap> >();
kpeter@80
   292
    checkConcept<DoubleMap, SubMap<DoubleMap,DoubleMap> >();
kpeter@80
   293
    checkConcept<DoubleMap, MulMap<DoubleMap,DoubleMap> >();
kpeter@80
   294
    checkConcept<DoubleMap, DivMap<DoubleMap,DoubleMap> >();
kpeter@82
   295
kpeter@80
   296
    ConstMap<int, double> c1(1.0), c2(3.14);
kpeter@80
   297
    IdentityMap<int> im;
kpeter@80
   298
    ConvertMap<IdentityMap<int>, double> id(im);
alpar@210
   299
    check(addMap(c1,id)[0] == 1.0  && addMap(c1,id)[10] == 11.0,
alpar@210
   300
          "Something is wrong with AddMap");
alpar@210
   301
    check(subMap(id,c1)[0] == -1.0 && subMap(id,c1)[10] == 9.0,
alpar@210
   302
          "Something is wrong with SubMap");
alpar@210
   303
    check(mulMap(id,c2)[0] == 0    && mulMap(id,c2)[2]  == 6.28,
alpar@210
   304
          "Something is wrong with MulMap");
alpar@210
   305
    check(divMap(c2,id)[1] == 3.14 && divMap(c2,id)[2]  == 1.57,
alpar@210
   306
          "Something is wrong with DivMap");
kpeter@82
   307
kpeter@80
   308
    checkConcept<DoubleMap, ShiftMap<DoubleMap> >();
kpeter@80
   309
    checkConcept<DoubleWriteMap, ShiftWriteMap<DoubleWriteMap> >();
kpeter@80
   310
    checkConcept<DoubleMap, ScaleMap<DoubleMap> >();
kpeter@80
   311
    checkConcept<DoubleWriteMap, ScaleWriteMap<DoubleWriteMap> >();
kpeter@80
   312
    checkConcept<DoubleMap, NegMap<DoubleMap> >();
kpeter@80
   313
    checkConcept<DoubleWriteMap, NegWriteMap<DoubleWriteMap> >();
kpeter@80
   314
    checkConcept<DoubleMap, AbsMap<DoubleMap> >();
alpar@25
   315
kpeter@80
   316
    check(shiftMap(id, 2.0)[1] == 3.0 && shiftMap(id, 2.0)[10] == 12.0,
kpeter@80
   317
          "Something is wrong with ShiftMap");
alpar@210
   318
    check(shiftWriteMap(id, 2.0)[1] == 3.0 &&
alpar@210
   319
          shiftWriteMap(id, 2.0)[10] == 12.0,
kpeter@80
   320
          "Something is wrong with ShiftWriteMap");
kpeter@80
   321
    check(scaleMap(id, 2.0)[1] == 2.0 && scaleMap(id, 2.0)[10] == 20.0,
kpeter@80
   322
          "Something is wrong with ScaleMap");
alpar@210
   323
    check(scaleWriteMap(id, 2.0)[1] == 2.0 &&
alpar@210
   324
          scaleWriteMap(id, 2.0)[10] == 20.0,
kpeter@80
   325
          "Something is wrong with ScaleWriteMap");
kpeter@80
   326
    check(negMap(id)[1] == -1.0 && negMap(id)[-10] == 10.0,
kpeter@80
   327
          "Something is wrong with NegMap");
kpeter@80
   328
    check(negWriteMap(id)[1] == -1.0 && negWriteMap(id)[-10] == 10.0,
kpeter@80
   329
          "Something is wrong with NegWriteMap");
kpeter@80
   330
    check(absMap(id)[1] == 1.0 && absMap(id)[-10] == 10.0,
kpeter@80
   331
          "Something is wrong with AbsMap");
kpeter@80
   332
  }
kpeter@82
   333
kpeter@82
   334
  // Logical maps:
kpeter@82
   335
  // - TrueMap, FalseMap
kpeter@82
   336
  // - AndMap, OrMap
kpeter@82
   337
  // - NotMap, NotWriteMap
kpeter@82
   338
  // - EqualMap, LessMap
kpeter@80
   339
  {
kpeter@82
   340
    checkConcept<BoolMap, TrueMap<A> >();
kpeter@82
   341
    checkConcept<BoolMap, FalseMap<A> >();
kpeter@82
   342
    checkConcept<BoolMap, AndMap<BoolMap,BoolMap> >();
kpeter@82
   343
    checkConcept<BoolMap, OrMap<BoolMap,BoolMap> >();
kpeter@80
   344
    checkConcept<BoolMap, NotMap<BoolMap> >();
kpeter@80
   345
    checkConcept<BoolWriteMap, NotWriteMap<BoolWriteMap> >();
kpeter@82
   346
    checkConcept<BoolMap, EqualMap<DoubleMap,DoubleMap> >();
kpeter@82
   347
    checkConcept<BoolMap, LessMap<DoubleMap,DoubleMap> >();
kpeter@82
   348
kpeter@82
   349
    TrueMap<int> tm;
kpeter@82
   350
    FalseMap<int> fm;
kpeter@80
   351
    RangeMap<bool> rm(2);
kpeter@80
   352
    rm[0] = true; rm[1] = false;
alpar@210
   353
    check(andMap(tm,rm)[0] && !andMap(tm,rm)[1] &&
alpar@210
   354
          !andMap(fm,rm)[0] && !andMap(fm,rm)[1],
kpeter@82
   355
          "Something is wrong with AndMap");
alpar@210
   356
    check(orMap(tm,rm)[0] && orMap(tm,rm)[1] &&
alpar@210
   357
          orMap(fm,rm)[0] && !orMap(fm,rm)[1],
kpeter@82
   358
          "Something is wrong with OrMap");
alpar@210
   359
    check(!notMap(rm)[0] && notMap(rm)[1],
alpar@210
   360
          "Something is wrong with NotMap");
alpar@210
   361
    check(!notWriteMap(rm)[0] && notWriteMap(rm)[1],
alpar@210
   362
          "Something is wrong with NotWriteMap");
kpeter@82
   363
kpeter@82
   364
    ConstMap<int, double> cm(2.0);
kpeter@82
   365
    IdentityMap<int> im;
kpeter@82
   366
    ConvertMap<IdentityMap<int>, double> id(im);
kpeter@82
   367
    check(lessMap(id,cm)[1] && !lessMap(id,cm)[2] && !lessMap(id,cm)[3],
kpeter@82
   368
          "Something is wrong with LessMap");
kpeter@82
   369
    check(!equalMap(id,cm)[1] && equalMap(id,cm)[2] && !equalMap(id,cm)[3],
kpeter@82
   370
          "Something is wrong with EqualMap");
kpeter@80
   371
  }
alpar@209
   372
kpeter@167
   373
  // LoggerBoolMap
kpeter@159
   374
  {
kpeter@159
   375
    typedef std::vector<int> vec;
kpeter@720
   376
    checkConcept<WriteMap<int, bool>, LoggerBoolMap<vec::iterator> >();
kpeter@720
   377
    checkConcept<WriteMap<int, bool>,
kpeter@720
   378
                 LoggerBoolMap<std::back_insert_iterator<vec> > >();
kpeter@720
   379
kpeter@159
   380
    vec v1;
kpeter@159
   381
    vec v2(10);
alpar@210
   382
    LoggerBoolMap<std::back_insert_iterator<vec> >
alpar@210
   383
      map1(std::back_inserter(v1));
kpeter@167
   384
    LoggerBoolMap<vec::iterator> map2(v2.begin());
kpeter@159
   385
    map1.set(10, false);
kpeter@159
   386
    map1.set(20, true);   map2.set(20, true);
kpeter@159
   387
    map1.set(30, false);  map2.set(40, false);
kpeter@159
   388
    map1.set(50, true);   map2.set(50, true);
kpeter@159
   389
    map1.set(60, true);   map2.set(60, true);
kpeter@159
   390
    check(v1.size() == 3 && v2.size() == 10 &&
alpar@210
   391
          v1[0]==20 && v1[1]==50 && v1[2]==60 &&
alpar@210
   392
          v2[0]==20 && v2[1]==50 && v2[2]==60,
kpeter@167
   393
          "Something is wrong with LoggerBoolMap");
alpar@209
   394
kpeter@159
   395
    int i = 0;
kpeter@167
   396
    for ( LoggerBoolMap<vec::iterator>::Iterator it = map2.begin();
kpeter@159
   397
          it != map2.end(); ++it )
kpeter@167
   398
      check(v1[i++] == *it, "Something is wrong with LoggerBoolMap");
alpar@877
   399
kpeter@723
   400
    typedef ListDigraph Graph;
kpeter@723
   401
    DIGRAPH_TYPEDEFS(Graph);
kpeter@723
   402
    Graph gr;
kpeter@723
   403
kpeter@723
   404
    Node n0 = gr.addNode();
kpeter@723
   405
    Node n1 = gr.addNode();
kpeter@723
   406
    Node n2 = gr.addNode();
kpeter@723
   407
    Node n3 = gr.addNode();
alpar@877
   408
kpeter@723
   409
    gr.addArc(n3, n0);
kpeter@723
   410
    gr.addArc(n3, n2);
kpeter@723
   411
    gr.addArc(n0, n2);
kpeter@723
   412
    gr.addArc(n2, n1);
kpeter@723
   413
    gr.addArc(n0, n1);
alpar@877
   414
kpeter@723
   415
    {
kpeter@723
   416
      std::vector<Node> v;
kpeter@723
   417
      dfs(gr).processedMap(loggerBoolMap(std::back_inserter(v))).run();
kpeter@723
   418
kpeter@723
   419
      check(v.size()==4 && v[0]==n1 && v[1]==n2 && v[2]==n0 && v[3]==n3,
kpeter@723
   420
            "Something is wrong with LoggerBoolMap");
kpeter@723
   421
    }
kpeter@723
   422
    {
kpeter@723
   423
      std::vector<Node> v(countNodes(gr));
kpeter@723
   424
      dfs(gr).processedMap(loggerBoolMap(v.begin())).run();
alpar@877
   425
kpeter@723
   426
      check(v.size()==4 && v[0]==n1 && v[1]==n2 && v[2]==n0 && v[3]==n3,
kpeter@723
   427
            "Something is wrong with LoggerBoolMap");
kpeter@723
   428
    }
kpeter@159
   429
  }
alpar@877
   430
kpeter@720
   431
  // IdMap, RangeIdMap
kpeter@720
   432
  {
kpeter@720
   433
    typedef ListDigraph Graph;
kpeter@720
   434
    DIGRAPH_TYPEDEFS(Graph);
kpeter@720
   435
kpeter@720
   436
    checkConcept<ReadMap<Node, int>, IdMap<Graph, Node> >();
kpeter@720
   437
    checkConcept<ReadMap<Arc, int>, IdMap<Graph, Arc> >();
kpeter@720
   438
    checkConcept<ReadMap<Node, int>, RangeIdMap<Graph, Node> >();
kpeter@720
   439
    checkConcept<ReadMap<Arc, int>, RangeIdMap<Graph, Arc> >();
alpar@877
   440
kpeter@720
   441
    Graph gr;
kpeter@720
   442
    IdMap<Graph, Node> nmap(gr);
kpeter@720
   443
    IdMap<Graph, Arc> amap(gr);
kpeter@720
   444
    RangeIdMap<Graph, Node> nrmap(gr);
kpeter@720
   445
    RangeIdMap<Graph, Arc> armap(gr);
alpar@877
   446
kpeter@720
   447
    Node n0 = gr.addNode();
kpeter@720
   448
    Node n1 = gr.addNode();
kpeter@720
   449
    Node n2 = gr.addNode();
alpar@877
   450
kpeter@720
   451
    Arc a0 = gr.addArc(n0, n1);
kpeter@720
   452
    Arc a1 = gr.addArc(n0, n2);
kpeter@720
   453
    Arc a2 = gr.addArc(n2, n1);
kpeter@720
   454
    Arc a3 = gr.addArc(n2, n0);
alpar@877
   455
kpeter@720
   456
    check(nmap[n0] == gr.id(n0) && nmap(gr.id(n0)) == n0, "Wrong IdMap");
kpeter@720
   457
    check(nmap[n1] == gr.id(n1) && nmap(gr.id(n1)) == n1, "Wrong IdMap");
kpeter@720
   458
    check(nmap[n2] == gr.id(n2) && nmap(gr.id(n2)) == n2, "Wrong IdMap");
kpeter@720
   459
kpeter@720
   460
    check(amap[a0] == gr.id(a0) && amap(gr.id(a0)) == a0, "Wrong IdMap");
kpeter@720
   461
    check(amap[a1] == gr.id(a1) && amap(gr.id(a1)) == a1, "Wrong IdMap");
kpeter@720
   462
    check(amap[a2] == gr.id(a2) && amap(gr.id(a2)) == a2, "Wrong IdMap");
kpeter@720
   463
    check(amap[a3] == gr.id(a3) && amap(gr.id(a3)) == a3, "Wrong IdMap");
kpeter@720
   464
kpeter@720
   465
    check(nmap.inverse()[gr.id(n0)] == n0, "Wrong IdMap::InverseMap");
kpeter@720
   466
    check(amap.inverse()[gr.id(a0)] == a0, "Wrong IdMap::InverseMap");
alpar@877
   467
kpeter@720
   468
    check(nrmap.size() == 3 && armap.size() == 4,
kpeter@720
   469
          "Wrong RangeIdMap::size()");
kpeter@720
   470
kpeter@720
   471
    check(nrmap[n0] == 0 && nrmap(0) == n0, "Wrong RangeIdMap");
kpeter@720
   472
    check(nrmap[n1] == 1 && nrmap(1) == n1, "Wrong RangeIdMap");
kpeter@720
   473
    check(nrmap[n2] == 2 && nrmap(2) == n2, "Wrong RangeIdMap");
alpar@877
   474
kpeter@720
   475
    check(armap[a0] == 0 && armap(0) == a0, "Wrong RangeIdMap");
kpeter@720
   476
    check(armap[a1] == 1 && armap(1) == a1, "Wrong RangeIdMap");
kpeter@720
   477
    check(armap[a2] == 2 && armap(2) == a2, "Wrong RangeIdMap");
kpeter@720
   478
    check(armap[a3] == 3 && armap(3) == a3, "Wrong RangeIdMap");
kpeter@720
   479
kpeter@720
   480
    check(nrmap.inverse()[0] == n0, "Wrong RangeIdMap::InverseMap");
kpeter@720
   481
    check(armap.inverse()[0] == a0, "Wrong RangeIdMap::InverseMap");
alpar@877
   482
kpeter@720
   483
    gr.erase(n1);
alpar@877
   484
kpeter@720
   485
    if (nrmap[n0] == 1) nrmap.swap(n0, n2);
kpeter@720
   486
    nrmap.swap(n2, n0);
kpeter@720
   487
    if (armap[a1] == 1) armap.swap(a1, a3);
kpeter@720
   488
    armap.swap(a3, a1);
alpar@877
   489
kpeter@720
   490
    check(nrmap.size() == 2 && armap.size() == 2,
kpeter@720
   491
          "Wrong RangeIdMap::size()");
kpeter@720
   492
kpeter@720
   493
    check(nrmap[n0] == 1 && nrmap(1) == n0, "Wrong RangeIdMap");
kpeter@720
   494
    check(nrmap[n2] == 0 && nrmap(0) == n2, "Wrong RangeIdMap");
alpar@877
   495
kpeter@720
   496
    check(armap[a1] == 1 && armap(1) == a1, "Wrong RangeIdMap");
kpeter@720
   497
    check(armap[a3] == 0 && armap(0) == a3, "Wrong RangeIdMap");
kpeter@720
   498
kpeter@720
   499
    check(nrmap.inverse()[0] == n2, "Wrong RangeIdMap::InverseMap");
kpeter@720
   500
    check(armap.inverse()[0] == a3, "Wrong RangeIdMap::InverseMap");
kpeter@720
   501
  }
alpar@877
   502
kpeter@723
   503
  // SourceMap, TargetMap, ForwardMap, BackwardMap, InDegMap, OutDegMap
kpeter@723
   504
  {
kpeter@723
   505
    typedef ListGraph Graph;
kpeter@723
   506
    GRAPH_TYPEDEFS(Graph);
alpar@877
   507
kpeter@723
   508
    checkConcept<ReadMap<Arc, Node>, SourceMap<Graph> >();
kpeter@723
   509
    checkConcept<ReadMap<Arc, Node>, TargetMap<Graph> >();
kpeter@723
   510
    checkConcept<ReadMap<Edge, Arc>, ForwardMap<Graph> >();
kpeter@723
   511
    checkConcept<ReadMap<Edge, Arc>, BackwardMap<Graph> >();
kpeter@723
   512
    checkConcept<ReadMap<Node, int>, InDegMap<Graph> >();
kpeter@723
   513
    checkConcept<ReadMap<Node, int>, OutDegMap<Graph> >();
kpeter@723
   514
kpeter@723
   515
    Graph gr;
kpeter@723
   516
    Node n0 = gr.addNode();
kpeter@723
   517
    Node n1 = gr.addNode();
kpeter@723
   518
    Node n2 = gr.addNode();
alpar@877
   519
kpeter@723
   520
    gr.addEdge(n0,n1);
kpeter@723
   521
    gr.addEdge(n1,n2);
kpeter@723
   522
    gr.addEdge(n0,n2);
kpeter@723
   523
    gr.addEdge(n2,n1);
kpeter@723
   524
    gr.addEdge(n1,n2);
kpeter@723
   525
    gr.addEdge(n0,n1);
alpar@877
   526
kpeter@723
   527
    for (EdgeIt e(gr); e != INVALID; ++e) {
kpeter@723
   528
      check(forwardMap(gr)[e] == gr.direct(e, true), "Wrong ForwardMap");
kpeter@723
   529
      check(backwardMap(gr)[e] == gr.direct(e, false), "Wrong BackwardMap");
kpeter@723
   530
    }
alpar@877
   531
kpeter@789
   532
    check(mapCompare(gr,
kpeter@789
   533
          sourceMap(orienter(gr, constMap<Edge, bool>(true))),
kpeter@789
   534
          targetMap(orienter(gr, constMap<Edge, bool>(false)))),
kpeter@789
   535
          "Wrong SourceMap or TargetMap");
kpeter@723
   536
kpeter@723
   537
    typedef Orienter<Graph, const ConstMap<Edge, bool> > Digraph;
kpeter@723
   538
    Digraph dgr(gr, constMap<Edge, bool>(true));
kpeter@723
   539
    OutDegMap<Digraph> odm(dgr);
kpeter@723
   540
    InDegMap<Digraph> idm(dgr);
alpar@877
   541
kpeter@723
   542
    check(odm[n0] == 3 && odm[n1] == 2 && odm[n2] == 1, "Wrong OutDegMap");
kpeter@723
   543
    check(idm[n0] == 0 && idm[n1] == 3 && idm[n2] == 3, "Wrong InDegMap");
alpar@877
   544
kpeter@723
   545
    gr.addEdge(n2, n0);
kpeter@723
   546
kpeter@723
   547
    check(odm[n0] == 3 && odm[n1] == 2 && odm[n2] == 2, "Wrong OutDegMap");
kpeter@723
   548
    check(idm[n0] == 1 && idm[n1] == 3 && idm[n2] == 3, "Wrong InDegMap");
kpeter@723
   549
  }
alpar@877
   550
kpeter@684
   551
  // CrossRefMap
kpeter@684
   552
  {
kpeter@684
   553
    typedef ListDigraph Graph;
kpeter@684
   554
    DIGRAPH_TYPEDEFS(Graph);
kpeter@684
   555
kpeter@684
   556
    checkConcept<ReadWriteMap<Node, int>,
kpeter@684
   557
                 CrossRefMap<Graph, Node, int> >();
kpeter@720
   558
    checkConcept<ReadWriteMap<Node, bool>,
kpeter@720
   559
                 CrossRefMap<Graph, Node, bool> >();
kpeter@720
   560
    checkConcept<ReadWriteMap<Node, double>,
kpeter@720
   561
                 CrossRefMap<Graph, Node, double> >();
alpar@877
   562
kpeter@684
   563
    Graph gr;
kpeter@684
   564
    typedef CrossRefMap<Graph, Node, char> CRMap;
kpeter@684
   565
    CRMap map(gr);
alpar@877
   566
kpeter@684
   567
    Node n0 = gr.addNode();
kpeter@684
   568
    Node n1 = gr.addNode();
kpeter@684
   569
    Node n2 = gr.addNode();
alpar@877
   570
kpeter@684
   571
    map.set(n0, 'A');
kpeter@684
   572
    map.set(n1, 'B');
kpeter@684
   573
    map.set(n2, 'C');
alpar@877
   574
kpeter@720
   575
    check(map[n0] == 'A' && map('A') == n0 && map.inverse()['A'] == n0,
kpeter@720
   576
          "Wrong CrossRefMap");
kpeter@720
   577
    check(map[n1] == 'B' && map('B') == n1 && map.inverse()['B'] == n1,
kpeter@720
   578
          "Wrong CrossRefMap");
kpeter@720
   579
    check(map[n2] == 'C' && map('C') == n2 && map.inverse()['C'] == n2,
kpeter@720
   580
          "Wrong CrossRefMap");
kpeter@720
   581
    check(map.count('A') == 1 && map.count('B') == 1 && map.count('C') == 1,
kpeter@720
   582
          "Wrong CrossRefMap::count()");
alpar@877
   583
kpeter@724
   584
    CRMap::ValueIt it = map.beginValue();
kpeter@720
   585
    check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' &&
kpeter@720
   586
          it == map.endValue(), "Wrong value iterator");
alpar@877
   587
kpeter@684
   588
    map.set(n2, 'A');
kpeter@720
   589
kpeter@720
   590
    check(map[n0] == 'A' && map[n1] == 'B' && map[n2] == 'A',
kpeter@720
   591
          "Wrong CrossRefMap");
kpeter@720
   592
    check(map('A') == n0 && map.inverse()['A'] == n0, "Wrong CrossRefMap");
kpeter@720
   593
    check(map('B') == n1 && map.inverse()['B'] == n1, "Wrong CrossRefMap");
kpeter@720
   594
    check(map('C') == INVALID && map.inverse()['C'] == INVALID,
kpeter@720
   595
          "Wrong CrossRefMap");
kpeter@720
   596
    check(map.count('A') == 2 && map.count('B') == 1 && map.count('C') == 0,
kpeter@720
   597
          "Wrong CrossRefMap::count()");
kpeter@720
   598
kpeter@720
   599
    it = map.beginValue();
kpeter@720
   600
    check(*it++ == 'A' && *it++ == 'A' && *it++ == 'B' &&
kpeter@720
   601
          it == map.endValue(), "Wrong value iterator");
kpeter@720
   602
kpeter@684
   603
    map.set(n0, 'C');
kpeter@684
   604
kpeter@684
   605
    check(map[n0] == 'C' && map[n1] == 'B' && map[n2] == 'A',
kpeter@684
   606
          "Wrong CrossRefMap");
kpeter@684
   607
    check(map('A') == n2 && map.inverse()['A'] == n2, "Wrong CrossRefMap");
kpeter@684
   608
    check(map('B') == n1 && map.inverse()['B'] == n1, "Wrong CrossRefMap");
kpeter@684
   609
    check(map('C') == n0 && map.inverse()['C'] == n0, "Wrong CrossRefMap");
kpeter@720
   610
    check(map.count('A') == 1 && map.count('B') == 1 && map.count('C') == 1,
kpeter@720
   611
          "Wrong CrossRefMap::count()");
kpeter@684
   612
kpeter@720
   613
    it = map.beginValue();
kpeter@684
   614
    check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' &&
kpeter@684
   615
          it == map.endValue(), "Wrong value iterator");
alpar@507
   616
  }
alpar@507
   617
kpeter@684
   618
  // CrossRefMap
kpeter@684
   619
  {
alpar@695
   620
    typedef SmartDigraph Graph;
kpeter@684
   621
    DIGRAPH_TYPEDEFS(Graph);
kpeter@684
   622
kpeter@684
   623
    checkConcept<ReadWriteMap<Node, int>,
kpeter@684
   624
                 CrossRefMap<Graph, Node, int> >();
alpar@877
   625
kpeter@684
   626
    Graph gr;
kpeter@684
   627
    typedef CrossRefMap<Graph, Node, char> CRMap;
kpeter@684
   628
    typedef CRMap::ValueIterator ValueIt;
kpeter@684
   629
    CRMap map(gr);
alpar@877
   630
kpeter@684
   631
    Node n0 = gr.addNode();
kpeter@684
   632
    Node n1 = gr.addNode();
kpeter@684
   633
    Node n2 = gr.addNode();
alpar@877
   634
kpeter@684
   635
    map.set(n0, 'A');
kpeter@684
   636
    map.set(n1, 'B');
kpeter@684
   637
    map.set(n2, 'C');
kpeter@684
   638
    map.set(n2, 'A');
kpeter@684
   639
    map.set(n0, 'C');
kpeter@684
   640
kpeter@684
   641
    check(map[n0] == 'C' && map[n1] == 'B' && map[n2] == 'A',
kpeter@684
   642
          "Wrong CrossRefMap");
kpeter@684
   643
    check(map('A') == n2 && map.inverse()['A'] == n2, "Wrong CrossRefMap");
kpeter@684
   644
    check(map('B') == n1 && map.inverse()['B'] == n1, "Wrong CrossRefMap");
kpeter@684
   645
    check(map('C') == n0 && map.inverse()['C'] == n0, "Wrong CrossRefMap");
kpeter@684
   646
kpeter@684
   647
    ValueIt it = map.beginValue();
kpeter@684
   648
    check(*it++ == 'A' && *it++ == 'B' && *it++ == 'C' &&
kpeter@684
   649
          it == map.endValue(), "Wrong value iterator");
kpeter@684
   650
  }
alpar@25
   651
deba@693
   652
  // Iterable bool map
deba@693
   653
  {
deba@693
   654
    typedef SmartGraph Graph;
deba@693
   655
    typedef SmartGraph::Node Item;
deba@693
   656
deba@693
   657
    typedef IterableBoolMap<SmartGraph, SmartGraph::Node> Ibm;
kpeter@694
   658
    checkConcept<ReferenceMap<Item, bool, bool&, const bool&>, Ibm>();
deba@693
   659
deba@693
   660
    const int num = 10;
deba@693
   661
    Graph g;
deba@915
   662
    Ibm map0(g, true);
deba@693
   663
    std::vector<Item> items;
deba@693
   664
    for (int i = 0; i < num; ++i) {
deba@693
   665
      items.push_back(g.addNode());
deba@693
   666
    }
deba@693
   667
deba@693
   668
    Ibm map1(g, true);
deba@693
   669
    int n = 0;
deba@693
   670
    for (Ibm::TrueIt it(map1); it != INVALID; ++it) {
deba@693
   671
      check(map1[static_cast<Item>(it)], "Wrong TrueIt");
deba@693
   672
      ++n;
deba@693
   673
    }
deba@693
   674
    check(n == num, "Wrong number");
deba@693
   675
deba@693
   676
    n = 0;
deba@693
   677
    for (Ibm::ItemIt it(map1, true); it != INVALID; ++it) {
deba@693
   678
        check(map1[static_cast<Item>(it)], "Wrong ItemIt for true");
deba@693
   679
        ++n;
deba@693
   680
    }
deba@693
   681
    check(n == num, "Wrong number");
deba@693
   682
    check(Ibm::FalseIt(map1) == INVALID, "Wrong FalseIt");
deba@693
   683
    check(Ibm::ItemIt(map1, false) == INVALID, "Wrong ItemIt for false");
deba@693
   684
deba@693
   685
    map1[items[5]] = true;
deba@693
   686
deba@693
   687
    n = 0;
deba@693
   688
    for (Ibm::ItemIt it(map1, true); it != INVALID; ++it) {
deba@693
   689
        check(map1[static_cast<Item>(it)], "Wrong ItemIt for true");
deba@693
   690
        ++n;
deba@693
   691
    }
deba@693
   692
    check(n == num, "Wrong number");
deba@693
   693
deba@693
   694
    map1[items[num / 2]] = false;
deba@693
   695
    check(map1[items[num / 2]] == false, "Wrong map value");
deba@693
   696
deba@693
   697
    n = 0;
deba@693
   698
    for (Ibm::TrueIt it(map1); it != INVALID; ++it) {
deba@693
   699
        check(map1[static_cast<Item>(it)], "Wrong TrueIt for true");
deba@693
   700
        ++n;
deba@693
   701
    }
deba@693
   702
    check(n == num - 1, "Wrong number");
deba@693
   703
deba@693
   704
    n = 0;
deba@693
   705
    for (Ibm::FalseIt it(map1); it != INVALID; ++it) {
deba@693
   706
        check(!map1[static_cast<Item>(it)], "Wrong FalseIt for true");
deba@693
   707
        ++n;
deba@693
   708
    }
deba@693
   709
    check(n == 1, "Wrong number");
deba@693
   710
deba@693
   711
    map1[items[0]] = false;
deba@693
   712
    check(map1[items[0]] == false, "Wrong map value");
deba@693
   713
deba@693
   714
    map1[items[num - 1]] = false;
deba@693
   715
    check(map1[items[num - 1]] == false, "Wrong map value");
deba@693
   716
deba@693
   717
    n = 0;
deba@693
   718
    for (Ibm::TrueIt it(map1); it != INVALID; ++it) {
deba@693
   719
        check(map1[static_cast<Item>(it)], "Wrong TrueIt for true");
deba@693
   720
        ++n;
deba@693
   721
    }
deba@693
   722
    check(n == num - 3, "Wrong number");
deba@693
   723
    check(map1.trueNum() == num - 3, "Wrong number");
deba@693
   724
deba@693
   725
    n = 0;
deba@693
   726
    for (Ibm::FalseIt it(map1); it != INVALID; ++it) {
deba@693
   727
        check(!map1[static_cast<Item>(it)], "Wrong FalseIt for true");
deba@693
   728
        ++n;
deba@693
   729
    }
deba@693
   730
    check(n == 3, "Wrong number");
deba@693
   731
    check(map1.falseNum() == 3, "Wrong number");
deba@693
   732
  }
deba@693
   733
deba@693
   734
  // Iterable int map
deba@693
   735
  {
deba@693
   736
    typedef SmartGraph Graph;
deba@693
   737
    typedef SmartGraph::Node Item;
deba@693
   738
    typedef IterableIntMap<SmartGraph, SmartGraph::Node> Iim;
deba@693
   739
kpeter@694
   740
    checkConcept<ReferenceMap<Item, int, int&, const int&>, Iim>();
deba@693
   741
deba@693
   742
    const int num = 10;
deba@693
   743
    Graph g;
deba@915
   744
    Iim map0(g, 0);
deba@693
   745
    std::vector<Item> items;
deba@693
   746
    for (int i = 0; i < num; ++i) {
deba@693
   747
      items.push_back(g.addNode());
deba@693
   748
    }
deba@693
   749
deba@693
   750
    Iim map1(g);
deba@693
   751
    check(map1.size() == 0, "Wrong size");
deba@693
   752
deba@693
   753
    for (int i = 0; i < num; ++i) {
deba@693
   754
      map1[items[i]] = i;
deba@693
   755
    }
deba@693
   756
    check(map1.size() == num, "Wrong size");
deba@693
   757
deba@693
   758
    for (int i = 0; i < num; ++i) {
deba@693
   759
      Iim::ItemIt it(map1, i);
deba@693
   760
      check(static_cast<Item>(it) == items[i], "Wrong value");
deba@693
   761
      ++it;
deba@693
   762
      check(static_cast<Item>(it) == INVALID, "Wrong value");
deba@693
   763
    }
deba@693
   764
deba@693
   765
    for (int i = 0; i < num; ++i) {
deba@693
   766
      map1[items[i]] = i % 2;
deba@693
   767
    }
deba@693
   768
    check(map1.size() == 2, "Wrong size");
deba@693
   769
deba@693
   770
    int n = 0;
deba@693
   771
    for (Iim::ItemIt it(map1, 0); it != INVALID; ++it) {
kpeter@694
   772
      check(map1[static_cast<Item>(it)] == 0, "Wrong value");
deba@693
   773
      ++n;
deba@693
   774
    }
deba@693
   775
    check(n == (num + 1) / 2, "Wrong number");
deba@693
   776
deba@693
   777
    for (Iim::ItemIt it(map1, 1); it != INVALID; ++it) {
kpeter@694
   778
      check(map1[static_cast<Item>(it)] == 1, "Wrong value");
deba@693
   779
      ++n;
deba@693
   780
    }
deba@693
   781
    check(n == num, "Wrong number");
deba@693
   782
deba@693
   783
  }
deba@693
   784
deba@693
   785
  // Iterable value map
deba@693
   786
  {
deba@693
   787
    typedef SmartGraph Graph;
deba@693
   788
    typedef SmartGraph::Node Item;
deba@693
   789
    typedef IterableValueMap<SmartGraph, SmartGraph::Node, double> Ivm;
deba@693
   790
deba@693
   791
    checkConcept<ReadWriteMap<Item, double>, Ivm>();
deba@693
   792
deba@693
   793
    const int num = 10;
deba@693
   794
    Graph g;
deba@915
   795
    Ivm map0(g, 0.0);
deba@693
   796
    std::vector<Item> items;
deba@693
   797
    for (int i = 0; i < num; ++i) {
deba@693
   798
      items.push_back(g.addNode());
deba@693
   799
    }
deba@693
   800
deba@693
   801
    Ivm map1(g, 0.0);
deba@693
   802
    check(distance(map1.beginValue(), map1.endValue()) == 1, "Wrong size");
deba@693
   803
    check(*map1.beginValue() == 0.0, "Wrong value");
deba@693
   804
deba@693
   805
    for (int i = 0; i < num; ++i) {
deba@693
   806
      map1.set(items[i], static_cast<double>(i));
deba@693
   807
    }
deba@693
   808
    check(distance(map1.beginValue(), map1.endValue()) == num, "Wrong size");
deba@693
   809
deba@693
   810
    for (int i = 0; i < num; ++i) {
deba@693
   811
      Ivm::ItemIt it(map1, static_cast<double>(i));
deba@693
   812
      check(static_cast<Item>(it) == items[i], "Wrong value");
deba@693
   813
      ++it;
deba@693
   814
      check(static_cast<Item>(it) == INVALID, "Wrong value");
deba@693
   815
    }
deba@693
   816
kpeter@724
   817
    for (Ivm::ValueIt vit = map1.beginValue();
deba@693
   818
         vit != map1.endValue(); ++vit) {
deba@693
   819
      check(map1[static_cast<Item>(Ivm::ItemIt(map1, *vit))] == *vit,
kpeter@724
   820
            "Wrong ValueIt");
deba@693
   821
    }
deba@693
   822
deba@693
   823
    for (int i = 0; i < num; ++i) {
deba@693
   824
      map1.set(items[i], static_cast<double>(i % 2));
deba@693
   825
    }
deba@693
   826
    check(distance(map1.beginValue(), map1.endValue()) == 2, "Wrong size");
deba@693
   827
deba@693
   828
    int n = 0;
deba@693
   829
    for (Ivm::ItemIt it(map1, 0.0); it != INVALID; ++it) {
kpeter@694
   830
      check(map1[static_cast<Item>(it)] == 0.0, "Wrong value");
deba@693
   831
      ++n;
deba@693
   832
    }
deba@693
   833
    check(n == (num + 1) / 2, "Wrong number");
deba@693
   834
deba@693
   835
    for (Ivm::ItemIt it(map1, 1.0); it != INVALID; ++it) {
kpeter@694
   836
      check(map1[static_cast<Item>(it)] == 1.0, "Wrong value");
deba@693
   837
      ++n;
deba@693
   838
    }
deba@693
   839
    check(n == num, "Wrong number");
deba@693
   840
deba@693
   841
  }
alpar@877
   842
kpeter@789
   843
  // Graph map utilities:
kpeter@789
   844
  // mapMin(), mapMax(), mapMinValue(), mapMaxValue()
kpeter@789
   845
  // mapFind(), mapFindIf(), mapCount(), mapCountIf()
kpeter@789
   846
  // mapCopy(), mapCompare(), mapFill()
kpeter@789
   847
  {
kpeter@789
   848
    DIGRAPH_TYPEDEFS(SmartDigraph);
kpeter@789
   849
kpeter@789
   850
    SmartDigraph g;
kpeter@789
   851
    Node n1 = g.addNode();
kpeter@789
   852
    Node n2 = g.addNode();
kpeter@789
   853
    Node n3 = g.addNode();
alpar@877
   854
kpeter@789
   855
    SmartDigraph::NodeMap<int> map1(g);
kpeter@789
   856
    SmartDigraph::ArcMap<char> map2(g);
kpeter@789
   857
    ConstMap<Node, A> cmap1 = A();
kpeter@789
   858
    ConstMap<Arc, C> cmap2 = C(0);
alpar@877
   859
kpeter@789
   860
    map1[n1] = 10;
kpeter@789
   861
    map1[n2] = 5;
kpeter@789
   862
    map1[n3] = 12;
alpar@877
   863
kpeter@789
   864
    // mapMin(), mapMax(), mapMinValue(), mapMaxValue()
kpeter@789
   865
    check(mapMin(g, map1) == n2, "Wrong mapMin()");
kpeter@789
   866
    check(mapMax(g, map1) == n3, "Wrong mapMax()");
kpeter@789
   867
    check(mapMin(g, map1, std::greater<int>()) == n3, "Wrong mapMin()");
kpeter@789
   868
    check(mapMax(g, map1, std::greater<int>()) == n2, "Wrong mapMax()");
kpeter@789
   869
    check(mapMinValue(g, map1) == 5, "Wrong mapMinValue()");
kpeter@789
   870
    check(mapMaxValue(g, map1) == 12, "Wrong mapMaxValue()");
kpeter@789
   871
kpeter@789
   872
    check(mapMin(g, map2) == INVALID, "Wrong mapMin()");
kpeter@789
   873
    check(mapMax(g, map2) == INVALID, "Wrong mapMax()");
kpeter@789
   874
kpeter@789
   875
    check(mapMin(g, cmap1) != INVALID, "Wrong mapMin()");
kpeter@789
   876
    check(mapMax(g, cmap2) == INVALID, "Wrong mapMax()");
kpeter@789
   877
kpeter@789
   878
    Arc a1 = g.addArc(n1, n2);
kpeter@789
   879
    Arc a2 = g.addArc(n1, n3);
kpeter@789
   880
    Arc a3 = g.addArc(n2, n3);
kpeter@789
   881
    Arc a4 = g.addArc(n3, n1);
alpar@877
   882
kpeter@789
   883
    map2[a1] = 'b';
kpeter@789
   884
    map2[a2] = 'a';
kpeter@789
   885
    map2[a3] = 'b';
kpeter@789
   886
    map2[a4] = 'c';
kpeter@789
   887
kpeter@789
   888
    // mapMin(), mapMax(), mapMinValue(), mapMaxValue()
kpeter@789
   889
    check(mapMin(g, map2) == a2, "Wrong mapMin()");
kpeter@789
   890
    check(mapMax(g, map2) == a4, "Wrong mapMax()");
kpeter@789
   891
    check(mapMin(g, map2, std::greater<int>()) == a4, "Wrong mapMin()");
kpeter@789
   892
    check(mapMax(g, map2, std::greater<int>()) == a2, "Wrong mapMax()");
kpeter@789
   893
    check(mapMinValue(g, map2, std::greater<int>()) == 'c',
kpeter@789
   894
          "Wrong mapMinValue()");
kpeter@789
   895
    check(mapMaxValue(g, map2, std::greater<int>()) == 'a',
kpeter@789
   896
          "Wrong mapMaxValue()");
kpeter@789
   897
kpeter@789
   898
    check(mapMin(g, cmap1) != INVALID, "Wrong mapMin()");
kpeter@789
   899
    check(mapMax(g, cmap2) != INVALID, "Wrong mapMax()");
kpeter@789
   900
    check(mapMaxValue(g, cmap2) == C(0), "Wrong mapMaxValue()");
kpeter@789
   901
kpeter@789
   902
    check(mapMin(g, composeMap(functorToMap(&createC), map2)) == a2,
kpeter@789
   903
          "Wrong mapMin()");
kpeter@789
   904
    check(mapMax(g, composeMap(functorToMap(&createC), map2)) == a4,
kpeter@789
   905
          "Wrong mapMax()");
kpeter@789
   906
    check(mapMinValue(g, composeMap(functorToMap(&createC), map2)) == C('a'),
kpeter@789
   907
          "Wrong mapMinValue()");
kpeter@789
   908
    check(mapMaxValue(g, composeMap(functorToMap(&createC), map2)) == C('c'),
kpeter@789
   909
          "Wrong mapMaxValue()");
kpeter@789
   910
kpeter@789
   911
    // mapFind(), mapFindIf()
kpeter@789
   912
    check(mapFind(g, map1, 5) == n2, "Wrong mapFind()");
kpeter@789
   913
    check(mapFind(g, map1, 6) == INVALID, "Wrong mapFind()");
kpeter@789
   914
    check(mapFind(g, map2, 'a') == a2, "Wrong mapFind()");
kpeter@789
   915
    check(mapFind(g, map2, 'e') == INVALID, "Wrong mapFind()");
kpeter@789
   916
    check(mapFind(g, cmap2, C(0)) == ArcIt(g), "Wrong mapFind()");
kpeter@789
   917
    check(mapFind(g, cmap2, C(1)) == INVALID, "Wrong mapFind()");
kpeter@789
   918
kpeter@789
   919
    check(mapFindIf(g, map1, Less<int>(7)) == n2,
kpeter@789
   920
          "Wrong mapFindIf()");
kpeter@789
   921
    check(mapFindIf(g, map1, Less<int>(5)) == INVALID,
kpeter@789
   922
          "Wrong mapFindIf()");
kpeter@789
   923
    check(mapFindIf(g, map2, Less<char>('d')) == ArcIt(g),
kpeter@789
   924
          "Wrong mapFindIf()");
kpeter@789
   925
    check(mapFindIf(g, map2, Less<char>('a')) == INVALID,
kpeter@789
   926
          "Wrong mapFindIf()");
kpeter@789
   927
kpeter@789
   928
    // mapCount(), mapCountIf()
kpeter@789
   929
    check(mapCount(g, map1, 5) == 1, "Wrong mapCount()");
kpeter@789
   930
    check(mapCount(g, map1, 6) == 0, "Wrong mapCount()");
kpeter@789
   931
    check(mapCount(g, map2, 'a') == 1, "Wrong mapCount()");
kpeter@789
   932
    check(mapCount(g, map2, 'b') == 2, "Wrong mapCount()");
kpeter@789
   933
    check(mapCount(g, map2, 'e') == 0, "Wrong mapCount()");
kpeter@789
   934
    check(mapCount(g, cmap2, C(0)) == 4, "Wrong mapCount()");
kpeter@789
   935
    check(mapCount(g, cmap2, C(1)) == 0, "Wrong mapCount()");
kpeter@789
   936
kpeter@789
   937
    check(mapCountIf(g, map1, Less<int>(11)) == 2,
kpeter@789
   938
          "Wrong mapCountIf()");
kpeter@789
   939
    check(mapCountIf(g, map1, Less<int>(13)) == 3,
kpeter@789
   940
          "Wrong mapCountIf()");
kpeter@789
   941
    check(mapCountIf(g, map1, Less<int>(5)) == 0,
kpeter@789
   942
          "Wrong mapCountIf()");
kpeter@789
   943
    check(mapCountIf(g, map2, Less<char>('d')) == 4,
kpeter@789
   944
          "Wrong mapCountIf()");
kpeter@789
   945
    check(mapCountIf(g, map2, Less<char>('c')) == 3,
kpeter@789
   946
          "Wrong mapCountIf()");
kpeter@789
   947
    check(mapCountIf(g, map2, Less<char>('a')) == 0,
kpeter@789
   948
          "Wrong mapCountIf()");
alpar@877
   949
kpeter@789
   950
    // MapIt, ConstMapIt
kpeter@789
   951
/*
kpeter@789
   952
These tests can be used after applying bugfix #330
kpeter@789
   953
    typedef SmartDigraph::NodeMap<int>::MapIt MapIt;
kpeter@789
   954
    typedef SmartDigraph::NodeMap<int>::ConstMapIt ConstMapIt;
kpeter@789
   955
    check(*std::min_element(MapIt(map1), MapIt(INVALID)) == 5,
kpeter@789
   956
          "Wrong NodeMap<>::MapIt");
kpeter@789
   957
    check(*std::max_element(ConstMapIt(map1), ConstMapIt(INVALID)) == 12,
kpeter@789
   958
          "Wrong NodeMap<>::MapIt");
alpar@877
   959
kpeter@789
   960
    int sum = 0;
kpeter@789
   961
    std::for_each(MapIt(map1), MapIt(INVALID), Sum<int>(sum));
kpeter@789
   962
    check(sum == 27, "Wrong NodeMap<>::MapIt");
kpeter@789
   963
    std::for_each(ConstMapIt(map1), ConstMapIt(INVALID), Sum<int>(sum));
kpeter@789
   964
    check(sum == 54, "Wrong NodeMap<>::ConstMapIt");
kpeter@789
   965
*/
kpeter@789
   966
kpeter@789
   967
    // mapCopy(), mapCompare(), mapFill()
kpeter@789
   968
    check(mapCompare(g, map1, map1), "Wrong mapCompare()");
kpeter@789
   969
    check(mapCompare(g, cmap2, cmap2), "Wrong mapCompare()");
kpeter@789
   970
    check(mapCompare(g, map1, shiftMap(map1, 0)), "Wrong mapCompare()");
kpeter@789
   971
    check(mapCompare(g, map2, scaleMap(map2, 1)), "Wrong mapCompare()");
kpeter@789
   972
    check(!mapCompare(g, map1, shiftMap(map1, 1)), "Wrong mapCompare()");
kpeter@789
   973
kpeter@789
   974
    SmartDigraph::NodeMap<int> map3(g, 0);
kpeter@789
   975
    SmartDigraph::ArcMap<char> map4(g, 'a');
alpar@877
   976
kpeter@789
   977
    check(!mapCompare(g, map1, map3), "Wrong mapCompare()");
alpar@877
   978
    check(!mapCompare(g, map2, map4), "Wrong mapCompare()");
alpar@877
   979
kpeter@789
   980
    mapCopy(g, map1, map3);
kpeter@789
   981
    mapCopy(g, map2, map4);
kpeter@789
   982
kpeter@789
   983
    check(mapCompare(g, map1, map3), "Wrong mapCompare() or mapCopy()");
alpar@877
   984
    check(mapCompare(g, map2, map4), "Wrong mapCompare() or mapCopy()");
alpar@877
   985
kpeter@789
   986
    Undirector<SmartDigraph> ug(g);
kpeter@789
   987
    Undirector<SmartDigraph>::EdgeMap<char> umap1(ug, 'x');
kpeter@789
   988
    Undirector<SmartDigraph>::ArcMap<double> umap2(ug, 3.14);
alpar@877
   989
kpeter@789
   990
    check(!mapCompare(g, map2, umap1), "Wrong mapCompare() or mapCopy()");
kpeter@789
   991
    check(!mapCompare(g, umap1, map2), "Wrong mapCompare() or mapCopy()");
kpeter@789
   992
    check(!mapCompare(ug, map2, umap1), "Wrong mapCompare() or mapCopy()");
kpeter@789
   993
    check(!mapCompare(ug, umap1, map2), "Wrong mapCompare() or mapCopy()");
alpar@877
   994
kpeter@789
   995
    mapCopy(g, map2, umap1);
kpeter@789
   996
kpeter@789
   997
    check(mapCompare(g, map2, umap1), "Wrong mapCompare() or mapCopy()");
kpeter@789
   998
    check(mapCompare(g, umap1, map2), "Wrong mapCompare() or mapCopy()");
kpeter@789
   999
    check(mapCompare(ug, map2, umap1), "Wrong mapCompare() or mapCopy()");
kpeter@789
  1000
    check(mapCompare(ug, umap1, map2), "Wrong mapCompare() or mapCopy()");
alpar@877
  1001
kpeter@789
  1002
    mapCopy(g, map2, umap1);
kpeter@789
  1003
    mapCopy(g, umap1, map2);
kpeter@789
  1004
    mapCopy(ug, map2, umap1);
kpeter@789
  1005
    mapCopy(ug, umap1, map2);
alpar@877
  1006
kpeter@789
  1007
    check(!mapCompare(ug, umap1, umap2), "Wrong mapCompare() or mapCopy()");
kpeter@789
  1008
    mapCopy(ug, umap1, umap2);
kpeter@789
  1009
    check(mapCompare(ug, umap1, umap2), "Wrong mapCompare() or mapCopy()");
alpar@877
  1010
kpeter@789
  1011
    check(!mapCompare(g, map1, constMap<Node>(2)), "Wrong mapCompare()");
kpeter@789
  1012
    mapFill(g, map1, 2);
kpeter@789
  1013
    check(mapCompare(g, constMap<Node>(2), map1), "Wrong mapFill()");
kpeter@789
  1014
kpeter@789
  1015
    check(!mapCompare(g, map2, constMap<Arc>('z')), "Wrong mapCompare()");
kpeter@789
  1016
    mapCopy(g, constMap<Arc>('z'), map2);
kpeter@789
  1017
    check(mapCompare(g, constMap<Arc>('z'), map2), "Wrong mapCopy()");
kpeter@789
  1018
  }
alpar@877
  1019
alpar@25
  1020
  return 0;
alpar@25
  1021
}