Generated on Mon Aug 25 11:35:51 2008 for Gecode by doxygen 1.5.6

Gecode::Int::Distinct::Bnd< View > Class Template Reference
[Integer propagators]

#include <distinct.hh>

Inherits Gecode::Propagator.

List of all members.


Detailed Description

template<class View>
class Gecode::Int::Distinct::Bnd< View >

Bounds consistent distinct propagator.

The propagator uses staging: first it uses naive value-based propagation and only then uses bounds consistent propagation. Due to using naive value-based propagation, the propagator might actually achieve stronger consistency than just bounds consistency.

The algorithm is taken from: A. Lopez-Ortiz, C.-G. Quimper, J. Tromp, and P. van Beek. A fast and simple algorithm for bounds consistency of the alldifferent constraint. IJCAI-2003.

This implementation uses the code that is provided by Peter Van Beek: http://ai.uwaterloo.ca/~vanbeek/software/software.html The code (originally by John Tromp) here has only been slightly modified to fit Gecode (taking idempotent/non-idempotent propagation into account) and uses a more efficient layout of datastructures (keeping the number of different arrays small).

Requires

Definition at line 136 of file distinct.hh.


Public Member Functions

virtual ExecStatus propagate (Space *home, ModEventDelta med)
 Perform propagation.
virtual PropCost cost (ModEventDelta med) const
 Cost function.
virtual Actorcopy (Space *home, bool share)
 Copy propagator during cloning.
virtual size_t dispose (Space *home)
 Destructor.
virtual Reflection::ActorSpec spec (const Space *home, Reflection::VarMap &m) const
 Specification for this propagator.

Static Public Member Functions

static ExecStatus post (Space *home, ViewArray< View > &x)
 Post propagator for view array x.
static void post (Space *home, Reflection::VarMap &vars, const Reflection::ActorSpec &spec)
 Post propagator for specification.
static Support::Symbol ati (void)
 Name of this propagator.

Protected Member Functions

 Bnd (Space *home, ViewArray< View > &x)
 Constructor for posting.
 Bnd (Space *home, bool share, Bnd< View > &p)
 Constructor for cloning p.

Protected Attributes

ViewArray< View > x
 Views on which to perform bounds-propagation.
ViewArray< View > y
 Views on which to perform value-propagation (subset of x).

Constructor & Destructor Documentation

template<class View>
Gecode::Int::Distinct::Bnd< View >::Bnd ( Space home,
ViewArray< View > &  x 
) [inline, protected]

Constructor for posting.

Definition at line 42 of file bnd.icc.

template<class View>
Gecode::Int::Distinct::Bnd< View >::Bnd ( Space home,
bool  share,
Bnd< View > &  p 
) [inline, protected]

Constructor for cloning p.

Definition at line 62 of file bnd.icc.


Member Function Documentation

template<class View>
ExecStatus Gecode::Int::Distinct::Bnd< View >::post ( Space home,
ViewArray< View > &  x 
) [inline, static]

Post propagator for view array x.

Definition at line 358 of file bnd.icc.

template<class View>
void Gecode::Int::Distinct::Bnd< View >::post ( Space home,
Reflection::VarMap vars,
const Reflection::ActorSpec spec 
) [inline, static]

Post propagator for specification.

Definition at line 368 of file bnd.icc.

template<class View>
ExecStatus Gecode::Int::Distinct::Bnd< View >::propagate ( Space home,
ModEventDelta  med 
) [inline, virtual]

Perform propagation.

Implements Gecode::Propagator.

Definition at line 305 of file bnd.icc.

template<class View>
PropCost Gecode::Int::Distinct::Bnd< View >::cost ( ModEventDelta  med  )  const [inline, virtual]

Cost function.

If in stage for naive value propagation, the cost is dynamic PC_LINEAR_LO. Otherwise it is dynamic PC_LINEAR_HI.

Implements Gecode::Propagator.

Definition at line 76 of file bnd.icc.

template<class View>
Actor * Gecode::Int::Distinct::Bnd< View >::copy ( Space home,
bool  share 
) [inline, virtual]

Copy propagator during cloning.

Implements Gecode::Actor.

Definition at line 70 of file bnd.icc.

template<class View>
size_t Gecode::Int::Distinct::Bnd< View >::dispose ( Space home  )  [inline, virtual]

Destructor.

Reimplemented from Gecode::Actor.

Definition at line 54 of file bnd.icc.

template<class View>
Reflection::ActorSpec Gecode::Int::Distinct::Bnd< View >::spec ( const Space home,
Reflection::VarMap m 
) const [inline, virtual]

Specification for this propagator.

Reimplemented from Gecode::Actor.

Definition at line 90 of file bnd.icc.

template<class View>
Support::Symbol Gecode::Int::Distinct::Bnd< View >::ati ( void   )  [inline, static]

Name of this propagator.

Definition at line 84 of file bnd.icc.


Member Data Documentation

template<class View>
ViewArray<View> Gecode::Int::Distinct::Bnd< View >::x [protected]

Views on which to perform bounds-propagation.

Definition at line 139 of file distinct.hh.

template<class View>
ViewArray<View> Gecode::Int::Distinct::Bnd< View >::y [protected]

Views on which to perform value-propagation (subset of x).

Definition at line 141 of file distinct.hh.


The documentation for this class was generated from the following files: