ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / test / HashSet / Test-hashSet.C
blob0d22207c2f1ee54aba9875b49826a4a9046ca09a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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(49);
95     setD.insert(36);
96     setD.insert(2008);
98     Info<< "setD : " << setD << endl;
100     Info<< "setB == setC: " << (setB == setC) << endl;
101     Info<< "setC != setD: " << (setC != setD) << endl;
103     // test operations
104     setB += setC;
105     Info<< "setB += setC : " << setB << endl;
107     setB &= setD;
108     Info<< "setB &= setD : " << setB << endl;
110     Info<< "setB : " << setB << endl;
111     Info<< "setC : " << setC << endl;
112     Info<< "setD : " << setD << endl;
113     Info<< "setB ^ setC ^ setD : " << (setB ^ setC ^ setD) << endl;
115     // test operator[]
117     Info<< "setD : " << setD << endl;
118     if (setD[0])
119     {
120         Info<< "setD has 0" << endl;
121     }
122     else
123     {
124         Info<< "setD has no 0" << endl;
125     }
128     if (setD[11])
129     {
130         Info<< "setD has 11" << endl;
131     }
132     else
133     {
134         Info<< "setD has no 0" << endl;
135     }
137     Info<< "setD : " << setD << endl;
139     // this doesn't work (yet?)
140     // setD[12] = true;
142     List<label> someLst(10);
143     forAll(someLst, elemI)
144     {
145         someLst[elemI] = elemI*elemI;
146     }
148     label added = setD.set(someLst);
149     Info<< "added " << added << " from " << someLst.size() << endl;
150     Info<< "setD : " << setD << endl;
153     return 0;
157 // ************************************************************************* //