Report patch name instead of index in debug
[foam-extend-3.2.git] / src / foam / containers / Lists / BiIndirectList / BiIndirectListI.H
blob24ff2715c1cceb65d86009f5e2350a6a7d19ab36
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
28 template<class T>
29 inline Foam::BiIndirectList<T>::BiIndirectList
31     const UList<T>& posList,
32     const UList<T>& negList,
33     const UList<label>& addr
36     posList_(const_cast<UList<T>&>(posList)),
37     negList_(const_cast<UList<T>&>(negList)),
38     addressing_(addr)
42 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
44 template<class T>
45 inline Foam::label Foam::BiIndirectList<T>::size() const
47     return addressing_.size();
51 template<class T>
52 inline bool Foam::BiIndirectList<T>::empty() const
54     return addressing_.empty();
58 template<class T>
59 inline const Foam::UList<T>& Foam::BiIndirectList<T>::posList() const
61     return posList_;
65 template<class T>
66 inline const Foam::UList<T>& Foam::BiIndirectList<T>::negList() const
68     return negList_;
72 template<class T>
73 inline const Foam::List<Foam::label>& Foam::BiIndirectList<T>::addressing()
74  const
76     return addressing_;
80 template<class T>
81 inline Foam::List<Foam::label>& Foam::BiIndirectList<T>::addressing()
83     return addressing_;
87 template<class T>
88 inline Foam::label Foam::BiIndirectList<T>::posIndex(const label i)
90     return i;
94 template<class T>
95 inline Foam::label Foam::BiIndirectList<T>::negIndex(const label i)
97     return -i-1;
101 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
103 template<class T>
104 inline Foam::List<T> Foam::BiIndirectList<T>::operator()() const
106     List<T> result(size());
108     forAll(*this, i)
109     {
110         result[i] = operator[](i);
111     }
113     return result;
117 template<class T>
118 inline T& Foam::BiIndirectList<T>::operator[](const label i)
120     label index = addressing_[i];
122     if (index >= 0)
123     {
124         return posList_[index];
125     }
126     else
127     {
128         return negList_[-index-1];
129     }
133 template<class T>
134 inline const T& Foam::BiIndirectList<T>::operator[](const label i) const
136     label index = addressing_[i];
138     if (index >= 0)
139     {
140         return posList_[index];
141     }
142     else
143     {
144         return negList_[-index-1];
145     }
149 template<class T>
150 inline void Foam::BiIndirectList<T>::operator=(const UList<T>& ae)
152     if (addressing_.size() != ae.size())
153     {
154         FatalErrorIn("BiIndirectList<T>::operator=(const UList<T>&)")
155             << "Addressing and list of addressed elements "
156                "have different sizes: "
157             << addressing_.size() << " " << ae.size()
158             << abort(FatalError);
159     }
161     forAll(addressing_, i)
162     {
163         operator[](i) = ae[i];
164     }
168 template<class T>
169 inline void Foam::BiIndirectList<T>::operator=(const T& t)
171     forAll(addressing_, i)
172     {
173         operator[](i) = t;
174     }
178 // ************************************************************************* //