neg-bool.hpp /usr/include/gecode/int/view.hpp Gecode::Int::ViewRanges< NegBoolView > Gecode Gecode::Int /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2008 * *Lastmodified: *$Date:2010-06-2910:39:13+0200(Tue,29Jun2010)$by$Author:schulte$ *$Revision:11118$ * *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{ /* *NegatedBooleanviews * */ /* *Constructorsandinitialization * */ forceinline NegBoolView::NegBoolView(void){} forceinline NegBoolView::NegBoolView(constBoolView&y) :DerivedView<BoolView>(y){} /* *Booleandomaintests * */ forceinlineBoolStatus NegBoolView::status(void)const{ returnx.status(); } forceinlinebool NegBoolView::zero(void)const{ returnx.one(); } forceinlinebool NegBoolView::one(void)const{ returnx.zero(); } forceinlinebool NegBoolView::none(void)const{ returnx.none(); } /* *Booleanassignmentoperations * */ forceinlineModEvent NegBoolView::zero_none(Space&home){ returnx.one_none(home); } forceinlineModEvent NegBoolView::one_none(Space&home){ returnx.zero_none(home); } forceinlineModEvent NegBoolView::zero(Space&home){ returnx.one(home); } forceinlineModEvent NegBoolView::one(Space&home){ returnx.zero(home); } /* *Valueaccess * */ forceinlineint NegBoolView::min(void)const{ returnx.max(); } forceinlineint NegBoolView::max(void)const{ returnx.min(); } forceinlineint NegBoolView::val(void)const{ return1-x.val(); } /* *Deltainformationforadvisors * */ forceinlineint NegBoolView::min(constDelta&d)const{ returnx.max(d); } forceinlineint NegBoolView::max(constDelta&d)const{ returnx.min(d); } forceinlinebool NegBoolView::any(constDelta&d)const{ returnx.any(d); } forceinlinebool NegBoolView::zero(constDelta&d){ returnBoolView::one(d); } forceinlinebool NegBoolView::one(constDelta&d){ returnBoolView::zero(d); } template<> classViewRanges<NegBoolView>:publicIter::Ranges::Singleton{ public: ViewRanges(void); ViewRanges(constNegBoolView&x); voidinit(constNegBoolView&x); }; forceinline ViewRanges<NegBoolView>::ViewRanges(void){} forceinline ViewRanges<NegBoolView>::ViewRanges(constNegBoolView&x) :Iter::Ranges::Singleton(x.min(),x.max()){} forceinlinevoid ViewRanges<NegBoolView>::init(constNegBoolView&x){ Iter::Ranges::Singleton::init(x.min(),x.max()); } }} //STATISTICS:int-var