int-rel.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 namespace Gecode {
00035
00036
00037
00038
00039
00040 forceinline
00041 LinIntRel::LinIntRel(void) {}
00042
00043 forceinline
00044 LinIntRel::LinIntRel(const LinIntExpr& l, IntRelType irt0, const LinIntExpr& r)
00045 : e(l-r), irt(irt0) {}
00046
00047 forceinline
00048 LinIntRel::LinIntRel(const LinIntExpr& l, IntRelType irt0, int r)
00049 : e(l-r), irt(irt0) {}
00050
00051 forceinline
00052 LinIntRel::LinIntRel(int l, IntRelType irt0, const LinIntExpr& r)
00053 : e(l-r), irt(irt0) {}
00054
00055 forceinline IntRelType
00056 LinIntRel::neg(IntRelType irt) {
00057 switch (irt) {
00058 case IRT_EQ: return IRT_NQ;
00059 case IRT_NQ: return IRT_EQ;
00060 case IRT_LQ: return IRT_GR;
00061 case IRT_LE: return IRT_GQ;
00062 case IRT_GQ: return IRT_LE;
00063 case IRT_GR: return IRT_LQ;
00064 default: GECODE_NEVER;
00065 }
00066 return IRT_LQ;
00067 }
00068
00069 forceinline void
00070 LinIntRel::post(Home home, bool t, IntPropLevel ipl) const {
00071 e.post(home,t ? irt : neg(irt),ipl);
00072 }
00073
00074 forceinline void
00075 LinIntRel::post(Home home, const BoolVar& b, bool t, IntPropLevel ipl) const {
00076 e.post(home,t ? irt : neg(irt),b,ipl);
00077 }
00078
00079 }
00080
00081