values-singleton.hpp /usr/include/gecode/iter.hh Gecode::Iter::Values::Singleton Gecode Gecode::Iter Gecode::Iter::Values /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2007 * *Lastmodified: *$Date:2008-12-0516:43:57+0100(Fri,05Dec2008)$by$Author:schulte$ *$Revision:7989$ * *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{namespaceIter{namespaceValues{ classSingleton{ protected: booldone; intv; public: Singleton(void); Singleton(intv); voidinit(intv); booloperator ()(void)const; voidoperator ++(void); intval(void)const; }; forceinline Singleton::Singleton(void){} forceinline Singleton::Singleton(intv0) :done(false),v(v0){} forceinlinevoid Singleton::init(intv0){ done=false;v=v0; } forceinlinevoid Singleton::operator ++(void){ done=true; } forceinlinebool Singleton::operator ()(void)const{ return!done; } forceinlineint Singleton::val(void)const{ returnv; } }}} //STATISTICS:iter-any