macros.hpp /usr/include/gecode/kernel.hh GECODE_ME_CHECK me do { \ if (::Gecode::me_failed(me)) \ return ::Gecode::ES_FAILED; \ } while (0) Check whether modification event me is failed, and forward failure. To be used inside the propagate member function of a propagator or the commit member function of a brancher. GECODE_ME_CHECK_MODIFIED modified me do { \ ModEvent __me__ ## __LINE__ = (me); \ if (::Gecode::me_failed(__me__ ## __LINE__)) \ return ::Gecode::ES_FAILED; \ modified |= ::Gecode::me_modified(__me__ ## __LINE__); \ } while (0) Check whether me is failed or modified, and forward failure. To be used inside the propagate member function of a propagator or the commit member function of a brancher. GECODE_ME_FAIL me do { \ if (::Gecode::me_failed(me)) { \ (home).fail(); \ return; \ }} while (0) Check whether modification event me is failed, and fail space home. To be used inside post functions. GECODE_ES_CHECK es do { \ ::Gecode::ExecStatus __es__ ## __LINE__ = (es); \ if (__es__ ## __LINE__ < ::Gecode::ES_OK) \ return __es__ ## __LINE__; \ } while (0) Check whether execution status es is failed or subsumed, and forward failure or subsumption. GECODE_ES_FAIL es do { \ ::Gecode::ExecStatus __es__ ## __LINE__ = (es); \ assert(__es__ ## __LINE__ != ::Gecode::__ES_SUBSUMED); \ if (__es__ ## __LINE__ < ::Gecode::ES_OK) { \ (home).fail(); return; \ } \ } while (0) Check whether execution status es is failed, and fail space home. GECODE_REWRITE prop post do { \ Propagator& __p__ ## __LINE__ = (prop); \ size_t __s__ ## __LINE__ = __p__ ## __LINE__.dispose(home); \ ExecStatus __es__ ## __LINE__ = (post); \ if (__es__ ## __LINE__ != ::Gecode::ES_OK) \ return ::Gecode::ES_FAILED; \ return home.ES_SUBSUMED_DISPOSED(__p__ ## __LINE__,__s__ ## __LINE__); \ } while (0) Rewrite propagator by executing post function. /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2004 * *Lastmodified: *$Date:2010-03-0317:40:32+0100(Wed,03Mar2010)$by$Author:schulte$ *$Revision:10365$ * *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. * */ #defineGECODE_ME_CHECK(me)do{\ if(::Gecode::me_failed(me))\ return::Gecode::ES_FAILED;\ }while(0) #defineGECODE_ME_CHECK_MODIFIED(modified,me)do{\ ModEvent__me__##__LINE__=(me);\ if(::Gecode::me_failed(__me__##__LINE__))\ return::Gecode::ES_FAILED;\ modified|=::Gecode::me_modified(__me__##__LINE__);\ }while(0) #defineGECODE_ME_FAIL(me)do{\ if(::Gecode::me_failed(me)){\ (home).fail();\ return;\ }}while(0) #defineGECODE_ES_CHECK(es)do{\ ::Gecode::ExecStatus__es__##__LINE__=(es);\ if(__es__##__LINE__<::Gecode::ES_OK)\ return__es__##__LINE__;\ }while(0) #defineGECODE_ES_FAIL(es)do{\ ::Gecode::ExecStatus__es__##__LINE__=(es);\ assert(__es__##__LINE__!=::Gecode::__ES_SUBSUMED);\ if(__es__##__LINE__<::Gecode::ES_OK){\ (home).fail();return;\ }\ }while(0) #defineGECODE_REWRITE(prop,post)do{\ Propagator&__p__##__LINE__=(prop);\ size_t__s__##__LINE__=__p__##__LINE__.dispose(home);\ ExecStatus__es__##__LINE__=(post);\ if(__es__##__LINE__!=::Gecode::ES_OK)\ return::Gecode::ES_FAILED;\ returnhome.ES_SUBSUMED_DISPOSED(__p__##__LINE__,__s__##__LINE__);\ }while(0) //STATISTICS:kernel-other