values-inter.hpp /usr/include/gecode/iter.hh Gecode::Iter::Values::Inter 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,classJ> classInter{ protected: Ii; Jj; voidnext(void); public: Inter(void); Inter(I&i,J&j); voidinit(I&i,J&j); booloperator ()(void)const; voidoperator ++(void); intval(void)const; }; template<classI,classJ> forceinline Inter<I,J>::Inter(void){} template<classI,classJ> forceinlinevoid Inter<I,J>::next(void){ do{ while(i()&&j()&&(i.val()<j.val())) ++i; while(i()&&j()&&(j.val()<i.val())) ++j; }while(i()&&j()&&(i.val()!=j.val())); } template<classI,classJ> inlinevoid Inter<I,J>::init(I&i0,J&j0){ i=i0;j=j0;next(); } template<classI,classJ> forceinline Inter<I,J>::Inter(I&i0,J&j0):i(i0),j(j0){ next(); } template<classI,classJ> forceinlinevoid Inter<I,J>::operator ++(void){ ++i;++j;next(); } template<classI,classJ> forceinlinebool Inter<I,J>::operator ()(void)const{ returni()&&j(); } template<classI,classJ> forceinlineint Inter<I,J>::val(void)const{ assert(i.val()==j.val()); returni.val(); } }}} //STATISTICS:iter-any