/usr/include/BoxLib/BoxList.H is in libbox-dev 2.5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 | /*
** (c) 1996-2000 The Regents of the University of California (through
** E.O. Lawrence Berkeley National Laboratory), subject to approval by
** the U.S. Department of Energy. Your use of this software is under
** license -- the license agreement is attached and included in the
** directory as license.txt or you may contact Berkeley Lab's Technology
** Transfer Department at TTD@lbl.gov. NOTICE OF U.S. GOVERNMENT RIGHTS.
** The Software was developed under funding from the U.S. Government
** which consequently retains certain rights as follows: the
** U.S. Government has been granted for itself and others acting on its
** behalf a paid-up, nonexclusive, irrevocable, worldwide license in the
** Software to reproduce, prepare derivative works, and perform publicly
** and display publicly. Beginning five (5) years after the date
** permission to assert copyright is obtained from the U.S. Department of
** Energy, and subject to any subsequent five (5) year renewals, the
** U.S. Government is granted for itself and others acting on its behalf
** a paid-up, nonexclusive, irrevocable, worldwide license in the
** Software to reproduce, prepare derivative works, distribute copies to
** the public, perform publicly and display publicly, and to permit
** others to do so.
*/
#ifndef BL_BOXLIST_H
#define BL_BOXLIST_H
//
// $Id: BoxList.H,v 1.30 2001/08/06 19:40:27 car Exp $
//
#include <iosfwd>
#include <list>
#include <IntVect.H>
#include <IndexType.H>
#include <Box.H>
//
// Forward declarations.
//
class BoxArray;
class BoxList;
namespace BoxLib
{
/*@ManDoc: Returns a BoxList defining the complement of BoxList bl
in Box b.
*/
BoxList complementIn (const Box& b, const BoxList& bl);
//
//@ManDoc: Returns BoxList defining the compliment of b2 in b1in.
//
BoxList boxDiff (const Box& b1in, const Box& b2);
/*@ManDoc: Returns a new BoxList in which each Box is refined by the
given ratio.
*/
BoxList refine (const BoxList& bl, int ratio);
/*@ManDoc: Returns a new BoxList in which each Box is coarsened by
the given ratio.
*/
BoxList coarsen (const BoxList& bl, int ratio);
//
//@ManDoc: Returns a BoxList defining the intersection of bl with b.
//
BoxList intersect (const BoxList& bl, const Box& b);
//
//@ManDoc: Returns a BoxList defining the intersection of bl with br.
//
BoxList intersect (const BoxList& bl, const BoxList& br);
/*@ManDoc: Returns a new BoxList in which each Box is grown by the
given size.
*/
BoxList accrete (const BoxList& bl, int sz);
}
//
//@ManDoc: Output a BoxList to an ostream in ASCII format.
//
std::ostream& operator<< (std::ostream& os, const BoxList& blist);
//
//@Man:
//@Memo: A List of Boxes
/*@Doc:
A BoxList is a class for managing a List of Boxes that share a common
IndexType. This class implements operations for sets of Boxes.
This is a concrete class, not a polymorphic one.
*/
class BoxList
{
public:
friend class BoxDomain;
typedef std::list<Box>::iterator iterator;
typedef std::list<Box>::const_iterator const_iterator;
//
//@ManDoc: Construct an empty BoxList with IndexType::TheCellType().
//
BoxList ();
//
/// Make a boxList consisting of a single Box
//
BoxList (const Box& bx);
//
//@ManDoc: Construct an empty BoxList with IndexType btyp
//
explicit BoxList (IndexType btyp);
//
//@ManDoc: Construct a BoxList from a BoxArray.
//
explicit BoxList (const BoxArray& ba);
//
//@ManDoc: Append a Box to this BoxList.
//
void push_back (const Box& bn);
//
//@ManDoc: Prepend a Box to this BoxList.
//
void push_front (const Box& bn);
//
//@ManDoc: Join the BoxList to ourselves.
//
void join (const BoxList& blist);
//
//@ManDoc: Catenate the BoxList to ourselves. Removes entries from blist.
//
void catenate (BoxList& blist);
//
//@ManDoc: Remove all Boxes from this BoxList.
//
void clear ();
//
//@ManDoc: The number of Boxes in this BoxList.
//
int size () const;
iterator begin ();
const_iterator begin () const;
iterator end ();
const_iterator end () const;
/*@ManDoc: True if this BoxList is valid; i.e. all the Boxes are
valid and they all have the same IndexType. Also returns
true if the BoxList is empty.
*/
bool ok () const;
//
//@ManDoc: Is this BoxList equal to rhs?
//
bool operator== (const BoxList& rhs) const;
//
//@ManDoc: Is this BoxList notequal to rhs?
//
bool operator!= (const BoxList& rhs) const;
//
//@ManDoc: Is this BoxList empty?
//
bool isEmpty () const;
//
//@ManDoc: Is this BoxList not empty?
//
bool isNotEmpty () const;
//
//@ManDoc: True if the set of intersecting Boxes is empty.
//
bool isDisjoint () const;
//
//@ManDoc: True if the IntVect is within any of the Boxes in this BoxList.
//
bool contains (const IntVect& v) const;
/*@ManDoc: True if the Box is within any of the Boxes in the List.
The Box must also have the same IndexType as those in this
BoxList.
*/
bool contains (const Box& b) const;
//
//@ManDoc: True if all Boxes in bl are contained in this BoxList.
//
bool contains (const BoxList& bl) const;
//
//@ManDoc: True if all Boxes in ba are contained in this BoxList.
//
bool contains (const BoxArray& ba) const;
/*@ManDoc: Modify this BoxList to contain only its intersection with
Box b.
*/
BoxList& intersect (const Box& b);
/*@ManDoc: Modify this BoxList to contain only its intersection with
BoxList b.
*/
BoxList& intersect (const BoxList& b);
//
//@ManDoc: Remove the Box from this BoxList.
//
BoxList& remove (const Box& bx);
//
//@ManDoc: Remove the pointed to Box from this BoxList.
//
BoxList& remove (iterator bli);
//
//@ManDoc: Creates the complement of BoxList bl in Box b.
//
BoxList& complementIn (const Box& b,
const BoxList& bl);
//
//@ManDoc: Refine each Box in the BoxList by the ratio.
//
BoxList& refine (int ratio);
//
//@ManDoc: Refine each Box in the BoxList by the ratio.
//
BoxList& refine (const IntVect& ratio);
//
//@ManDoc: Coarsen each Box in the BoxList by the ratio.
//
BoxList& coarsen (int ratio);
//
//@ManDoc: Coarsen each Box in the BoxList by the ratio.
//
BoxList& coarsen (const IntVect& ratio);
//
//@ManDoc: Grow each Box in the BoxList by size sz.
//
BoxList& accrete (int sz);
//
//@ManDoc: Applies Box::shift(int,int) to each Box in the BoxList.
//
BoxList& shift (int dir,
int nzones);
//
//@ManDoc: Applies Box::shiftHalf(int,int) to each Box in the BoxList.
//
BoxList& shiftHalf (int dir,
int num_halfs);
//
//@ManDoc: Applies Box::shiftHalf(IntVect) to each Box in BoxList.
//
BoxList& shiftHalf (const IntVect& iv);
/*@ManDoc: Merge adjacent Boxes in this BoxList. Return the number
of Boxes merged.
*/
int simplify ();
/*@ManDoc: Merges all possible adjacent Boxes. Returns the total
number of Boxes merged.
*/
int minimize ();
//
//@ManDoc: Forces each Box in the BoxList to have sides of length <= chunk.
//
BoxList& maxSize (int chunk);
/*@ManDoc: Forces each Box in the BoxList to have dimth side of
length <= chunk[dim].
*/
BoxList& maxSize (const IntVect& chunk);
//
//@ManDoc: Returns smallest Box that contains all Boxes in this BoxList.
//
Box minimalBox () const;
//
//@ManDoc: Returns the IndexType of Boxes in this BoxList.
//
IndexType ixType () const;
/*@ManDoc: Applies surroundingNodes(Box) to each Box in BoxArray.
See the documentation of Box for details.
*/
BoxList& surroundingNodes ();
/*@ManDoc: Applies surroundingNodes(Box,int) to each Box in
BoxList. See the documentation of Box for details.
*/
BoxList& surroundingNodes (int dir);
//
//@ManDoc: Applies Box::enclosedCells() to each Box in the BoxList.
//
BoxList& enclosedCells ();
//
//@ManDoc: Applies Box::enclosedCells(int) to each Box in the BoxList.
//
BoxList& enclosedCells (int dir);
//
//@ManDoc: Applies Box::convert(IndexType) to each Box in the BoxList.
//
BoxList& convert (IndexType typ);
protected:
//
// The list of Boxes.
//
std::list<Box> lbox;
//
// Returns a reference to the List<Box>.
//
std::list<Box>& listBox();
//
// Returns a constant reference to the List<Box>.
//
const std::list<Box>& listBox() const;
private:
//
// The IndexType of Boxes in the BoxList.
//
IndexType btype;
};
inline
BoxList::iterator
BoxList::begin()
{
return lbox.begin();
}
inline
BoxList::const_iterator
BoxList::begin() const
{
return lbox.begin();
}
inline
BoxList::iterator
BoxList::end()
{
return lbox.end();
}
inline
BoxList::const_iterator
BoxList::end() const
{
return lbox.end();
}
inline
IndexType
BoxList::ixType () const
{
return btype;
}
inline
void
BoxList::push_back (const Box& bn)
{
BL_ASSERT(ixType() == bn.ixType());
lbox.push_back(bn);
}
inline
void
BoxList::push_front (const Box& bn)
{
BL_ASSERT(ixType() == bn.ixType());
lbox.push_front(bn);
}
inline
bool
BoxList::isEmpty () const
{
return lbox.empty();
}
inline
int
BoxList::size () const
{
return lbox.size();
}
inline
bool
BoxList::isNotEmpty () const
{
return !lbox.empty();
}
inline
std::list<Box>&
BoxList::listBox()
{
return lbox;
}
inline
const std::list<Box>&
BoxList::listBox() const
{
return lbox;
}
inline
void
BoxList::clear ()
{
lbox.clear();
}
#endif /*BL_BOXLIST_H*/
|