Fixed URL for libccmio-2.6.1 (bug report #5 by Thomas Oliveira)
[foam-extend-3.2.git] / src / mesh / cfMesh / utilities / containers / VRWGraphList / VRWGraphListI.H
blob6cd9e2aaaa7400101df6e0dd18948e7627075d99
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh 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     cfMesh 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 cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 namespace Foam
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 inline void Foam::VRWGraphList::checkIndex
33     const label i,
34     const label j,
35     const label k
36 ) const
38     if( (i < 0) || (i >= rows_.size()) )
39     {
40         FatalErrorIn
41         (
42             "void Foam::VRWGraphList<T,width>::"
43             "checkIndex(const label i, const label j, const label k) const"
44         ) << "Position index " << Foam::label(i)
45             << " is not in range " << Foam::label(0)
46             << " and " << rows_.size() << abort(FatalError);
47     }
49     if( (j < 0) || (j >= rows_[i].size()) )
50         FatalErrorIn
51         (
52             "void Foam::VRWGraphList<T,width>::"
53             "checkIndex(label const i, const label j, const label k) const"
54         ) << "Row index " << Foam::label(j)
55             << " is not in range " << Foam::label(0)
56             << " and " << rows_[i].size() << abort(FatalError);
58     if( (k < 0) || (k >= data_.sizeOfRow(rows_[i].start()+j)) )
59         FatalErrorIn
60         (
61             "void Foam::VRWGraphList<T,width>::"
62             "checkIndex(label const i, const label j, const label k) const"
63         ) << "Data index " << Foam::label(k)
64             << " is not in range " << Foam::label(0)
65             << " and " << data_.sizeOfRow(rows_[i].start()+j)
66             << abort(FatalError);
69 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
71 //- Construct null
72 inline Foam::VRWGraphList::VRWGraphList()
74     data_(),
75     rows_()
79 inline Foam::VRWGraphList::VRWGraphList
81     const VRWGraphList& ol
84     data_(ol.data_),
85     rows_(ol.rows_)
89 inline Foam::VRWGraphList::~VRWGraphList()
94 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
96 inline Foam::label Foam::VRWGraphList::size() const
98     return rows_.size();
101 inline Foam::label Foam::VRWGraphList::sizeOfGraph(const label posI) const
103     return rows_[posI].size();
106 inline Foam::label Foam::VRWGraphList::sizeOfRow
108     const label posI,
109     const label rowI
110 ) const
112     return data_.sizeOfRow(rows_[posI].start()+rowI);
115 inline void Foam::VRWGraphList::clear()
117     data_.setSize(0);
118     rows_.setSize(0);
121 template<class GraphType>
122 inline void Foam::VRWGraphList::appendGraph
124     const GraphType& l
127     rowElement re(data_.size(), l.size());
129     for(label i=0;i<l.size();++i)
130         data_.appendList(l[i]);
132     rows_.append(re);
135 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
137 inline Foam::label Foam::VRWGraphList::operator()
139     const label i,
140     const label j,
141     const label k
142 ) const
144     #ifdef FULLDEBUG
145     checkIndex(i, j, k);
146     #endif
148     return data_(rows_[i].start() + j, k);
152 inline Foam::label& Foam::VRWGraphList::operator()
154     const label i, const label j, const label k
157     #ifdef FULLDEBUG
158     checkIndex(i, j, k);
159     #endif
161     return data_(rows_[i].start() + j, k);
164 inline const Foam::subGraph<const VRWGraph> Foam::VRWGraphList::operator[]
166     const label i
167 ) const
169     return Foam::subGraph<const VRWGraph>(data_, i, rows_[i].size());
172 inline void Foam::VRWGraphList::operator=(const VRWGraphList& l)
174     data_ = l.data_;
175     rows_ = l.rows_;
178 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 } // End namespace Foam
182 // ************************************************************************* //