rel.hpp gecode/int/rel.hh /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,2003 * *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> namespaceGecode{namespaceInt{namespaceCount{ /* *Countingdomainconsistentequality * */ template<classVY> forceinlineViewTypeDesc vtd(VYy){ (void)y; returnVTD_VARVIEW; } template<> forceinlineViewTypeDesc vtd(constIntSet&y){ (void)y; returnVTD_INTSET; } template<> forceinlineViewTypeDesc vtd(ConstIntViewy){ (void)y; returnVTD_CONSTVIEW; } template<> forceinlineViewTypeDesc vtd(ZeroIntViewy){ (void)y; returnVTD_CONSTVIEW; } forceinlinevoid subscribe(Space&home,Propagator&p,IntSet&y){ (void)home;(void)p;(void)y; } template<classVY> forceinlinevoid subscribe(Space&home,Propagator&p,VYy){ y.subscribe(home,p,PC_INT_DOM); } forceinlinevoid cancel(Space&home,Propagator&p,IntSet&y){ (void)home;(void)p; y.~IntSet(); } template<classVY> forceinlinevoid cancel(Space&home,Propagator&p,VYy){ y.cancel(home,p,PC_INT_DOM); } template<classVX> forceinlineRelTest holds(VXx,ConstIntViewy){ returnrtest_eq_dom(x,y.val()); } template<classVX> forceinlineRelTest holds(VXx,ZeroIntView){ returnrtest_eq_dom(x,0); } template<classVX> forceinlineRelTest holds(VXx,constIntSet&y){ if((x.max()<y.min())||(y.max()<x.min())) returnRT_FALSE; ViewRanges<VX>rx(x); IntSetRangesry(y); switch(Iter::Ranges::compare(rx,ry)){ caseIter::Ranges::CS_SUBSET: returnRT_TRUE; caseIter::Ranges::CS_DISJOINT: returnRT_FALSE; caseIter::Ranges::CS_NONE: returnRT_MAYBE; default: GECODE_NEVER; } GECODE_NEVER; returnRT_MAYBE; } template<classVX> forceinlineRelTest holds(VXx,VXy){ returnrtest_eq_dom(x,y); } template<classVX> forceinlineExecStatus post_true(Homehome,VXx,ConstIntViewy){ GECODE_ME_CHECK(x.eq(home,y.val())); returnES_OK; } template<classVX> forceinlineExecStatus post_true(Homehome,VXx,ZeroIntView){ GECODE_ME_CHECK(x.eq(home,0)); returnES_OK; } template<classVX> forceinlineExecStatus post_true(Homehome,VXx,constIntSet&y){ IntSetRangesry(y); GECODE_ME_CHECK(x.inter_r(home,ry,false)); returnES_OK; } template<classVX> forceinlineExecStatus post_true(Homehome,ViewArray<VX>&x,ConstIntViewy){ for(inti=x.size();i--;) GECODE_ME_CHECK(x[i].eq(home,y.val())); returnES_OK; } template<classVX> forceinlineExecStatus post_true(Homehome,ViewArray<VX>&x,ZeroIntView){ for(inti=x.size();i--;) GECODE_ME_CHECK(x[i].eq(home,0)); returnES_OK; } template<classVX> forceinlineExecStatus post_true(Homehome,ViewArray<VX>&x,constIntSet&y){ for(inti=x.size();i--;){ IntSetRangesry(y); GECODE_ME_CHECK(x[i].inter_r(home,ry,false)); } returnES_OK; } template<classVX> forceinlineExecStatus post_false(Homehome,VXx,ConstIntViewy){ GECODE_ME_CHECK(x.nq(home,y.val())); returnES_OK; } template<classVX> forceinlineExecStatus post_false(Homehome,VXx,ZeroIntView){ GECODE_ME_CHECK(x.nq(home,0)); returnES_OK; } template<classVX> forceinlineExecStatus post_false(Homehome,VXx,constIntSet&y){ IntSetRangesry(y); GECODE_ME_CHECK(x.minus_r(home,ry,false)); returnES_OK; } template<classVX> forceinlineExecStatus post_false(Homehome,ViewArray<VX>&x,ConstIntViewy){ for(inti=x.size();i--;) GECODE_ME_CHECK(x[i].nq(home,y.val())); returnES_OK; } template<classVX> forceinlineExecStatus post_false(Homehome,ViewArray<VX>&x,ZeroIntView){ for(inti=x.size();i--;) GECODE_ME_CHECK(x[i].nq(home,0)); returnES_OK; } template<classVX> forceinlineExecStatus post_false(Homehome,ViewArray<VX>&x,constIntSet&y){ for(inti=x.size();i--;){ IntSetRangesry(y); GECODE_ME_CHECK(x[i].minus_r(home,ry,false)); } returnES_OK; } template<classVX> forceinlineExecStatus post_true(Homehome,ViewArray<VX>&x,VXy){ ViewArray<VX>z(home,x.size()+1); z[x.size()]=y; for(inti=x.size();i--;) z[i]=x[i]; returnRel::NaryEqDom<VX>::post(home,z); } template<classVX> forceinlineExecStatus post_true(Homehome,VXx,VXy){ returnRel::EqDom<VX,VX>::post(home,x,y); } template<classVX> forceinlineExecStatus post_false(Homehome,ViewArray<VX>&x,VXy){ for(inti=x.size();i--;) GECODE_ES_CHECK(Rel::Nq<VX>::post(home,x[i],y)); returnES_OK; } template<classVX> forceinlineExecStatus post_false(Homehome,VXx,VXy){ returnRel::Nq<VX>::post(home,x,y); } template<classVX> forceinlineExecStatus prune(Space&home,ViewArray<VX>&x,ConstIntView){ (void)home; (void)x; returnES_OK; } template<classVX> forceinlineExecStatus prune(Space&home,ViewArray<VX>&x,ZeroIntView){ (void)home; (void)x; returnES_OK; } template<classVX> forceinlineExecStatus prune(Space&home,ViewArray<VX>&x,constIntSet&y){ (void)home; (void)x; (void)y; returnES_OK; } template<classVX> forceinlineExecStatus prune(Space&home,ViewArray<VX>&x,VXy){ if(x.size()==0) returnES_OK; Regionr(home); ViewRanges<VX>*rx=r.alloc<ViewRanges<VX>>(x.size()); for(inti=x.size();i--;) rx[i]=ViewRanges<VX>(x[i]); Iter::Ranges::NaryUnionu(r,rx,x.size()); GECODE_ME_CHECK(y.inter_r(home,u,false)); returnES_OK; } }}} //STATISTICS:int-prop