Generated on Thu Mar 22 10:39:40 2012 for Gecode by doxygen 1.6.3

bool-base.hpp

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Christian Schulte <schulte@gecode.org>
00005  *
00006  *  Copyright:
00007  *     Christian Schulte, 2011
00008  *
00009  *  Last modified:
00010  *     $Date: 2011-08-11 11:59:30 +0200 (Thu, 11 Aug 2011) $ by $Author: schulte $
00011  *     $Revision: 12270 $
00012  *
00013  *  This file is part of Gecode, the generic constraint
00014  *  development environment:
00015  *     http://www.gecode.org
00016  *
00017  *  Permission is hereby granted, free of charge, to any person obtaining
00018  *  a copy of this software and associated documentation files (the
00019  *  "Software"), to deal in the Software without restriction, including
00020  *  without limitation the rights to use, copy, modify, merge, publish,
00021  *  distribute, sublicense, and/or sell copies of the Software, and to
00022  *  permit persons to whom the Software is furnished to do so, subject to
00023  *  the following conditions:
00024  *
00025  *  The above copyright notice and this permission notice shall be
00026  *  included in all copies or substantial portions of the Software.
00027  *
00028  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00029  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00030  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00031  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00032  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00033  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00034  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00035  *
00036  */
00037 
00038 namespace Gecode { namespace Int { namespace NValues {
00039 
00040   template<class VY>
00041   forceinline
00042   BoolBase<VY>::BoolBase(Home home, 
00043                          int status0, ViewArray<BoolView>& x, VY y0)
00044     : Propagator(home), status(status0), c(home), y(y0) {
00045     y.subscribe(home,*this,PC_INT_BND);
00046     for (int i=x.size(); i--; ) {
00047       assert(!x[i].assigned());
00048       (void) new (home) ViewAdvisor<BoolView>(home, *this, c, x[i]);
00049     }
00050   }
00051 
00052   template<class VY>
00053   forceinline
00054   BoolBase<VY>::BoolBase(Space& home, bool share, BoolBase<VY>& p)
00055     : Propagator(home,share,p), status(p.status) {
00056     c.update(home,share,p.c);
00057     y.update(home,share,p.y);
00058   }
00059 
00060   template<class VY>
00061   PropCost
00062   BoolBase<VY>::cost(const Space&, const ModEventDelta&) const {
00063     return PropCost::unary(PropCost::LO);
00064   }
00065 
00066   template<class VY>
00067   ExecStatus
00068   BoolBase<VY>::advise(Space& home, Advisor& _a, const Delta&) {
00069     ViewAdvisor<BoolView>& a(static_cast<ViewAdvisor<BoolView>&>(_a));
00070     ExecStatus es;
00071     if (status == (VS_ZERO | VS_ONE)) {
00072       // Everything is already decided
00073       es = ES_FIX;
00074     } else {
00075       if (a.view().zero())
00076         status |= VS_ZERO;
00077       else
00078         status |= VS_ONE;
00079       es = ES_NOFIX;
00080     }
00081     a.dispose(home,c);
00082     if (c.empty())
00083       es = ES_NOFIX;
00084     return es;
00085   }
00086 
00087   template<class VY>
00088   forceinline size_t
00089   BoolBase<VY>::dispose(Space& home) {
00090     c.dispose(home);
00091     y.cancel(home,*this,PC_INT_BND);
00092     (void) Propagator::dispose(home);
00093     return sizeof(*this);
00094   }
00095 
00096 }}}
00097 
00098 // STATISTICS: int-prop