zero.hpp /usr/include/gecode/int/view.hpp Gecode::Int::ViewRanges< ZeroIntView > Gecode Gecode::Int /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2003 * *Lastmodified: *$Date:2013-02-1416:29:11+0100(Thu,14Feb2013)$by$Author:schulte$ *$Revision:13292$ * *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{namespaceInt{ /* *Constructorsandinitialization * */ forceinline ZeroIntView::ZeroIntView(void){} /* *Valueaccess * */ forceinlineint ZeroIntView::min(void)const{ return0; } forceinlineint ZeroIntView::max(void)const{ return0; } forceinlineint ZeroIntView::med(void)const{ return0; } forceinlineint ZeroIntView::val(void)const{ return0; } forceinlineunsignedint ZeroIntView::size(void)const{ return1; } forceinlineunsignedint ZeroIntView::width(void)const{ return1; } forceinlineunsignedint ZeroIntView::regret_min(void)const{ return0; } forceinlineunsignedint ZeroIntView::regret_max(void)const{ return0; } /* *Domaintests * */ forceinlinebool ZeroIntView::range(void)const{ returntrue; } forceinlinebool ZeroIntView::in(intn)const{ returnn==0; } forceinlinebool ZeroIntView::in(longlongintn)const{ returnn==0; } /* *Domainupdatebyvalue * */ forceinlineModEvent ZeroIntView::lq(Space&,intn){ return(0<=n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::lq(Space&,longlongintn){ return(0<=n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::le(Space&,intn){ return(0<n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::le(Space&,longlongintn){ return(0<n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::gq(Space&,intn){ return(0>=n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::gq(Space&,longlongintn){ return(0>=n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::gr(Space&,intn){ return(0>n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::gr(Space&,longlongintn){ return(0>n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::nq(Space&,intn){ return(0!=n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::nq(Space&,longlongintn){ return(0!=n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::eq(Space&,intn){ return(0==n)?ME_INT_NONE:ME_INT_FAILED; } forceinlineModEvent ZeroIntView::eq(Space&,longlongintn){ return(0==n)?ME_INT_NONE:ME_INT_FAILED; } /* *Iterator-baseddomainupdate * */ template<classI> forceinlineModEvent ZeroIntView::narrow_r(Space&,I&i,bool){ returni()?ME_INT_NONE:ME_INT_FAILED; } template<classI> forceinlineModEvent ZeroIntView::inter_r(Space&,I&i,bool){ while(i()&&(i.max()<0)) ++i; return(i()&&(i.min()<=0))?ME_INT_NONE:ME_INT_FAILED; } template<classI> forceinlineModEvent ZeroIntView::minus_r(Space&,I&i,bool){ while(i()&&(i.max()<0)) ++i; return(i()&&(i.min()<=0))?ME_INT_FAILED:ME_INT_NONE; } template<classI> forceinlineModEvent ZeroIntView::narrow_v(Space&,I&i,bool){ returni()?ME_INT_NONE:ME_INT_FAILED; } template<classI> forceinlineModEvent ZeroIntView::inter_v(Space&,I&i,bool){ while(i()&&(i.val()<0)) ++i; return(i()&&(i.val()==0))?ME_INT_NONE:ME_INT_FAILED; } template<classI> forceinlineModEvent ZeroIntView::minus_v(Space&,I&i,bool){ while(i()&&(i.val()<0)) ++i; return(i()&&(i.val()==0))?ME_INT_FAILED:ME_INT_NONE; } /* *Deltainformationforadvisors * */ forceinlineint ZeroIntView::min(constDelta&)const{ return1; } forceinlineint ZeroIntView::max(constDelta&)const{ return0; } forceinlinebool ZeroIntView::any(constDelta&)const{ returntrue; } template<> classViewRanges<ZeroIntView>{ private: booldone; public: ViewRanges(void); ViewRanges(constZeroIntView&x); voidinit(constZeroIntView&x); booloperator ()(void)const; voidoperator ++(void); intmin(void)const; intmax(void)const; unsignedintwidth(void)const; }; forceinline ViewRanges<ZeroIntView>::ViewRanges(void){} forceinline ViewRanges<ZeroIntView>::ViewRanges(constZeroIntView&) :done(false){} forceinlinebool ViewRanges<ZeroIntView>::operator ()(void)const{ return!done; } forceinlinevoid ViewRanges<ZeroIntView>::operator ++(void){ done=true; } forceinlineint ViewRanges<ZeroIntView>::min(void)const{ return0; } forceinlineint ViewRanges<ZeroIntView>::max(void)const{ return0; } forceinlineunsignedint ViewRanges<ZeroIntView>::width(void)const{ return1; } /* *Viewcomparison * */ forceinlinebool same(constZeroIntView&,constZeroIntView&){ returntrue; } }} //STATISTICS:int-var