ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / applications / test / HashSet / hashSetTest.C
blobf51a3987844db7854fc2edef20eac3138e630b55
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 Description
26 \*---------------------------------------------------------------------------*/
28 #include "HashSet.H"
29 #include "Map.H"
31 using namespace Foam;
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 // Main program:
36 int main(int argc, char *argv[])
38     wordHashSet setA(0);
39     HashTable<label, word> tableA;
41     HashTable<nil> tableB;
42     Map<label> mapA;
44     setA.insert("kjhk");
45     setA.insert("kjhk2");
47     tableA.insert("value1", 1);
48     tableA.insert("value2", 2);
49     tableA.insert("value3", 3);
51     tableB.insert("value4", nil());
52     tableB.insert("value5", nil());
53     tableB.insert("value6", nil());
55     mapA.set(1, 1);
56     mapA.set(2, 2);
57     mapA.set(3, 3);
58     mapA.set(4, 4);
60     Info<< setA << endl;
61     Info<< tableA << endl;
62     Info<< mapA << endl;
64     Info<< "create from HashSet: ";
65     Info<< wordHashSet(setA) << endl;
66     Info<< "create from HashTable<T>: ";
67     Info<< wordHashSet(tableA) << endl;
68     Info<< "create from HashTable<nil>: ";
69     Info<< wordHashSet(tableB) << endl;
71     Info<< "create from Map<label>: ";
72     Info<< labelHashSet(mapA) << endl;
74     Info<<"combined toc: "
75         << (wordHashSet(setA) | wordHashSet(tableA) | wordHashSet(tableB))
76         << nl;
79     labelHashSet setB(1);
80     setB.insert(11);
81     setB.insert(42);
83     Info<< "setB : " << setB << endl;
85     labelHashSet setC(1);
86     setC.insert(2008);
87     setC.insert(1984);
89     Info<< "setC : " << setC << endl;
91     labelHashSet setD(1);
92     setD.insert(11);
93     setD.insert(100);
94     setD.insert(2008);
96     Info<< "setD : " << setD << endl;
98     Info<< "setB == setC: " << (setB == setC) << endl;
99     Info<< "setC != setD: " << (setC != setD) << endl;
101     // test operations
102     setB += setC;
103     Info<< "setB += setC : " << setB << endl;
105     setB &= setD;
106     Info<< "setB &= setD : " << setB << endl;
108     Info<< "setB : " << setB << endl;
109     Info<< "setC : " << setC << endl;
110     Info<< "setD : " << setD << endl;
111     Info<< "setB ^ setC ^ setD : " << (setB ^ setC ^ setD) << endl;
113     // test operator[]
115     Info<< "setD : " << setD << endl;
116     if (setD[0])
117     {
118         Info<< "setD has 0" << endl;
119     }
120     else
121     {
122         Info<< "setD has no 0" << endl;
123     }
126     if (setD[11])
127     {
128         Info<< "setD has 11" << endl;
129     }
130     else
131     {
132         Info<< "setD has no 0" << endl;
133     }
135     Info<< "setD : " << setD << endl;
137     // this doesn't work (yet?)
138     // setD[12] = true;
140     return 0;
144 // ************************************************************************* //