/usr/include/gecode/int/linear/post.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 | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <schulte@gecode.org>
*
* Copyright:
* Christian Schulte, 2002
*
* Last modified:
* $Date: 2011-08-12 15:27:20 +0200 (Fri, 12 Aug 2011) $ by $Author: tack $
* $Revision: 12285 $
*
* 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 <climits>
namespace Gecode { namespace Int { namespace Linear {
template<class View>
inline void
estimate(Term<View>* t, int n, int c, int& l, int &u) {
double min = c;
double max = c;
for (int i=n; i--; ) {
double a = t[i].a;
if (a > 0) {
min += a*t[i].x.min();
max += a*t[i].x.max();
} else {
max += a*t[i].x.min();
min += a*t[i].x.max();
}
}
if (min < Limits::min)
min = Limits::min;
if (min > Limits::max)
min = Limits::max;
l = static_cast<int>(min);
if (max < Limits::min)
max = Limits::min;
if (max > Limits::max)
max = Limits::max;
u = static_cast<int>(max);
}
/// Sort linear terms by view
template<class View>
class TermLess {
public:
forceinline bool
operator ()(const Term<View>& a, const Term<View>& b) {
return before(a.x,b.x);
}
};
template<class View>
inline bool
normalize(Term<View>* t, int &n,
Term<View>* &t_p, int &n_p,
Term<View>* &t_n, int &n_n) {
/*
* Join coefficients for aliased variables:
*
*/
{
// Group same variables
TermLess<View> tl;
Support::quicksort<Term<View>,TermLess<View> >(t,n,tl);
// Join adjacent variables
int i = 0;
int j = 0;
while (i < n) {
Limits::check(t[i].a,"Int::linear");
double a = t[i].a;
View x = t[i].x;
while ((++i < n) && same(t[i].x,x)) {
a += t[i].a;
Limits::check(a,"Int::linear");
}
if (a != 0.0) {
t[j].a = static_cast<int>(a); t[j].x = x; j++;
}
}
n = j;
}
/*
* Partition into positive/negative coefficents
*
*/
if (n > 0) {
int i = 0;
int j = n-1;
while (true) {
while ((t[j].a < 0) && (--j >= 0)) ;
while ((t[i].a > 0) && (++i < n)) ;
if (j <= i) break;
std::swap(t[i],t[j]);
}
t_p = t; n_p = i;
t_n = t+n_p; n_n = n-n_p;
} else {
t_p = t; n_p = 0;
t_n = t; n_n = 0;
}
/*
* Make all coefficients positive
*
*/
for (int i=n_n; i--; )
t_n[i].a = -t_n[i].a;
/*
* Test for unit coefficients only
*
*/
for (int i=n; i--; )
if (t[i].a != 1)
return false;
return true;
}
}}}
// STATISTICS: int-post
|