set-rel.hpp /usr/include/gecode/minimodel.hh /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2005 * *Lastmodified: *$Date:2010-07-1420:32:01+0200(Wed,14Jul2010)$by$Author:schulte$ *$Revision:11195$ * *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. * */ #ifdefGECODE_HAS_SET_VARS namespaceGecode{ /* *Operationsforsetrelations * */ forceinline SetCmpRel::SetCmpRel(constSetExpr&l0,SetRelTypesrt0,constSetExpr&r0) :l(l0),r(r0),srt(srt0){} forceinline SetRel::SetRel(void){} forceinline SetRel::SetRel(constSetExpr&e0,SetRelTypesrt,constSetExpr&e1) :_e0(e0),_srt(srt),_e1(e1){} forceinline SetRel::SetRel(constSetCmpRel&r) :_e0(r.l),_srt(r.srt),_e1(r.r){} forceinlinevoid SetRel::post(Homehome,boolt)const{ if(t) _e0.post(home,_srt,_e1); elseif(_srt==SRT_EQ) _e0.post(home,SRT_NQ,_e1); elseif(_srt==SRT_NQ) _e0.post(home,SRT_EQ,_e1); else{ BoolVarb(home,0,0); _e0.post(home,b,true,_srt,_e1); } } forceinlinevoid SetRel::post(Homehome,BoolVarb,boolt)const{ _e0.post(home,b,t,_srt,_e1); } } #endif //STATISTICS:minimodel-any