dfs.hh gecode/search.hh gecode/search/support.hh gecode/search/worker.hh gecode/search/sequential/path.hh Gecode::Search::Sequential::DFS Gecode Gecode::Search Gecode::Search::Sequential /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2009 * *Lastmodified: *$Date:2013-07-1218:20:11+0200(Fri,12Jul2013)$by$Author:schulte$ *$Revision:13877$ * *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. * */ #ifndef__GECODE_SEARCH_SEQUENTIAL_DFS_HH__ #define__GECODE_SEARCH_SEQUENTIAL_DFS_HH__ #include<gecode/search.hh> #include<gecode/search/support.hh> #include<gecode/search/worker.hh> #include<gecode/search/sequential/path.hh> namespaceGecode{namespaceSearch{namespaceSequential{ classDFS:publicWorker{ private: Optionsopt; Pathpath; Space*cur; unsignedintd; public: DFS(Space*s,constOptions&o); Space*next(void); Statisticsstatistics(void)const; voidreset(Space*s); NoGoods&nogoods(void); ~DFS(void); }; forceinline DFS::DFS(Space*s,constOptions&o) :opt(o),path(static_cast<int>(opt.nogoods_limit)),d(0){ if((s==NULL)||(s->status(*this)==SS_FAILED)){ fail++; cur=NULL; if(!opt.clone) deletes; }else{ cur=snapshot(s,opt); } } forceinlinevoid DFS::reset(Space*s){ deletecur; path.reset(); d=0; if((s==NULL)||(s->status(*this)==SS_FAILED)){ cur=NULL; }else{ cur=s; } Worker::reset(); } forceinlineNoGoods& DFS::nogoods(void){ returnpath; } forceinlineSpace* DFS::next(void){ start(); while(true){ while(cur){ if(stop(opt)) returnNULL; node++; switch(cur->status(*this)){ caseSS_FAILED: fail++; deletecur; cur=NULL; break; caseSS_SOLVED: { //Deletesallpendingbranchers (void)cur->choice(); Space*s=cur; cur=NULL; returns; } caseSS_BRANCH: { Space*c; if((d==0)||(d>=opt.c_d)){ c=cur->clone(); d=1; }else{ c=NULL; d++; } constChoice*ch=path.push(*this,cur,c); cur->commit(*ch,0); break; } default: GECODE_NEVER; } } do{ if(!path.next()) returnNULL; cur=path.recompute(d,opt.a_d,*this); }while(cur==NULL); } GECODE_NEVER; returnNULL; } forceinlineStatistics DFS::statistics(void)const{ return*this; } forceinline DFS::~DFS(void){ deletecur; path.reset(); } }}} #endif //STATISTICS:search-sequential