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
|
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <schulte@gecode.org>
*
* Contributing authors:
* Guido Tack <tack@gecode.org>
*
* Copyright:
* Christian Schulte, 2004
* Guido Tack, 2004
*
* This file is part of Gecode, the generic constraint
* development environment:
* http://www.gecode.org
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
namespace Gecode {
/**
* \brief Lists of ranges (intervals)
*
* This class implements a simple datastructure for storing sets of
* integers as lists of ranges (intervals). Memory is managed as
* space-allocated free lists.
*
* \ingroup FuncMemSpace
*/
class RangeList : public FreeList {
protected:
/// Minimum of range
int _min;
/// Maximum of range
int _max;
public:
/// \name Constructors
//@{
/// Default constructor (noop)
RangeList(void);
/// Initialize with minimum \a min and maximum \a max
RangeList(int min, int max);
/// Initialize with minimum \a min and maximum \a max and successor \a n
RangeList(int min, int max, RangeList* n);
//@}
/// \name Access
//@{
/// Return minimum
int min(void) const;
/// Return maximum
int max(void) const;
/// Return width (distance between maximum and minimum)
unsigned int width(void) const;
/// Return next element
RangeList* next(void) const;
/// Return pointer to next element
RangeList** nextRef(void);
//@}
/// \name Update
//@{
/// Set minimum to \a n
void min(int n);
/// Set maximum to \a n
void max(int n);
/// Set next range to \a n
void next(RangeList* n);
//@}
/// \name Iterator operations
//@{
/// Create rangelist \a r from range iterator \a i
template<class Iter>
static void copy(Space& home, RangeList*& r, Iter& i);
/// Overwrite rangelist \a r with ranges from range iterator \a i
template<class Iter>
static void overwrite(Space& home, RangeList*& r, Iter& i);
/// Insert (as union) ranges from iterator \a i into \a r
template<class I>
static void insert(Space& home, RangeList*& r, I& i);
//@}
/// \name Memory management
//@{
/// Free memory for all elements between this and \a l (inclusive)
void dispose(Space& home, RangeList* l);
/// Free memory for all elements reachable from this
void dispose(Space& home);
/// Allocate memory from space
static void* operator new(size_t s, Space& home);
/// Placement-new operator (noop)
static void* operator new(size_t s, void* p);
/// No-op (for exceptions)
static void operator delete(void*);
/// No-op (use dispose instead)
static void operator delete(void*, Space& home);
/// No-op (use dispose instead)
static void operator delete(void*, void*);
//@}
};
/*
* Range lists
*
*/
forceinline
RangeList::RangeList(void) {}
forceinline
RangeList::RangeList(int min, int max, RangeList* n)
: FreeList(n), _min(min), _max(max) {}
forceinline
RangeList::RangeList(int min, int max)
: _min(min), _max(max) {}
forceinline RangeList*
RangeList::next(void) const {
return static_cast<RangeList*>(FreeList::next());
}
forceinline RangeList**
RangeList::nextRef(void) {
return reinterpret_cast<RangeList**>(FreeList::nextRef());
}
forceinline void
RangeList::min(int n) {
_min = n;
}
forceinline void
RangeList::max(int n) {
_max = n;
}
forceinline void
RangeList::next(RangeList* n) {
FreeList::next(n);
}
forceinline int
RangeList::min(void) const {
return _min;
}
forceinline int
RangeList::max(void) const {
return _max;
}
forceinline unsigned int
RangeList::width(void) const {
return static_cast<unsigned int>(_max - _min + 1);
}
forceinline void
RangeList::operator delete(void*) {}
forceinline void
RangeList::operator delete(void*, Space&) {
GECODE_NEVER;
}
forceinline void
RangeList::operator delete(void*, void*) {
GECODE_NEVER;
}
forceinline void*
RangeList::operator new(size_t, Space& home) {
return home.fl_alloc<sizeof(RangeList)>();
}
forceinline void*
RangeList::operator new(size_t, void* p) {
return p;
}
forceinline void
RangeList::dispose(Space& home, RangeList* l) {
home.fl_dispose<sizeof(RangeList)>(this,l);
}
forceinline void
RangeList::dispose(Space& home) {
RangeList* l = this;
while (l->next() != nullptr)
l=l->next();
dispose(home,l);
}
template<class Iter>
forceinline void
RangeList::copy(Space& home, RangeList*& r, Iter& i) {
RangeList sentinel; sentinel.next(r);
RangeList* p = &sentinel;
while (i()) {
RangeList* n = new (home) RangeList(i.min(),i.max());
p->next(n); p=n; ++i;
}
p->next(nullptr);
r = sentinel.next();
}
template<class Iter>
forceinline void
RangeList::overwrite(Space& home, RangeList*& r, Iter& i) {
RangeList sentinel; sentinel.next(r);
RangeList* p = &sentinel;
RangeList* c = p->next();
while ((c != nullptr) && i()) {
c->min(i.min()); c->max(i.max());
p=c; c=c->next(); ++i;
}
if ((c == nullptr) && !i())
return;
if (c == nullptr) {
assert(i());
// New elements needed
do {
RangeList* n = new (home) RangeList(i.min(),i.max());
p->next(n); p=n; ++i;
} while (i());
} else {
// Dispose excess elements
while (c->next() != nullptr)
c=c->next();
p->next()->dispose(home,c);
}
p->next(nullptr);
r = sentinel.next();
}
template<class I>
forceinline void
RangeList::insert(Space& home, RangeList*& r, I& i) {
RangeList sentinel;
sentinel.next(r);
RangeList* p = &sentinel;
RangeList* c = p->next();
while ((c != nullptr) && i()) {
if ((c->max()+1 < i.min())) {
p=c; c=c->next();
} else if (i.max()+1 < c->min()) {
RangeList* n = new (home) RangeList(i.min(),i.max(),c);
p->next(n); p=n; ++i;
} else {
int min = std::min(c->min(),i.min());
int max = std::max(c->max(),i.max());
RangeList* f=c;
p=c; c=c->next(); ++i;
next:
if ((c != nullptr) && (c->min() <= max+1)) {
max = std::max(max,c->max());
p=c; c=c->next();
goto next;
}
if (i() && (i.min() <= max+1)) {
max = std::max(max,i.max());
++i;
goto next;
}
// Dispose now unused elements
if (f->next() != p)
f->next()->dispose(home,p);
f->min(min); f->max(max); f->next(c);
}
}
if (c == nullptr) {
while (i()) {
RangeList* n = new (home) RangeList(i.min(),i.max());
p->next(n); p=n;
++i;
}
p->next(nullptr);
}
r = sentinel.next();
}
}
// STATISTICS: kernel-other
|