ranges-cache.hpp /usr/include/gecode/iter.hh Gecode::Iter::Ranges::Cache Gecode Gecode::Iter Gecode::Iter::Ranges /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2004 * *Lastmodified: *$Date:2012-09-0717:42:21+0200(Fri,07Sep2012)$by$Author:schulte$ *$Revision:13069$ * *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{ classCache:publicRangeListIter{ public: Cache(void); Cache(constCache&m); template<classI> Cache(Region&r,I&i); template<classI> voidinit(Region&r,I&i); Cache&operator =(constCache&m); }; forceinline Cache::Cache(void){} forceinline Cache::Cache(constCache&m) :RangeListIter(m){} template<classI> void Cache::init(Region&r,I&i){ RangeListIter::init(r); RangeList*h=NULL; RangeList**p=&h; for(;i();++i){ RangeList*t=new(*rlio)RangeList; *p=t;p=&t->next; t->min=i.min(); t->max=i.max(); } *p=NULL; RangeListIter::set(h); } template<classI> forceinline Cache::Cache(Region&r,I&i){ init(r,i); } forceinlineCache& Cache::operator =(constCache&m){ returnstatic_cast<Cache&>(RangeListIter::operator =(m)); } }}} //STATISTICS:iter-any