values-array.hpp /usr/include/gecode/iter.hh Gecode::Iter::Values::Array Gecode Gecode::Iter Gecode::Iter::Values /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2007 * *Lastmodified: *$Date:2009-01-2615:15:18+0100(Mon,26Jan2009)$by$Author:schulte$ *$Revision:8109$ * *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{ classArray{ protected: int*v; intc; intn; public: Array(void); Array(int*v,intn); voidinit(int*v,intn); booloperator ()(void)const; voidoperator ++(void); voidreset(void); intval(void)const; }; forceinline Array::Array(void){} forceinline Array::Array(int*v0,intn0) :v(v0),c(0),n(n0){} forceinlinevoid Array::init(int*v0,intn0){ v=v0;c=0;n=n0; } forceinlinevoid Array::operator ++(void){ c++; } forceinlinebool Array::operator ()(void)const{ returnc<n; } forceinlinevoid Array::reset(void){ c=0; } forceinlineint Array::val(void)const{ returnv[c]; } }}} //STATISTICS:iter-any