dfs.hh gecode/search/parallel/engine.hh Gecode::Search::Parallel::DFS Gecode::Search::Parallel::DFS::Worker Gecode Gecode::Search Gecode::Search::Parallel /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2009 * *Lastmodified: *$Date:2013-07-1112:30:18+0200(Thu,11Jul2013)$by$Author:schulte$ *$Revision:13840$ * *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_PARALLEL_DFS_HH__ #define__GECODE_SEARCH_PARALLEL_DFS_HH__ #include<gecode/search/parallel/engine.hh> namespaceGecode{namespaceSearch{namespaceParallel{ classDFS:publicEngine{ protected: classWorker:publicEngine::Worker{ public: Worker(Space*s,DFS&e); DFS&engine(void)const; virtualvoidrun(void); voidfind(void); voidreset(Space*s,intngdl); }; Worker**_worker; public: Worker*worker(unsignedinti)const; voidsolution(Space*s); DFS(Space*s,constOptions&o); virtualStatisticsstatistics(void)const; virtualvoidreset(Space*s); virtualNoGoods&nogoods(void); virtual~DFS(void); }; /* *Basicaccessroutines */ forceinlineDFS& DFS::Worker::engine(void)const{ returnstatic_cast<DFS&>(_engine); } forceinlineDFS::Worker* DFS::worker(unsignedinti)const{ return_worker[i]; } /* *Engine:initialization */ forceinline DFS::Worker::Worker(Space*s,DFS&e) :Engine::Worker(s,e){} forceinline DFS::DFS(Space*s,constOptions&o) :Engine(o){ //Createworkers _worker=static_cast<Worker**> (heap.ralloc(workers()*sizeof(Worker*))); //Thefirstworkergetstheentiresearchtree _worker[0]=newWorker(s,*this); //Allotherworkersstartwithnowork for(unsignedinti=1;i<workers();i++) _worker[i]=newWorker(NULL,*this); //Blockallworkers block(); //Createandstartthreads for(unsignedinti=0;i<workers();i++) Support::Thread::run(_worker[i]); } /* *Reset */ forceinlinevoid DFS::Worker::reset(Space*s,intngdl){ deletecur; path.reset((s!=NULL)?ngdl:0); d=0; idle=false; if((s==NULL)||(s->status(*this)==SS_FAILED)){ deletes; cur=NULL; }else{ cur=s; } Search::Worker::reset(); } /* *Engine:searchcontrol */ forceinlinevoid DFS::solution(Space*s){ m_search.acquire(); boolbs=signal(); solutions.push(s); if(bs) e_search.signal(); m_search.release(); } /* *Worker:findingandstealingworking */ forceinlinevoid DFS::Worker::find(void){ //Trytofindnewwork(evenifthereisnone) for(unsignedinti=0;i<engine().workers();i++){ unsignedlongintr_d=0ul; if(Space*s=engine().worker(i)->steal(r_d)){ //Resetthisguy m.acquire(); idle=false; //Notidlebutalsodoesnothavetherootofthetree path.ngdl(0); d=0; cur=s; Search::Worker::reset(r_d); m.release(); return; } } } }}} #endif //STATISTICS:search-parallel