/usr/include/gecode/int/count/rel.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 273 274 275 276 277 278 279 280 281 | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <schulte@gecode.org>
*
* Copyright:
* Christian Schulte, 2003
*
* Last modified:
* $Date: 2011-08-25 10:41:47 +0200 (Thu, 25 Aug 2011) $ by $Author: tack $
* $Revision: 12351 $
*
* 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 <gecode/int/rel.hh>
namespace Gecode { namespace Int { namespace Count {
/*
* Counting domain consistent equality
*
*/
template<class VY>
forceinline ViewTypeDesc
vtd(VY y) {
(void) y;
return VTD_VARVIEW;
}
template<>
forceinline ViewTypeDesc
vtd(const IntSet& y) {
(void) y;
return VTD_INTSET;
}
template<>
forceinline ViewTypeDesc
vtd(ConstIntView y) {
(void) y;
return VTD_CONSTVIEW;
}
template<>
forceinline ViewTypeDesc
vtd(ZeroIntView y) {
(void) y;
return VTD_CONSTVIEW;
}
forceinline void
subscribe(Space& home, Propagator& p, IntSet& y) {
(void) home; (void) p; (void) y;
}
template<class VY>
forceinline void
subscribe(Space& home, Propagator& p, VY y) {
y.subscribe(home, p, PC_INT_DOM);
}
forceinline void
cancel(Space& home, Propagator& p, IntSet& y) {
(void) home; (void) p;
y.~IntSet();
}
template<class VY>
forceinline void
cancel(Space& home, Propagator& p, VY y) {
y.cancel(home, p, PC_INT_DOM);
}
template<class VX>
forceinline RelTest
holds(VX x, ConstIntView y) {
return rtest_eq_dom(x,y.val());
}
template<class VX>
forceinline RelTest
holds(VX x, ZeroIntView) {
return rtest_eq_dom(x,0);
}
template<class VX>
forceinline RelTest
holds(VX x, const IntSet& y) {
if ((x.max() < y.min()) || (y.max() < x.min()))
return RT_FALSE;
ViewRanges<VX> rx(x);
IntSetRanges ry(y);
switch (Iter::Ranges::compare(rx,ry)) {
case Iter::Ranges::CS_SUBSET:
return RT_TRUE;
case Iter::Ranges::CS_DISJOINT:
return RT_FALSE;
case Iter::Ranges::CS_NONE:
return RT_MAYBE;
default:
GECODE_NEVER;
}
GECODE_NEVER;
return RT_MAYBE;
}
template<class VX>
forceinline RelTest
holds(VX x, VX y) {
return rtest_eq_dom(x,y);
}
template<class VX>
forceinline ExecStatus
post_true(Home home, VX x, ConstIntView y) {
GECODE_ME_CHECK(x.eq(home,y.val()));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_true(Home home, VX x, ZeroIntView) {
GECODE_ME_CHECK(x.eq(home,0));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_true(Home home, VX x, const IntSet& y) {
IntSetRanges ry(y);
GECODE_ME_CHECK(x.inter_r(home,ry,false));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_true(Home home, ViewArray<VX>& x, ConstIntView y) {
for (int i = x.size(); i--; )
GECODE_ME_CHECK(x[i].eq(home,y.val()));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_true(Home home, ViewArray<VX>& x, ZeroIntView) {
for (int i = x.size(); i--; )
GECODE_ME_CHECK(x[i].eq(home,0));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_true(Home home, ViewArray<VX>& x, const IntSet& y) {
for (int i = x.size(); i--; ) {
IntSetRanges ry(y);
GECODE_ME_CHECK(x[i].inter_r(home,ry,false));
}
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_false(Home home, VX x, ConstIntView y) {
GECODE_ME_CHECK(x.nq(home,y.val()));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_false(Home home, VX x, ZeroIntView) {
GECODE_ME_CHECK(x.nq(home,0));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_false(Home home, VX x, const IntSet& y) {
IntSetRanges ry(y);
GECODE_ME_CHECK(x.minus_r(home,ry,false));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_false(Home home, ViewArray<VX>& x, ConstIntView y) {
for (int i = x.size(); i--; )
GECODE_ME_CHECK(x[i].nq(home,y.val()));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_false(Home home, ViewArray<VX>& x, ZeroIntView) {
for (int i = x.size(); i--; )
GECODE_ME_CHECK(x[i].nq(home,0));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_false(Home home, ViewArray<VX>& x, const IntSet& y) {
for (int i = x.size(); i--; ) {
IntSetRanges ry(y);
GECODE_ME_CHECK(x[i].minus_r(home,ry,false));
}
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_true(Home home, ViewArray<VX>& x, VX y) {
ViewArray<VX> z(home,x.size()+1);
z[x.size()] = y;
for (int i = x.size(); i--; )
z[i] = x[i];
return Rel::NaryEqDom<VX>::post(home,z);
}
template<class VX>
forceinline ExecStatus
post_true(Home home, VX x, VX y) {
return Rel::EqDom<VX,VX>::post(home,x,y);
}
template<class VX>
forceinline ExecStatus
post_false(Home home, ViewArray<VX>& x, VX y) {
for (int i = x.size(); i--; )
GECODE_ES_CHECK(Rel::Nq<VX>::post(home,x[i],y));
return ES_OK;
}
template<class VX>
forceinline ExecStatus
post_false(Home home, VX x, VX y) {
return Rel::Nq<VX>::post(home,x,y);
}
template<class VX>
forceinline ExecStatus
prune(Space& home, ViewArray<VX>& x, ConstIntView) {
(void) home;
(void) x;
return ES_OK;
}
template<class VX>
forceinline ExecStatus
prune(Space& home, ViewArray<VX>& x, ZeroIntView) {
(void) home;
(void) x;
return ES_OK;
}
template<class VX>
forceinline ExecStatus
prune(Space& home, ViewArray<VX>& x, const IntSet& y) {
(void) home;
(void) x;
(void) y;
return ES_OK;
}
template<class VX>
forceinline ExecStatus
prune(Space& home, ViewArray<VX>& x, VX y) {
if (x.size() == 0)
return ES_OK;
Region r(home);
ViewRanges<VX>* rx = r.alloc<ViewRanges<VX> >(x.size());
for (int i=x.size(); i--; )
rx[i] = ViewRanges<VX>(x[i]);
Iter::Ranges::NaryUnion u(r, rx, x.size());
GECODE_ME_CHECK(y.inter_r(home, u, false));
return ES_OK;
}
}}}
// STATISTICS: int-prop
|