/usr/include/gecode/int/cumulative/tree.hpp is in libgecode-dev 3.7.1-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 | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <schulte@gecode.org>
* Guido Tack <tack@gecode.org>
*
* Copyright:
* Christian Schulte, 2009
* Guido Tack, 2010
*
* Last modified:
* $Date: 2011-05-25 16:56:41 +0200 (Wed, 25 May 2011) $ by $Author: schulte $
* $Revision: 12022 $
*
* 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.
*
*/
#include <algorithm>
#include <cmath>
namespace Gecode { namespace Int { namespace Cumulative {
/*
* Omega tree
*/
forceinline void
OmegaNode::init(const OmegaNode&, const OmegaNode&) {
e = 0.0; env = -Int::Limits::double_infinity;
}
forceinline void
OmegaNode::update(const OmegaNode& l, const OmegaNode& r) {
e = l.e + r.e; env = std::max(plus(l.env,r.e), r.env);
}
template<class TaskView>
OmegaTree<TaskView>::OmegaTree(Region& r, int c0,
const TaskViewArray<TaskView>& t)
: TaskTree<TaskView,OmegaNode>(r,t), c(c0) {
for (int i=tasks.size(); i--; ) {
leaf(i).e = 0.0; leaf(i).env = -Int::Limits::double_infinity;
}
init();
}
template<class TaskView>
forceinline void
OmegaTree<TaskView>::insert(int i) {
leaf(i).e = tasks[i].e();
leaf(i).env = static_cast<double>(c)*tasks[i].est()+tasks[i].e();
update(i);
}
template<class TaskView>
forceinline void
OmegaTree<TaskView>::remove(int i) {
leaf(i).e = 0.0; leaf(i).env = -Int::Limits::double_infinity;
update(i);
}
template<class TaskView>
forceinline double
OmegaTree<TaskView>::env(void) const {
return root().env;
}
/*
* Extended Omega tree
*/
forceinline void
ExtOmegaNode::init(const ExtOmegaNode& l, const ExtOmegaNode& r) {
OmegaNode::init(l,r);
cenv = -Int::Limits::double_infinity;
}
forceinline void
ExtOmegaNode::update(const ExtOmegaNode& l, const ExtOmegaNode& r) {
OmegaNode::update(l,r);
cenv = std::max(plus(l.cenv,r.e), r.cenv);
}
template<class TaskView> void
ExtOmegaTree<TaskView>::init(int ci0) {
ci = ci0;
for (int i=tasks.size(); i--; ) {
leaf(i).e = 0.0;
leaf(i).env = leaf(i).cenv = -Int::Limits::double_infinity;
}
init();
}
template<class TaskView> template<class Node>
ExtOmegaTree<TaskView>::ExtOmegaTree(Region& r, int c0,
const TaskTree<TaskView,Node>& t)
: TaskTree<TaskView,ExtOmegaNode>(r,t), c(c0) {}
template<class TaskView>
forceinline double
ExtOmegaTree<TaskView>::env(int i) {
// Enter task i
leaf(i).e = tasks[i].e();
leaf(i).env = static_cast<double>(c)*tasks[i].est()+tasks[i].e();
leaf(i).cenv = static_cast<double>(c-ci)*tasks[i].est()+tasks[i].e();
TaskTree<TaskView,ExtOmegaNode>::update(i);
// Perform computation of node for task with minest
int met = 0;
{
double e = 0.0;
while (!n_leaf(met)) {
if (plus(node[n_right(met)].cenv,e) >
static_cast<double>(c-ci) * tasks[i].lct()) {
met = n_right(met);
} else {
e += node[n_right(met)].e; met = n_left(met);
}
}
}
/*
* The following idea to compute the cut in one go is taken from:
* Joseph Scott, Filtering Algorithms for Discrete Resources,
* Master Thesis, Uppsala University, 2010 (in preparation).
*/
// Now perform split from leaf met upwards
double a_e = node[met].e;
double a_env = node[met].env;
double b_e = 0.0;
while (!n_root(met)) {
if (left(met)) {
b_e += node[n_right(n_parent(met))].e;
} else {
a_env = std::max(a_env, plus(node[n_left(n_parent(met))].env,a_e));
a_e += node[n_left(n_parent(met))].e;
}
met = n_parent(met);
}
return b_e + a_env;
}
/*
* Omega lambda tree
*/
forceinline void
OmegaLambdaNode::init(const OmegaLambdaNode& l, const OmegaLambdaNode& r) {
OmegaNode::init(l,r);
le = 0.0; lenv = -Int::Limits::double_infinity;
resLe = undef; resLenv = undef;
}
forceinline void
OmegaLambdaNode::update(const OmegaLambdaNode& l, const OmegaLambdaNode& r) {
OmegaNode::update(l,r);
if (l.le + r.e > l.e + r.le) {
le = l.le + r.e;
resLe = l.resLe;
} else {
le = l.e + r.le;
resLe = r.resLe;
}
if ((r.lenv >= plus(l.env,r.le)) && (r.lenv >= plus(l.lenv,r.e))) {
lenv = r.lenv; resLenv = r.resLenv;
} else if (plus(l.env,r.le) >= plus(l.lenv,r.e)) {
assert(plus(l.env,r.le) > r.lenv);
lenv = plus(l.env,r.le); resLenv = r.resLe;
} else {
assert((plus(l.lenv,r.e) > r.lenv) &&
(plus(l.lenv,r.e) > plus(l.env,r.le)));
lenv = plus(l.lenv,r.e); resLenv = l.resLenv;
}
}
template<class TaskView>
OmegaLambdaTree<TaskView>::OmegaLambdaTree(Region& r, int c0,
const TaskViewArray<TaskView>& t)
: TaskTree<TaskView,OmegaLambdaNode>(r,t), c(c0) {
// Enter all tasks into tree (omega = all tasks, lambda = empty)
for (int i=tasks.size(); i--; ) {
leaf(i).e = tasks[i].e();
leaf(i).le = 0.0;
leaf(i).env = static_cast<double>(c)*tasks[i].est()+tasks[i].e();
leaf(i).lenv = -Int::Limits::double_infinity;
leaf(i).resLe = OmegaLambdaNode::undef;
leaf(i).resLenv = OmegaLambdaNode::undef;
}
update();
}
template<class TaskView>
forceinline void
OmegaLambdaTree<TaskView>::shift(int i) {
// i is in omega
assert(leaf(i).env > -Int::Limits::double_infinity);
leaf(i).le = leaf(i).e;
leaf(i).e = 0.0;
leaf(i).lenv = leaf(i).env;
leaf(i).env = -Int::Limits::double_infinity;
leaf(i).resLe = i;
leaf(i).resLenv = i;
update(i);
}
template<class TaskView>
forceinline void
OmegaLambdaTree<TaskView>::lremove(int i) {
// i not in omega but in lambda
assert(leaf(i).env == -Int::Limits::double_infinity);
assert(leaf(i).lenv > -Int::Limits::double_infinity);
leaf(i).le = 0.0;
leaf(i).lenv = -Int::Limits::double_infinity;
leaf(i).resLe = OmegaLambdaNode::undef;
leaf(i).resLenv = OmegaLambdaNode::undef;
update(i);
}
template<class TaskView>
forceinline bool
OmegaLambdaTree<TaskView>::lempty(void) const {
return root().resLenv < 0;
}
template<class TaskView>
forceinline int
OmegaLambdaTree<TaskView>::responsible(void) const {
return root().resLenv;
}
template<class TaskView>
forceinline double
OmegaLambdaTree<TaskView>::env(void) const {
return root().env;
}
template<class TaskView>
forceinline double
OmegaLambdaTree<TaskView>::lenv(void) const {
return root().lenv;
}
}}}
// STATISTICS: int-prop
|