rbs.hpp gecode/search/support.hh gecode/search/meta/rbs.hh /usr/include/gecode/search.hh Gecode Gecode::Search /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> * *Copyright: *GuidoTack,2012 * *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. * */ #include<gecode/search/support.hh> #include<gecode/search/meta/rbs.hh> namespaceGecode{ namespaceSearch{ GECODE_SEARCH_EXPORTEngine*rbs(Space*s, MetaStop*stop, Engine*e, constOptions&o); } template<template<class>classE,classT> forceinline RBS<E,T>::RBS(T*s,constSearch::Options&m_opt){ if(m_opt.cutoff==NULL) throwSearch::UninitializedCutoff("RBS::RBS"); Search::Optionse_opt(m_opt); e_opt.clone=true; Search::MetaStop*ms=newSearch::MetaStop(m_opt.stop); e_opt.stop=ms; Space*master; if(m_opt.clone){ if(s->status(ms->m_stat)==SS_FAILED){ ms->m_stat.fail++; master=NULL; }else{ master=s->clone(); } }else{ master=s; } E<T>engine(dynamic_cast<T*>(master),e_opt); EngineBase*eb=&engine; Search::Engine*ee=eb->e; eb->e=NULL; e=Search::rbs(master,ms,ee,m_opt); } template<template<class>classE,classT> forceinlineT* RBS<E,T>::next(void){ returndynamic_cast<T*>(e->next()); } template<template<class>classE,classT> forceinlineSearch::Statistics RBS<E,T>::statistics(void)const{ returne->statistics(); } template<template<class>classE,classT> forceinlinebool RBS<E,T>::stopped(void)const{ returne->stopped(); } template<template<class>classE,classT> forceinlineT* rbs(T*s,constSearch::Options&o){ RBS<E,T>r(s,o); returnr.next(); } } //STATISTICS:search-other