array.hpp /usr/include/gecode/float.hh Gecode /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> *VincentBarichard<Vincent.Barichard@univ-angers.fr> * *Copyright: *ChristianSchulte,2005 *VincentBarichard,2012 * *Lastmodified: *$Date:2013-01-2917:43:05+0100(Tue,29Jan2013)$by$Author:schulte$ *$Revision:13241$ * *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 FloatValArgs::FloatValArgs(void):PrimArgArray<FloatVal>(0){} forceinline FloatValArgs::FloatValArgs(intn):PrimArgArray<FloatVal>(n){} forceinline FloatValArgs::FloatValArgs(constSharedArray<FloatVal>&x) :PrimArgArray<FloatVal>(x.size()){ for(inti=x.size();i--;) a[i]=x[i]; } forceinline FloatValArgs::FloatValArgs(conststd::vector<FloatVal>&x) :PrimArgArray<FloatVal>(x){} template<classInputIterator> forceinline FloatValArgs::FloatValArgs(InputIteratorfirst,InputIteratorlast) :PrimArgArray<FloatVal>(first,last){} forceinline FloatValArgs::FloatValArgs(intn,constFloatVal*e) :PrimArgArray<FloatVal>(n,e){} forceinline FloatValArgs::FloatValArgs(constPrimArgArray<FloatVal>&a):PrimArgArray<FloatVal>(a){} forceinlineFloatValArgs FloatValArgs::create(intn,FloatValstart,intinc){ FloatValArgsr(n); for(inti=0;i<n;i++,start+=inc) r[i]=start; returnr; } forceinline FloatVarArray::FloatVarArray(void){} forceinline FloatVarArray::FloatVarArray(Space&home,intn) :VarArray<FloatVar>(home,n){} forceinline FloatVarArray::FloatVarArray(constFloatVarArray&a) :VarArray<FloatVar>(a){} forceinline FloatVarArray::FloatVarArray(Space&home,constFloatVarArgs&a) :VarArray<FloatVar>(home,a){} } //STATISTICS:float-other