bab.hpp /usr/include/gecode/search.hh Gecode Gecode::Search /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Contributingauthors: *GuidoTack<tack@gecode.org> * *Copyright: *ChristianSchulte,2004 *GuidoTack,2004 * *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*bab(Space*s,constOptions&o); } template<classT> forceinline BAB<T>::BAB(T*s,constSearch::Options&o) :EngineBase(Search::bab(s,o)){} template<classT> forceinlineT* BAB<T>::next(void){ returndynamic_cast<T*>(e->next()); } template<classT> forceinlineSearch::Statistics BAB<T>::statistics(void)const{ returne->statistics(); } template<classT> forceinlinebool BAB<T>::stopped(void)const{ returne->stopped(); } template<classT> forceinlineNoGoods& BAB<T>::nogoods(void){ returne->nogoods(); } template<classT> T* bab(T*s,constSearch::Options&o){ BAB<T>b(s,o); T*l=NULL; while(T*n=b.next()){ deletel;l=n; } returnl; } } //STATISTICS:search-other