prop.hpp /usr/include/gecode/int/task.hh Gecode Gecode::Int /*-*-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{ template<classTask,PropCondpc> forceinline TaskProp<Task,pc>::TaskProp(Homehome,TaskArray<Task>&t0) :Propagator(home),t(t0){ t.subscribe(home,*this,pc); } template<classTask,PropCondpc> forceinline TaskProp<Task,pc>::TaskProp(Space&home,boolshared,TaskProp<Task,pc>&p) :Propagator(home,shared,p){ t.update(home,shared,p.t); } template<classTask,PropCondpc> PropCost TaskProp<Task,pc>::cost(constSpace&,constModEventDelta&)const{ returnPropCost::linear(PropCost::HI,t.size()); } template<classTask,PropCondpc> forceinlinesize_t TaskProp<Task,pc>::dispose(Space&home){ t.cancel(home,*this,pc); (void)Propagator::dispose(home); returnsizeof(*this); } }} //STATISTICS:int-prop