values-map.hpp /usr/include/gecode/iter.hh Gecode::Iter::Values::Map 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,classM,boolstrict=false> classMap{ protected: Ii; Mm; public: Map(void); Map(I&i); Map(I&i,constM&m); voidinit(I&i); voidinit(I&i,constM&m); booloperator ()(void)const; voidoperator ++(void); intval(void)const; }; template<classI,classM,boolstrict> forceinline Map<I,M,strict>::Map(void){} template<classI,classM,boolstrict> forceinline Map<I,M,strict>::Map(I&i0):i(i0){} template<classI,classM,boolstrict> forceinline Map<I,M,strict>::Map(I&i0,constM&m0):i(i0),m(m0){} template<classI,classM,boolstrict> forceinlinevoid Map<I,M,strict>::init(I&i0){ i=i0; } template<classI,classM,boolstrict> forceinlinevoid Map<I,M,strict>::init(I&i0,constM&m0){ i=i0;m=m0; } template<classI,classM,boolstrict> forceinlinevoid Map<I,M,strict>::operator ++(void){ if(strict){ ++i; }else{ intn=m.val(i.val()); do{ ++i; }while(i()&&(n==m.val(i.val()))); } } template<classI,classM,boolstrict> forceinlinebool Map<I,M,strict>::operator ()(void)const{ returni(); } template<classI,classM,boolstrict> forceinlineint Map<I,M,strict>::val(void)const{ returnm.val(i.val()); } }}} //STATISTICS:iter-any