values-union.hpp /usr/include/gecode/iter.hh Gecode::Iter::Values::Union 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:2011-02-0114:31:23+0100(Tue,01Feb2011)$by$Author:schulte$ *$Revision:11595$ * *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> classUnion{ protected: Ii; Jj; intv; booldone; public: Union(void); Union(I&i,J&j); voidinit(I&i,J&j); booloperator ()(void)const; voidoperator ++(void); intval(void)const; }; template<classI,classJ> forceinline Union<I,J>::Union(void):v(0){} template<classI,classJ> forceinlinevoid Union<I,J>::operator ++(void){ if(i()){ if(j()){ if(i.val()==j.val()){ v=i.val();++i;++j; }elseif(i.val()<j.val()){ v=i.val();++i; }else{ v=j.val();++j; } }else{ v=i.val();++i; } }elseif(j()){ v=j.val();++j; }else{ done=true; } } template<classI,classJ> inlinevoid Union<I,J>::init(I&i0,J&j0){ i=i0;j=j0;v=0;done=false; operator++(); } template<classI,classJ> forceinline Union<I,J>::Union(I&i0,J&j0):i(i0),j(j0),v(0),done(false){ operator ++(); } template<classI,classJ> forceinlinebool Union<I,J>::operator ()(void)const{ return!done; } template<classI,classJ> forceinlineint Union<I,J>::val(void)const{ returnv; } }}} //STATISTICS:iter-any