dfs.hpp /usr/include/gecode/search.hh Gecode Gecode::Search /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2003 * *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. * */ namespaceGecode{ namespaceSearch{ GECODE_SEARCH_EXPORTEngine*dfs(Space*s,constOptions&o); } template<classT> forceinline DFS<T>::DFS(T*s,constSearch::Options&o) :EngineBase(Search::dfs(s,o)){} template<classT> forceinlineT* DFS<T>::next(void){ returndynamic_cast<T*>(e->next()); } template<classT> forceinlineSearch::Statistics DFS<T>::statistics(void)const{ returne->statistics(); } template<classT> forceinlinebool DFS<T>::stopped(void)const{ returne->stopped(); } template<classT> forceinlineNoGoods& DFS<T>::nogoods(void){ returne->nogoods(); } template<classT> forceinlineT* dfs(T*s,constSearch::Options&o){ DFS<T>d(s,o); returnd.next(); } } //STATISTICS:search-other