pair.hpp gecode/int/rel.hh /usr/include/gecode/int/element.hh Gecode Gecode::Int Gecode::Int::Element /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2009 * *Lastmodified: *$Date:2009-10-2914:58:00+0100(Thu,29Oct2009)$by$Author:schulte$ *$Revision:10000$ * *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{namespaceElement{ forceinline Pair::Pair(Homehome,IntViewx0,IntViewx1,IntViewx2,intw0) :TernaryPropagator<IntView,PC_INT_DOM>(home,x0,x1,x2),w(w0){} inlineExecStatus Pair::post(Homehome,IntViewx0,IntViewx1,IntViewx2, intw,inth){ GECODE_ME_CHECK(x0.gq(home,0));GECODE_ME_CHECK(x0.le(home,w)); GECODE_ME_CHECK(x1.gq(home,0));GECODE_ME_CHECK(x1.le(home,h)); GECODE_ME_CHECK(x2.gq(home,0));GECODE_ME_CHECK(x2.le(home,w*h)); if(x0.assigned()&&x1.assigned()){ GECODE_ME_CHECK(x2.eq(home,x0.val()+w*x1.val())); }elseif(x1.assigned()){ OffsetViewx0x1w(x0,x1.val()*w); returnRel::EqDom<OffsetView,IntView>::post(home,x0x1w,x2); }elseif(x2.assigned()){ GECODE_ME_CHECK(x0.eq(home,x2.val()%w)); GECODE_ME_CHECK(x1.eq(home,static_cast<int>(x2.val()/w))); }else{ assert(!shared(x0,x2)&&!shared(x1,x2)); (void)new(home)Pair(home,x0,x1,x2,w); } returnES_OK; } forceinline Pair::Pair(Space&home,boolshare,Pair&p) :TernaryPropagator<IntView,PC_INT_DOM>(home,share,p),w(p.w){} }}} //STATISTICS:int-prop