linear.hh gecode/int.hh gecode/float.hh gecode/float/linear/nary.hpp Gecode::Float::Linear::Lin Gecode::Float::Linear::Eq Gecode::Float::Linear::Lq Gecode::Float::Linear::Term Gecode::Float::Linear Gecode Gecode::Float /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> *GuidoTack<tack@gecode.org> *VincentBarichard<Vincent.Barichard@univ-angers.fr> * *Copyright: *ChristianSchulte,2002 *GuidoTack,2004 *VincentBarichard,2012 * *Lastmodified: *$Date:2013-01-2419:28:06+0100(Thu,24Jan2013)$by$Author:schulte$ *$Revision:13235$ * *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. * */ #ifndef__GECODE_FLOAT_LINEAR_HH__ #define__GECODE_FLOAT_LINEAR_HH__ #include<gecode/int.hh> #include<gecode/float.hh> namespaceGecode{namespaceFloat{namespaceLinear{ template<classP,classN,PropCondpc> classLin:publicPropagator{ protected: ViewArray<P>x; ViewArray<N>y; FloatValc; Lin(Space&home,boolshare,Lin<P,N,pc>&p); Lin(Homehome,ViewArray<P>&x,ViewArray<N>&y,FloatValc); public: virtualPropCostcost(constSpace&home,constModEventDelta&med)const; virtualsize_tdispose(Space&home); }; template<classView> voidbounds_p(ModEventDeltamed,ViewArray<View>&x, FloatVal&c,FloatNum&sl,FloatNum&su); template<classView> voidbounds_n(ModEventDeltamed,ViewArray<View>&y, FloatVal&c,FloatNum&sl,FloatNum&su); template<classP,classN> classEq:publicLin<P,N,PC_FLOAT_BND>{ protected: usingLin<P,N,PC_FLOAT_BND>::x; usingLin<P,N,PC_FLOAT_BND>::y; usingLin<P,N,PC_FLOAT_BND>::c; Eq(Space&home,boolshare,Eq&p); public: Eq(Homehome,ViewArray<P>&x,ViewArray<N>&y,FloatValc); virtualActor*copy(Space&home,boolshare); virtualExecStatuspropagate(Space&home,constModEventDelta&med); staticExecStatus post(Homehome,ViewArray<P>&x,ViewArray<N>&y,FloatValc); }; template<classP,classN> classLq:publicLin<P,N,PC_FLOAT_BND>{ protected: usingLin<P,N,PC_FLOAT_BND>::x; usingLin<P,N,PC_FLOAT_BND>::y; usingLin<P,N,PC_FLOAT_BND>::c; Lq(Space&home,boolshare,Lq&p); public: Lq(Homehome,ViewArray<P>&x,ViewArray<N>&y,FloatValc); virtualActor*copy(Space&home,boolshare); virtualExecStatuspropagate(Space&home,constModEventDelta&med); staticExecStatus post(Homehome,ViewArray<P>&x,ViewArray<N>&y,FloatValc); }; }}} #include<gecode/float/linear/nary.hpp> namespaceGecode{namespaceFloat{namespaceLinear{ classTerm{ public: FloatVala; FloatViewx; }; GECODE_FLOAT_EXPORTvoid estimate(Term*t,intn,FloatValc,FloatNum&l,FloatNum&u); GECODE_FLOAT_EXPORTvoid post(Homehome,Term*t,intn,FloatRelTypefrt,FloatValc); GECODE_FLOAT_EXPORTvoid post(Homehome,Term*t,intn,FloatRelTypefrt,FloatValc,Reifyr); }}} #endif //STATISTICS:float-prop