float-rel.hpp /usr/include/gecode/minimodel.hh /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *VincentBarichard<Vincent.Barichard@univ-angers.fr> * *Copyright: *VincentBarichard,2012 * *Lastmodified: *$Date:2013-01-2213:48:12+0100(Tue,22Jan2013)$by$Author:schulte$ *$Revision:13227$ * *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_FLOAT_VARS namespaceGecode{ /* *Operationsforlinearfloatrelations * */ forceinline LinFloatRel::LinFloatRel(void){} forceinline LinFloatRel::LinFloatRel(constLinFloatExpr&l,FloatRelTypefrt0,constLinFloatExpr&r) :e(l-r),frt(frt0){} forceinline LinFloatRel::LinFloatRel(constLinFloatExpr&l,FloatRelTypefrt0,FloatValr) :e(l-r),frt(frt0){} forceinline LinFloatRel::LinFloatRel(FloatVall,FloatRelTypefrt0,constLinFloatExpr&r) :e(l-r),frt(frt0){} forceinlineFloatRelType LinFloatRel::neg(FloatRelTypefrt){ switch(frt){ caseFRT_EQ:returnFRT_NQ; caseFRT_NQ:returnFRT_EQ; caseFRT_LQ:returnFRT_GR; caseFRT_LE:returnFRT_GQ; caseFRT_GQ:returnFRT_LE; caseFRT_GR:returnFRT_LQ; default:GECODE_NEVER; } returnFRT_LQ; } forceinlinevoid LinFloatRel::post(Homehome,boolt)const{ e.post(home,t?frt:neg(frt)); } forceinlinevoid LinFloatRel::post(Homehome,constBoolVar&b,boolt)const{ e.post(home,t?frt:neg(frt),b); } } #endif //STATISTICS:minimodel-any