ranges-singleton-append.hpp /usr/include/gecode/iter.hh Gecode::Iter::Ranges::SingletonAppend Gecode Gecode::Iter Gecode::Iter::Ranges /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> *GuidoTack<tack@gecode.org> * *Copyright: *ChristianSchulte,2004 *GuidoTack,2006 * *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{namespaceRanges{ template<classJ> classSingletonAppend:publicMinMax{ protected: Jj; public: SingletonAppend(void); SingletonAppend(inti0,inti1,J&j); voidinit(inti0,inti1,J&j); voidoperator ++(void); }; /* *BinarySingletonAppend * */ template<classJ> inlinevoid SingletonAppend<J>::operator ++(void){ if(j()){ mi=j.min();ma=j.max(); ++j; }else{ finish(); } } template<classJ> forceinline SingletonAppend<J>::SingletonAppend(void){} template<classJ> forceinline SingletonAppend<J>::SingletonAppend(inti0,inti1,J&j0) :j(j0){ mi=i0;ma=i1; } template<classJ> forceinlinevoid SingletonAppend<J>::init(inti0,inti1,J&j0){ mi=i0;ma=i1;j=j0; } }}} //STATISTICS:iter-any