brancher-val-sel-commit.hpp /usr/include/gecode/kernel.hh Gecode::ValSelCommitBase Gecode::ValSelCommit Gecode /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthor: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2012 * *Lastmodified: *$Date:2013-07-0417:03:13+0200(Thu,04Jul2013)$by$Author:schulte$ *$Revision:13801$ * *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{ template<class_View,class_Val> classValSelCommitBase{ public: typedef_ViewView; typedef_ValVal; public: ValSelCommitBase(Space&home,constValBranch&vb); ValSelCommitBase(Space&home,boolshared, ValSelCommitBase<View,Val>&vsc); virtualValval(constSpace&home,Viewx,inti)=0; virtualModEventcommit(Space&home,unsignedinta, Viewx,inti,Valn)=0; virtualNGL*ngl(Space&home,unsignedinta, Viewx,Valn)const=0; virtualvoidprint(constSpace&home,unsignedinta, Viewx,inti,constVal&n, std::ostream&o)const=0; virtualValSelCommitBase<View,Val>*copy(Space&home,boolshared)=0; virtualboolnotice(void)const=0; virtualvoiddispose(Space&home)=0; staticvoid*operatornew(size_ts,Space&home); staticvoidoperatordelete(void*p,Space&home); staticvoidoperatordelete(void*p); }; template<classValSel,classValCommit> classValSelCommit :publicValSelCommitBase<typenameValSel::View,typenameValSel::Val>{ protected: typedeftypenameValSelCommitBase<typenameValSel::View, typenameValSel::Val>::ValVal; typedeftypenameValSelCommitBase<typenameValSel::View, typenameValSel::Val>::ViewView; ValSels; ValCommitc; public: ValSelCommit(Space&home,constValBranch&vb); ValSelCommit(Space&home,boolshared, ValSelCommit<ValSel,ValCommit>&vsc); virtualValval(constSpace&home,Viewx,inti); virtualModEventcommit(Space&home,unsignedinta,Viewx,inti,Valn); virtualNGL*ngl(Space&home,unsignedinta, Viewx,Valn)const; virtualvoidprint(constSpace&home,unsignedinta, Viewx,inti,constVal&n, std::ostream&o)const; virtualValSelCommit<ValSel,ValCommit>*copy(Space&home,boolshared); virtualboolnotice(void)const; virtualvoiddispose(Space&home); }; template<classView,classVal> forceinline ValSelCommitBase<View,Val>::ValSelCommitBase(Space&,constValBranch&){} template<classView,classVal> forceinline ValSelCommitBase<View,Val>:: ValSelCommitBase(Space&,bool,ValSelCommitBase<View,Val>&){} template<classView,classVal> forceinlinevoid ValSelCommitBase<View,Val>::operatordelete(void*){} template<classView,classVal> forceinlinevoid ValSelCommitBase<View,Val>::operatordelete(void*,Space&){} template<classView,classVal> forceinlinevoid* ValSelCommitBase<View,Val>::operatornew(size_ts,Space&home){ returnhome.ralloc(s); } template<classValSel,classValCommit> forceinline ValSelCommit<ValSel,ValCommit>::ValSelCommit(Space&home, constValBranch&vb) :ValSelCommitBase<View,Val>(home,vb),s(home,vb),c(home,vb){} template<classValSel,classValCommit> forceinline ValSelCommit<ValSel,ValCommit>::ValSelCommit(Space&home,boolshared, ValSelCommit<ValSel,ValCommit>&vsc) :ValSelCommitBase<View,Val>(home,shared,vsc), s(home,shared,vsc.s),c(home,shared,vsc.c){} template<classValSel,classValCommit> typenameValSelCommit<ValSel,ValCommit>::Val ValSelCommit<ValSel,ValCommit>::val(constSpace&home,Viewx,inti){ returns.val(home,x,i); } template<classValSel,classValCommit> ModEvent ValSelCommit<ValSel,ValCommit>::commit(Space&home,unsignedinta, Viewx,inti,Valn){ returnc.commit(home,a,x,i,n); } template<classValSel,classValCommit> NGL* ValSelCommit<ValSel,ValCommit>::ngl(Space&home,unsignedinta, Viewx,Valn)const{ returnc.ngl(home,a,x,n); } template<classValSel,classValCommit> void ValSelCommit<ValSel,ValCommit>::print(constSpace&home,unsignedinta, Viewx,inti,constVal&n, std::ostream&o)const{ c.print(home,a,x,i,n,o); } template<classValSel,classValCommit> ValSelCommit<ValSel,ValCommit>* ValSelCommit<ValSel,ValCommit>::copy(Space&home,boolshared){ returnnew(home)ValSelCommit<ValSel,ValCommit>(home,shared,*this); } template<classValSel,classValCommit> bool ValSelCommit<ValSel,ValCommit>::notice(void)const{ returns.notice()||c.notice(); } template<classValSel,classValCommit> void ValSelCommit<ValSel,ValCommit>::dispose(Space&home){ s.dispose(home); c.dispose(home); } } //STATISTICS:kernel-branch