ranges-negative.hpp algorithm /usr/include/gecode/iter.hh Gecode::Iter::Ranges::Negative Gecode Gecode::Iter Gecode::Iter::Ranges /*-*-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. * */ #include<algorithm> namespaceGecode{namespaceIter{namespaceRanges{ template<classI,boolstrict=false> classNegative{ protected: Ii; public: Negative(void); Negative(I&i); voidinit(I&i); booloperator ()(void)const; voidoperator ++(void); intmin(void)const; intmax(void)const; unsignedintwidth(void)const; }; template<classI,boolstrict> forceinline Negative<I,strict>::Negative(void){} template<classI,boolstrict> forceinlinevoid Negative<I,strict>::init(I&i0){ i=i0; } template<classI,boolstrict> forceinline Negative<I,strict>::Negative(I&i0):i(i0){} template<classI,boolstrict> forceinlinevoid Negative<I,strict>::operator ++(void){ ++i; } template<classI,boolstrict> forceinlinebool Negative<I,strict>::operator ()(void)const{ if(strict){ returni()&&(i.min()<0); }else{ returni()&&(i.min()<=0); } } template<classI,boolstrict> forceinlineint Negative<I,strict>::min(void)const{ returni.min(); } template<classI,boolstrict> forceinlineint Negative<I,strict>::max(void)const{ if(strict){ returnstd::min(i.max(),-1); }else{ returnstd::min(i.max(),0); } } template<classI,boolstrict> forceinlineunsignedint Negative<I,strict>::width(void)const{ returnstatic_cast<unsignedint>(max()-min()+1); } }}} //STATISTICS:iter-any