int-base.hpp /usr/include/gecode/int/count.hh Gecode Gecode::Int Gecode::Int::Count /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2006 * *Lastmodified: *$Date:2011-08-2914:59:24+0200(Mon,29Aug2011)$by$Author:schulte$ *$Revision:12359$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ namespaceGecode{namespaceInt{namespaceCount{ template<classVX,classVY> forceinline IntBase<VX,VY>::IntBase(Homehome, ViewArray<VX>&x0,intn_s0,VYy0,intc0) :Propagator(home),x(x0),n_s(n_s0),y(y0),c(c0){ if(vtd(y)==VTD_INTSET) home.notice(*this,AP_DISPOSE); for(inti=n_s;i--;) x[i].subscribe(home,*this,PC_INT_DOM); subscribe(home,*this,y); } template<classVX,classVY> forceinlinesize_t IntBase<VX,VY>::dispose(Space&home){ if(vtd(y)==VTD_INTSET) home.ignore(*this,AP_DISPOSE); for(inti=n_s;i--;) x[i].cancel(home,*this,PC_INT_DOM); cancel(home,*this,y); (void)Propagator::dispose(home); returnsizeof(*this); } template<classVX,classVY> forceinline IntBase<VX,VY>::IntBase(Space&home,boolshare,IntBase<VX,VY>&p) :Propagator(home,share,p),n_s(p.n_s),c(p.c){ x.update(home,share,p.x); y.update(home,share,p.y); } template<classVX,classVY> PropCost IntBase<VX,VY>::cost(constSpace&,constModEventDelta&)const{ returnPropCost::linear(PropCost::LO,x.size()); } }}} //STATISTICS:int-prop