values-bitset.hpp /usr/include/gecode/iter.hh Gecode::Iter::Values::BitSet Gecode Gecode::Iter Gecode::Iter::Values /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2008 * *Lastmodified: *$Date:2010-07-2817:35:33+0200(Wed,28Jul2010)$by$Author:schulte$ *$Revision:11294$ * *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{ template<classBS> classBitSet{ protected: constBS&bs; unsignedintcur; unsignedintlimit; voidmove(void); public: BitSet(constBS&bs); BitSet(constBS&bs,intn,intm); booloperator ()(void)const; voidoperator ++(void); intval(void)const; }; template<classBS> forceinline BitSet<BS>::BitSet(constBS&bs0) :bs(bs0),cur(bs.next(0)),limit(bs.size()){ } template<classBS> forceinline BitSet<BS>::BitSet(constBS&bs0,intn,intm) :bs(bs0), cur(bs.next(static_cast<unsignedint>(n))), limit(std::min(bs.size(),static_cast<unsignedint>(m)+1)){ } template<classBS> forceinlinevoid BitSet<BS>::operator ++(void){ cur=bs.next(cur+1); } template<classBS> forceinlinebool BitSet<BS>::operator ()(void)const{ returncur<limit; } template<classBS> forceinlineint BitSet<BS>::val(void)const{ returnstatic_cast<int>(cur); } }}} //STATISTICS:iter-any