1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
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
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/>.
25 Miscellaneous tests for HashTable
27 \*---------------------------------------------------------------------------*/
29 #include "HashTable.H"
30 #include "HashPtrTable.H"
35 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 int main(int argc, char *argv[])
40 HashTable<label, Foam::string> table1(0);
42 table1.insert("kjhk", 10);
43 table1.insert("kjhk2", 12);
45 Info<< "table1: " << table1 << nl
46 << "toc: " << table1.toc() << endl;
48 HashTable<label, label, Hash<label> > table2(10);
54 Info<< "table2: " << table2 << nl
55 << "toc: " << table2.toc() << endl;
58 table3.transfer(table2);
60 Info<< "table2: " << table2 << nl
61 << "toc: " << table2.toc() << endl;
63 Info<< "table3: " << table3 << nl
64 << "toc: " << table3.toc() << endl;
66 Map<label> table4(table3.xfer());
68 Info<< "table3: " << table3 << nl
69 << "toc: " << table3.toc() << endl;
71 Info<< "table4: " << table4 << nl
72 << "toc: " << table4.toc() << endl;
74 HashPtrTable<label, Foam::string> ptable1(0);
75 ptable1.insert("kjhkjh", new label(10));
77 Info<< "PtrTable toc: " << ptable1.toc() << endl;
79 Info<< "End\n" << endl;
85 // ************************************************************************* //