dom-ctrl.hpp climits /usr/include/gecode/int/distinct.hh Gecode Gecode::Int Gecode::Int::Distinct /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2003 * *Lastmodified: *$Date:2011-09-0716:15:16+0200(Wed,07Sep2011)$by$Author:schulte$ *$Revision:12394$ * *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. * */ #include<climits> namespaceGecode{namespaceInt{namespaceDistinct{ /* *Thepropagationcontroller * */ template<classView> forceinline DomCtrl<View>::DomCtrl(void){} template<classView> forceinlinebool DomCtrl<View>::available(void){ returng.initialized(); } template<classView> ExecStatus DomCtrl<View>::init(Space&home,ViewArray<View>&x){ returng.init(home,x); } template<classView> ExecStatus DomCtrl<View>::sync(Space&home){ g.purge(); returng.sync(home)?ES_OK:ES_FAILED; } template<classView> ExecStatus DomCtrl<View>::propagate(Space&home,bool&assigned){ if(!g.mark(home)) returnES_OK; returng.prune(home,assigned); } }}} //STATISTICS:int-prop