man-prop.hpp /usr/include/gecode/int/unary.hh Gecode Gecode::Int Gecode::Int::Unary /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2009 * *Lastmodified: *$Date:2011-05-2516:56:41+0200(Wed,25May2011)$by$Author:schulte$ *$Revision:12022$ * *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. * */ namespaceGecode{namespaceInt{namespaceUnary{ template<classManTask> forceinline ManProp<ManTask>::ManProp(Homehome,TaskArray<ManTask>&t) :TaskProp<ManTask,Int::PC_INT_BND>(home,t){} template<classManTask> forceinline ManProp<ManTask>::ManProp(Space&home,boolshared, ManProp<ManTask>&p) :TaskProp<ManTask,Int::PC_INT_BND>(home,shared,p){} template<classManTask> forceinlineExecStatus ManProp<ManTask>::post(Homehome,TaskArray<ManTask>&t){ if(t.size()>1) (void)new(home)ManProp<ManTask>(home,t); returnES_OK; } template<classManTask> Actor* ManProp<ManTask>::copy(Space&home,boolshare){ returnnew(home)ManProp<ManTask>(home,share,*this); } template<classManTask> ExecStatus ManProp<ManTask>::propagate(Space&home,constModEventDelta&){ GECODE_ES_CHECK(overload(home,t)); GECODE_ES_CHECK(detectable(home,t)); GECODE_ES_CHECK(notfirstnotlast(home,t)); GECODE_ES_CHECK(edgefinding(home,t)); GECODE_ES_CHECK(subsumed(home,*this,t)); returnES_NOFIX; } }}} //STATISTICS:int-prop