array.hpp /usr/include/gecode/int.hh Gecode /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2005 * *Lastmodified: *$Date:2012-03-3001:56:07+0200(Fri,30Mar2012)$by$Author:tack$ *$Revision:12663$ * *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{ /* *Implementation * */ forceinline IntArgs::IntArgs(void):PrimArgArray<int>(0){} forceinline IntArgs::IntArgs(intn):PrimArgArray<int>(n){} forceinline IntArgs::IntArgs(constSharedArray<int>&x) :PrimArgArray<int>(x.size()){ for(inti=x.size();i--;) a[i]=x[i]; } forceinline IntArgs::IntArgs(conststd::vector<int>&x) :PrimArgArray<int>(x){} template<classInputIterator> forceinline IntArgs::IntArgs(InputIteratorfirst,InputIteratorlast) :PrimArgArray<int>(first,last){} forceinline IntArgs::IntArgs(intn,constint*e):PrimArgArray<int>(n,e){} forceinline IntArgs::IntArgs(constPrimArgArray<int>&a):PrimArgArray<int>(a){} forceinlineIntArgs IntArgs::create(intn,intstart,intinc){ IntArgsr(n); for(inti=0;i<n;i++,start+=inc) r[i]=start; returnr; } forceinline IntVarArray::IntVarArray(void){} forceinline IntVarArray::IntVarArray(Space&home,intn) :VarArray<IntVar>(home,n){} forceinline IntVarArray::IntVarArray(constIntVarArray&a) :VarArray<IntVar>(a){} forceinline IntVarArray::IntVarArray(Space&home,constIntVarArgs&a) :VarArray<IntVar>(home,a){} forceinline BoolVarArray::BoolVarArray(void){} forceinline BoolVarArray::BoolVarArray(Space&home,intn) :VarArray<BoolVar>(home,n){} forceinline BoolVarArray::BoolVarArray(constBoolVarArray&a) :VarArray<BoolVar>(a){} forceinline BoolVarArray::BoolVarArray(Space&home,constBoolVarArgs&a) :VarArray<BoolVar>(home,a){} } //STATISTICS:int-other