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