values-negative.hpp /usr/include/gecode/iter.hh Gecode::Iter::Values::Negative 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<classI,boolstrict=false> classNegative{ protected: Ii; public: Negative(void); Negative(I&i); voidinit(I&i); booloperator ()(void)const; voidoperator ++(void); intval(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.val()<0); }else{ returni()&&(i.val()<=0); } } template<classI,boolstrict> forceinlineint Negative<I,strict>::val(void)const{ returni.val(); } }}} //STATISTICS:iter-any