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