int-eq.hpp gecode/int/rel.hh gecode/int/distinct.hh /usr/include/gecode/int/nvalues.hh Gecode Gecode::Int Gecode::Int::NValues /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2011 * *Lastmodified: *$Date:2012-09-0717:31:22+0200(Fri,07Sep2012)$by$Author:schulte$ *$Revision:13068$ * *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. * */ #include<gecode/int/rel.hh> #include<gecode/int/distinct.hh> namespaceGecode{namespaceInt{namespaceNValues{ template<classVY> forceinline EqInt<VY>::EqInt(Homehome,ValSet&vs,ViewArray<IntView>&x,VYy) :IntBase<VY>(home,vs,x,y){ home.notice(*this,AP_WEAKLY); } template<classVY> inlineExecStatus EqInt<VY>::post(Homehome,ViewArray<IntView>&x,VYy){ if(x.size()==0){ GECODE_ME_CHECK(y.eq(home,0)); returnES_OK; } x.unique(home); if(x.size()==1){ GECODE_ME_CHECK(y.eq(home,1)); returnES_OK; } GECODE_ME_CHECK(y.gq(home,1)); GECODE_ME_CHECK(y.lq(home,x.size())); if(y.max()==1){ assert(y.assigned()); returnRel::NaryEqDom<IntView>::post(home,x); } if(y.min()==x.size()){ assert(y.assigned()); returnDistinct::Dom<IntView>::post(home,x); } //Eliminateassignedviewsandstorethemintothevalueset ValSetvs; intn=x.size(); for(inti=n;i--;) if(x[i].assigned()){ vs.add(home,x[i].val()); x[i]=x[--n]; } GECODE_ME_CHECK(y.gq(home,vs.size())); GECODE_ME_CHECK(y.lq(home,n+vs.size())); if(n==0){ assert(y.val()==vs.size()); returnES_OK; } x.size(n); (void)new(home)EqInt<VY>(home,vs,x,y); returnES_OK; } template<classVY> forceinline EqInt<VY>::EqInt(Space&home,boolshare,EqInt<VY>&p) :IntBase<VY>(home,share,p){} template<classVY> Propagator* EqInt<VY>::copy(Space&home,boolshare){ returnnew(home)EqInt<VY>(home,share,*this); } template<classVY> forceinlinesize_t EqInt<VY>::dispose(Space&home){ home.ignore(*this,AP_WEAKLY); (void)IntBase<VY>::dispose(home); returnsizeof(*this); } template<classVY> ExecStatus EqInt<VY>::propagate(Space&home,constModEventDelta&med){ //Addassignedviewstovalueset if(IntView::me(med)==ME_INT_VAL) add(home); GECODE_ME_CHECK(y.gq(home,vs.size())); GECODE_ME_CHECK(y.lq(home,x.size()+vs.size())); if(x.size()==0) returnhome.ES_SUBSUMED(*this); //Allvaluesmustbeinthevalueset if(y.max()==vs.size()) returnall_in_valset(home); //Computepositionsofdisjointviewsandeliminatesubsumedviews Regionr(home); int*dis;intn_dis; disjoint(home,r,dis,n_dis); //Thenumbermighthavechangedduetoeliminationofsubsumedviews GECODE_ME_CHECK(y.lq(home,x.size()+vs.size())); if(x.size()==0){ assert(y.val()==vs.size()); returnhome.ES_SUBSUMED(*this); } GECODE_ES_CHECK(prune_upper(home,g)); //Nolowerboundpruningpossible if(n_dis==0) returnES_NOFIX; //Onlyifthepropagatorisatfixpointhere,continuewith //propagatingthelowerbound if(IntView::me(Propagator::modeventdelta())!=ME_INT_NONE) returnES_NOFIX; //Dolowerbound-basedpruning GECODE_ES_CHECK(prune_lower(home,dis,n_dis)); returnES_NOFIX; } }}} //STATISTICS:int-prop