/usr/include/gecode/set/precede/single.hpp is in libgecode-dev 4.4.0-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 | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christopher Mears <Chris.Mears@monash.edu>
*
* Contributing authors:
* Christian Schulte <schulte@gecode.org>
* Guido Tack <tack@gecode.org>
*
* Copyright:
* Christopher Mears, 2011
* Christian Schulte, 2011
* Guido Tack, 2011
*
* Last modified:
* $Date: 2011-07-12 12:49:06 +0200 (Tue, 12 Jul 2011) $ by $Author: tack $
* $Revision: 12172 $
*
* 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 { namespace Set { namespace Precede {
template<class View>
forceinline
Single<View>::Index::Index(Space& home, Propagator& p,
Council<Index>& c, int i0)
: Advisor(home,p,c), i(i0) {}
template<class View>
forceinline
Single<View>::Index::Index(Space& home, bool share, Index& a)
: Advisor(home,share,a), i(a.i) {}
template<class View>
forceinline ExecStatus
Single<View>::updateAlpha(Space& home) {
int n = x.size();
while (alpha < n) {
if (x[alpha].notContains(s)) {
GECODE_ME_CHECK(x[alpha].exclude(home, t));
} else if (x[alpha].contains(t)) {
GECODE_ME_CHECK(x[alpha].include(home, s));
} else {
break;
}
alpha++;
}
return ES_OK;
}
template<class View>
forceinline ExecStatus
Single<View>::updateBeta(Space& home) {
int n = x.size();
do {
beta++;
} while ((beta < n) &&
(x[beta].notContains(s) || x[beta].contains(t)));
if (beta > gamma) {
GECODE_ME_CHECK(x[alpha].exclude(home, t));
GECODE_ME_CHECK(x[alpha].include(home, s));
}
return ES_OK;
}
template<class View>
forceinline
Single<View>::Single(Home home, ViewArray<View>& x0,
int s0, int t0, int b, int g)
: NaryPropagator<View, PC_SET_NONE>(home,x0),
c(home), s(s0), t(t0), alpha(0), beta(b), gamma(g) {
for (int i=x.size(); i--; )
if (!x[i].assigned())
x[i].subscribe(home,*new (home) Index(home,*this,c,i));
View::schedule(home, *this, ME_SET_BB);
}
template<class View>
inline ExecStatus
Single<View>::post(Home home, ViewArray<View>& x, int s, int t) {
{
int alpha = 0;
while (alpha < x.size()) {
if (x[alpha].notContains(s)) {
GECODE_ME_CHECK(x[alpha].exclude(home, t));
} else if (x[alpha].contains(t)) {
GECODE_ME_CHECK(x[alpha].include(home, s));
} else {
break;
}
alpha++;
}
x.drop_fst(alpha);
if (x.size() == 0)
return ES_OK;
}
// alpha has been normalized to 0
int beta = 0, gamma = 0;
do {
gamma++;
} while ((gamma < x.size()) &&
(!x[gamma].notContains(s) || !x[gamma].contains(t)));
do {
beta++;
} while ((beta < x.size()) &&
(x[beta].notContains(s) || x[beta].contains(t)));
if (beta > gamma) {
GECODE_ME_CHECK(x[0].exclude(home, t));
GECODE_ME_CHECK(x[0].include(home, s));
return ES_OK;
}
if (gamma < x.size())
x.drop_lst(gamma);
(void) new (home) Single<View>(home, x, s, t, beta, gamma);
return ES_OK;
}
template<class View>
forceinline
Single<View>::Single(Space& home, bool share, Single& p)
: NaryPropagator<View,PC_SET_NONE>(home, share, p),
s(p.s), t(p.t),
alpha(p.alpha), beta(p.beta), gamma(p.gamma) {
c.update(home, share, p.c);
}
template<class View>
Propagator*
Single<View>::copy(Space& home, bool share) {
// Try to eliminate assigned views at the beginning
if (alpha > 0) {
int i = 0;
while ((i < alpha) && x[i].assigned())
i++;
x.drop_fst(i);
for (Advisors<Index> as(c); as(); ++as)
as.advisor().i -= i;
alpha -= i; beta -= i; gamma -= i;
}
// Try to eliminate assigned views at the end
if (gamma < x.size()) {
int i = x.size()-1;
while ((i > gamma) && x[i].assigned())
i--;
x.drop_lst(i);
}
return new (home) Single<View>(home, share, *this);
}
template<class View>
inline size_t
Single<View>::dispose(Space& home) {
// Cancel remaining advisors
for (Advisors<Index> as(c); as(); ++as)
x[as.advisor().i].cancel(home,as.advisor());
c.dispose(home);
(void) NaryPropagator<View,PC_SET_NONE>::dispose(home);
return sizeof(*this);
}
template<class View>
PropCost
Single<View>::cost(const Space&, const ModEventDelta&) const {
return PropCost::linear(PropCost::LO, x.size());
}
template<class View>
ExecStatus
Single<View>::advise(Space& home, Advisor& a0, const Delta&) {
Index& a(static_cast<Index&>(a0));
int i = a.i;
// Check for gamma
if ((beta <= gamma) && (i < gamma) &&
x[i].notContains(s) && x[i].contains(t))
gamma = i;
if (x[i].assigned()) {
a.dispose(home,c);
if (c.empty())
return ES_NOFIX;
} else if ((i < alpha) || (i > gamma)) {
x[i].cancel(home,a);
a.dispose(home,c);
return (c.empty()) ? ES_NOFIX : ES_FIX;
}
if (beta > gamma)
return ES_NOFIX;
if ((alpha == i) || (beta == i))
return ES_NOFIX;
return ES_FIX;
}
template<class View>
ExecStatus
Single<View>::propagate(Space& home, const ModEventDelta&) {
int n = x.size();
if (beta > gamma) {
GECODE_ME_CHECK(x[alpha].exclude(home, t));
GECODE_ME_CHECK(x[alpha].include(home, s));
return home.ES_SUBSUMED(*this);
}
if (alpha < n && (x[alpha].notContains(s) || x[alpha].contains(t))) {
if (x[alpha].notContains(s)) {
GECODE_ME_CHECK(x[alpha].exclude(home, t));
} else {
GECODE_ME_CHECK(x[alpha].include(home, s));
}
alpha++;
while (alpha < beta) {
if (x[alpha].notContains(s)) {
GECODE_ME_CHECK(x[alpha].exclude(home, t));
} else {
GECODE_ME_CHECK(x[alpha].include(home, s));
}
alpha++;
}
GECODE_ES_CHECK(updateAlpha(home));
beta = alpha;
if (alpha < n)
GECODE_ES_CHECK(updateBeta(home));
} else if ((beta < n) && (x[beta].notContains(s) || x[beta].contains(t))) {
GECODE_ES_CHECK(updateBeta(home));
}
return (c.empty()) ? home.ES_SUBSUMED(*this) : ES_FIX;
}
}}}
// STATISTICS: set-prop
|