ENH: polyTopoChange : store zone as DynamicList<label> to avoid HashTable::erase...
[OpenFOAM-1.6.x.git] / src / dynamicMesh / polyTopoChange / polyTopoChange / polyTopoChangeTemplates.C
blob527138ede10ed9ad0f5c7b99852e1bc3ca620d0e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "polyTopoChange.H"
29 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
31 template <class T>
32 void Foam::polyTopoChange::reorder
34     const labelList& oldToNew,
35     DynamicList<T>& lst
38     // Create copy
39     DynamicList<T> oldLst(lst);
41     forAll(oldToNew, elemI)
42     {
43         label newElemI = oldToNew[elemI];
45         if (newElemI != -1)
46         {
47             lst[newElemI] = oldLst[elemI];
48         }
49     }
53 template <class T>
54 void Foam::polyTopoChange::reorder
56     const labelList& oldToNew,
57     List<DynamicList<T> >& lst
60     // Create copy
61     List<DynamicList<T> > oldLst(lst);
63     forAll(oldToNew, elemI)
64     {
65         label newElemI = oldToNew[elemI];
67         if (newElemI != -1)
68         {
69             lst[newElemI].transfer(oldLst[elemI]);
70         }
71     }
75 template <class T>
76 void Foam::polyTopoChange::renumberKey
78     const labelList& oldToNew,
79     Map<T>& elems
82     Map<T> newElems(elems.size());
84     forAllConstIter(typename Map<T>, elems, iter)
85     {
86         label newElem = oldToNew[iter.key()];
88         if (newElem >= 0)
89         {
90             newElems.insert(newElem, iter());
91         }
92     }
94     elems.transfer(newElems);
98 // ************************************************************************* //