/usr/include/gecode/int/sequence.hh 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 | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* David Rijsman <David.Rijsman@quintiq.com>
*
* Copyright:
* David Rijsman, 2009
*
* Last modified:
* $Date: 2010-04-08 12:35:31 +0200 (Thu, 08 Apr 2010) $
* $Revision: 10684 $
*
* 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.
*
*/
#ifndef __GECODE_INT_SEQUENCE_HH__
#define __GECODE_INT_SEQUENCE_HH__
#include <gecode/int.hh>
#include <gecode/int/rel.hh>
namespace Gecode { namespace Int { namespace Sequence {
/**
* \namespace Gecode::Int::Sequence
* \brief %Sequence propagators
*
* This namespace contains a propagator for the
* cumulatives constraint as presented in
* Willem Jan van Hoeve, Gilles Pesant, Louis-Martin Rousseau, and
* Ashish Sabharwal, New filtering algorithms for combinations of
* among constraints. Constraints, 14(2), 273-292, 2009.
*
*/
template<class View>
class SupportAdvisor;
template<class View,class Val,bool iss>
class ViewValSupport;
/**
* \brief An array of %ViewValSupport data structures
*
*/
template<class View, class Val,bool iss>
class ViewValSupportArray {
private:
/// The actual array
ViewValSupport<View,Val,iss>* xs;
/// The size of the array
int n;
public:
/// Default constructor
ViewValSupportArray(void);
/// Copy constructor
ViewValSupportArray(const ViewValSupportArray<View,Val,iss>&);
/// Construct an ViewValSupportArray from \a x
ViewValSupportArray(Space& home, ViewArray<View>&, Val s, int q);
/// Construct an ViewValSupportArray of size \a n
ViewValSupportArray(Space& home, int n);
/// Return the current size
int size(void) const;
/// Access element \a n
ViewValSupport<View,Val,iss>& operator [](int n);
/// Access element \a n
const ViewValSupport<View,Val,iss>& operator [](int) const;
/// Cloning
void update(Space& home, bool share, ViewValSupportArray<View,Val,iss>& x);
/// Propagate
ExecStatus propagate(Space& home,ViewArray<View>& a,Val s,int q,int l,int u);
/// Advise
ExecStatus advise(Space& home,ViewArray<View>& a,Val s,int q,int j,const Delta& d);
};
/**
* \brief %Sequence propagator for array of integers
*
* Requires \code #include <gecode/int/sequence.hh> \endcode
* \ingroup FuncIntProp
*/
template<class View, class Val>
class Sequence : public Propagator {
protected:
/// Constructor for cloning \a p
Sequence(Space& home, bool shared, Sequence& p);
/// Constructor for creation
Sequence(Home home, ViewArray<View>& x, Val s, int q, int l, int u);
public:
/// Perform copying during cloning
virtual Actor* copy(Space& home, bool share);
/// Advise function
ExecStatus advise(Space& home, Advisor& _a, const Delta& d);
/// Cost function
virtual PropCost cost(const Space& home, const ModEventDelta& med) const;
/// Perform propagation
virtual ExecStatus propagate(Space& home, const ModEventDelta& med);
/// Post propagator for
static ExecStatus post(Home home, ViewArray<View>& x, Val s, int q, int l, int u);
/// Check for consistency
static ExecStatus check(Space& home, ViewArray<View>& x, Val s, int q, int l, int u);
/// Delete propagator and return its size
virtual size_t dispose(Space& home);
private:
/// Views to sequence
ViewArray<View> x;
/// Value counted in the sequence
Val s;
/// Length of each sequence
int q;
/// Lower bound
int l;
/// Upper bound
int u;
/// Array containing supports for s
ViewValSupportArray<View,Val,true> vvsamax;
/// Array containing supports for not s
ViewValSupportArray<View,Val,false> vvsamin;
/// Council for advisors
Council<SupportAdvisor<View> > ac;
};
}}}
#include <gecode/int/sequence/set-op.hpp>
#include <gecode/int/sequence/violations.hpp>
#include <gecode/int/sequence/int.hpp>
#include <gecode/int/sequence/view.hpp>
#endif
// STATISTICS: int-prop
|