ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / applications / test / PackedList1 / PackedListTest1.C
blob03b6108fb78a578344a772f8609df0bf35afd213
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Application
26 Description
28 \*---------------------------------------------------------------------------*/
30 #include "uLabel.H"
31 #include "IOstreams.H"
32 #include "PackedBoolList.H"
34 using namespace Foam;
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
37 //  Main program:
39 int main(int argc, char *argv[])
41     Info<< "PackedList max_bits() = " << PackedList<>::max_bits() << nl;
43     Info<< "\ntest allocation with value\n";
44     PackedList<3> list1(5,1);
45     list1.print(Info);
47     Info<< "\ntest assign uniform value\n";
48     list1 = 3;
49     list1.print(Info);
51     Info<< "\ntest assign uniform value (with overflow)\n";
52     list1 = -1;
53     list1.print(Info);
55     Info<< "\ntest zero\n";
56     list1 = 0;
57     list1.print(Info);
59     Info<< "\ntest set() with default argument (max_value)\n";
60     list1.set(3);
61     list1.print(Info);
63     Info<< "\ntest assign between references\n";
64     list1[2] = 3;
65     list1[4] = list1[2];
66     list1.print(Info);
68     Info<< "\ntest assign between references, with chaining\n";
69     list1[0] = list1[4] = 1;
70     list1.print(Info);
72     Info<< "\ntest assign between references, with chaining and auto-vivify\n";
73     list1[1] = list1[8] = list1[10] = list1[14] = 2;
74     list1.print(Info);
77     Info<< "\ntest operator== between references\n";
78     if (list1[1] == list1[8])
79     {
80         Info<< "[1] == [8] (expected)\n";
81     }
82     else
83     {
84         Info<< "[1] != [8] (unexpected)\n";
85     }
87     if (list1[0] != list1[1])
88     {
89         Info<< "[0] != [1] (expected)\n";
90     }
91     else
92     {
93         Info<< "[0] == [1] (unexpected)\n";
94     }
96     Info<< "\ntest operator== with iterator\n";
97     {
98         PackedList<3>::iterator iter = list1[1];
100         if (iter != list1[8])
101         {
102             Info<< "iter != [8] (expected)\n";
103         }
104         else
105         {
106             Info<< "iter == [8] (unexpected)\n";
107         }
109         if (*iter != list1[8])
110         {
111             Info<< "*iter != [8] (unexpected)\n";
112         }
113         else
114         {
115             Info<< "*iter == [8] (expected)\n";
116         }
117     }
120     {
121         const PackedList<3>& constLst = list1;
122         Info<< "\ntest operator[] const with out-of-range index\n";
123         constLst.print(Info);
124         if (constLst[20])
125         {
126             Info<< "[20] is true (unexpected)\n";
127         }
128         else
129         {
130             Info<< "[20] is false (expected) list size should be unchanged (const)\n";
131         }
132         constLst.print(Info);
134         Info<< "\ntest operator[] non-const with out-of-range index\n";
135         if (list1[20])
136         {
137             Info<< "[20] is true (unexpected)\n";
138         }
139         else
140         {
141             Info<< "[20] is false (expected) but list was resized?? (non-const)\n";
142         }
143         list1.print(Info);
144     }
147     Info<< "\ntest operator[] with out-of-range index\n";
148     if (!list1[20])
149     {
150         Info<< "[20] is false, as expected\n";
151     }
152     list1.print(Info);
154     Info<< "\ntest resize with value (without reallocation)\n";
155     list1.resize(8, list1.max_value());
156     list1.print(Info);
158     Info<< "\ntest flip() function\n";
159     list1.flip();
160     list1.print(Info);
162     Info<< "\nre-flip()\n";
163     list1.flip();
164     list1.print(Info);
166     Info<< "\ntest set() function\n";
167     list1.set(1, 5);
168     list1.print(Info);
170     Info<< "\ntest assign bool\n";
171     list1 = false;
172     list1.print(Info);
174     Info<< "\ntest assign bool\n";
175     list1 = true;
176     list1.print(Info);
178     Info<< "\ntest resize without value (with reallocation)\n";
179     list1.resize(12);
180     list1.print(Info);
182     Info<< "\ntest resize with value (with reallocation)\n";
183     list1.resize(25, list1.max_value());
184     list1.print(Info);
186     Info<< "\ntest resize smaller (should not touch allocation)\n";
187     list1.resize(8);
188     list1.print(Info);
190     Info<< "\ntest append() operation\n";
191     list1.append(2);
192     list1.append(3);
193     list1.append(4);
194     list1.print(Info);
196     Info<< "\ntest reserve() operation\n";
197     list1.reserve(32);
198     list1.print(Info);
200     Info<< "\ntest shrink() operation\n";
201     list1.shrink();
202     list1.print(Info);
204     Info<< "\ntest setCapacity() operation\n";
205     list1.setCapacity(15);
206     list1.print(Info);
208     Info<< "\ntest setCapacity() operation\n";
209     list1.setCapacity(100);
210     list1.print(Info);
212     Info<< "\ntest operator[] assignment\n";
213     list1[16] = 5;
214     list1.print(Info);
216     Info<< "\ntest operator[] assignment with auto-vivify\n";
217     list1[36] = list1.max_value();
218     list1.print(Info);
220     Info<< "\ntest setCapacity smaller\n";
221     list1.setCapacity(24);
222     list1.print(Info);
224     Info<< "\ntest resize much smaller\n";
225     list1.resize(150);
226     list1.print(Info);
228     Info<< "\ntest trim\n";
229     list1.trim();
230     list1.print(Info);
232     // add in some misc values
233     list1[31] = 1;
234     list1[32] = 2;
235     list1[33] = 3;
237     Info<< "\ntest iterator\n";
238     PackedList<3>::iterator iter = list1.begin();
239     Info<< "begin():";
240     iter.print(Info) << "\n";
242     Info<< "iterator:" << iter() << "\n";
243     iter() = 5;
244     iter.print(Info);
245     list1.print(Info);
247     iter = list1[31];
248     Info<< "iterator:" << iter() << "\n";
249     iter.print(Info);
252     Info<< "\ntest get() method\n";
253     Info<< "get(10):" << list1.get(10) << " and list[10]:" << list1[10] << "\n";
254     list1.print(Info);
256     Info<< "\ntest iterator indexing\n";
257     Info<< "cend() ";
258     list1.cend().print(Info) << "\n";
260     {
261         Info<< "\ntest assignment of iterator\n";
262         list1.print(Info);
263         Info<< "cend()\n";
264         list1.end().print(Info);
265         PackedList<3>::iterator cit = list1[100];
266         Info<< "out-of-range: ";
267         cit.print(Info);
268         cit = list1[15];
269         Info<< "in-range: ";
270         cit.print(Info);
271         Info<< "out-of-range: ";
272         cit = list1[1000];
273         cit.print(Info);
274     }
277     for
278     (
279         PackedList<3>::iterator cit = list1[30];
280         cit != list1.end();
281         ++cit
282     )
283     {
284         cit.print(Info);
285     }
287     Info<< "\ntest operator[] auto-vivify\n";
288     Info<< "size:" << list1.size() << "\n";
290     const unsigned int val = list1[45];
292     Info<< "list[45]:" << val << "\n";
293     Info<< "size after read:" << list1.size() << "\n";
295     list1[45] = list1.max_value();
296     Info<< "size after write:" << list1.size() << "\n";
297     Info<< "list[45]:" << list1[45] << "\n";
298     list1[49] = list1[100];
299     list1.print(Info);
302     Info<< "\ntest copy constructor + append\n";
303     PackedList<3> list2(list1);
304     list2.append(4);
305     Info<< "source list:\n";
306     list1.print(Info);
307     Info<< "destination list:\n";
308     list2.print(Info);
310     Info<< "\ntest pattern that fills all bits\n";
311     PackedList<4> list3(8, 8);
313     label pos = list3.size() - 1;
315     list3[pos--] = list3.max_value();
316     list3[pos--] = 0;
317     list3[pos--] = list3.max_value();
318     list3.print(Info);
320     Info<< "removed final value: " << list3.remove() << endl;
321     list3.print(Info);
324     List<bool> list4(4, true);
325     {
326         const List<bool>& constLst = list4;
327         Info<< "\ntest operator[] const with out-of-range index\n";
328         Info<< constLst << endl;
329         if (constLst[20])
330         {
331             Info<< "[20] is true (unexpected)\n";
332         }
333         else
334         {
335             Info<< "[20] is false (expected) list size should be unchanged (const)\n";
336         }
337         Info<< constLst << endl;
338     }
340     Info<< "\n\nDone.\n";
342     return 0;
346 // ************************************************************************* //