/usr/include/gecode/float/bool/ite.hpp is in libgecode-dev 5.1.0-2build1.
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 | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <schulte@gecode.org>
*
* Copyright:
* Christian Schulte, 2016
*
* Last modified:
* $Date: 2016-12-02 13:20:09 +0100 (Fri, 02 Dec 2016) $ by $Author: schulte $
* $Revision: 15304 $
*
* 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/float/rel.hh>
namespace Gecode { namespace Float { namespace Bool {
template<class View>
forceinline
Ite<View>::Ite(Home home, Int::BoolView b0, View y0, View y1, View y2)
: Propagator(home), b(b0), x0(y0), x1(y1), x2(y2) {
b.subscribe(home,*this,Int::PC_BOOL_VAL);
x0.subscribe(home,*this,PC_FLOAT_BND);
x1.subscribe(home,*this,PC_FLOAT_BND);
x2.subscribe(home,*this,PC_FLOAT_BND);
}
template<class View>
forceinline
Ite<View>::Ite(Space& home, bool share, Ite<View>& p)
: Propagator(home,share,p) {
b.update(home,share,p.b);
x0.update(home,share,p.x0);
x1.update(home,share,p.x1);
x2.update(home,share,p.x2);
}
template<class View>
PropCost
Ite<View>::cost(const Space&, const ModEventDelta&) const {
return PropCost::ternary(PropCost::LO);
}
template<class View>
void
Ite<View>::reschedule(Space& home) {
b.reschedule(home,*this,Int::PC_BOOL_VAL);
x0.reschedule(home,*this,PC_FLOAT_BND);
x1.reschedule(home,*this,PC_FLOAT_BND);
x2.reschedule(home,*this,PC_FLOAT_BND);
}
template<class View>
forceinline size_t
Ite<View>::dispose(Space& home) {
b.cancel(home,*this,Int::PC_BOOL_VAL);
x0.cancel(home,*this,PC_FLOAT_BND);
x1.cancel(home,*this,PC_FLOAT_BND);
x2.cancel(home,*this,PC_FLOAT_BND);
(void) Propagator::dispose(home);
return sizeof(*this);
}
template<class View>
Actor*
Ite<View>::copy(Space& home, bool share) {
return new (home) Ite<View>(home,share,*this);
}
template<class View>
inline ExecStatus
Ite<View>::post(Home home, Int::BoolView b, View x0, View x1, View x2) {
if (b.one())
return Rel::Eq<View,View>::post(home,x2,x0);
if (b.zero())
return Rel::Eq<View,View>::post(home,x2,x1);
GECODE_ME_CHECK(x2.lq(home,std::max(x0.max(),x1.max())));
GECODE_ME_CHECK(x2.gq(home,std::min(x0.min(),x1.min())));
(void) new (home) Ite<View>(home,b,x0,x1,x2);
return ES_OK;
}
template<class View>
ExecStatus
Ite<View>::propagate(Space& home, const ModEventDelta&) {
if (b.one())
GECODE_REWRITE(*this,(Rel::Eq<View,View>::post(home(*this),x2,x0)));
if (b.zero())
GECODE_REWRITE(*this,(Rel::Eq<View,View>::post(home(*this),x2,x1)));
GECODE_ME_CHECK(x2.lq(home,std::max(x0.max(),x1.max())));
GECODE_ME_CHECK(x2.gq(home,std::min(x0.min(),x1.min())));
RelTest eq20 = rtest_eq(x2,x0);
RelTest eq21 = rtest_eq(x2,x1);
if ((eq20 == RT_FALSE) && (eq21 == RT_FALSE))
return ES_FAILED;
if (eq20 == RT_FALSE) {
GECODE_ME_CHECK(b.zero_none(home));
if (eq21 == RT_TRUE)
return home.ES_SUBSUMED(*this);
else
GECODE_REWRITE(*this,(Rel::Eq<View,View>::post(home(*this),x2,x1)));
}
if (eq21 == RT_FALSE) {
GECODE_ME_CHECK(b.one_none(home));
if (eq20 == RT_TRUE)
return home.ES_SUBSUMED(*this);
else
GECODE_REWRITE(*this,(Rel::Eq<View,View>::post(home(*this),x2,x0)));
}
if ((eq20 == RT_TRUE) && (eq21 == RT_TRUE))
return home.ES_SUBSUMED(*this);
return ES_FIX;
}
}}}
// STATISTICS: float-prop
|