offset.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
00035
00036
00037
00038
00039
00040 namespace Gecode { namespace Float {
00041
00042
00043
00044
00045
00046 forceinline
00047 OffsetView::OffsetView(void) {}
00048 forceinline
00049 OffsetView::OffsetView(const FloatView& y, FloatNum d)
00050 : DerivedView<FloatView>(y), c(d) {}
00051
00052
00053
00054
00055
00056
00057 forceinline FloatNum
00058 OffsetView::offset(void) const {
00059 return c;
00060 }
00061 forceinline void
00062 OffsetView::offset(FloatNum n) {
00063 c = n;
00064 }
00065 forceinline FloatVal
00066 OffsetView::domain(void) const {
00067 return x.domain()+c;
00068 }
00069 forceinline FloatNum
00070 OffsetView::min(void) const {
00071 return x.min()+c;
00072 }
00073 forceinline FloatNum
00074 OffsetView::max(void) const {
00075 return x.max()+c;
00076 }
00077 forceinline FloatNum
00078 OffsetView::med(void) const {
00079 return x.med()+c;
00080 }
00081 forceinline FloatVal
00082 OffsetView::val(void) const {
00083 return x.val()+c;
00084 }
00085
00086 forceinline FloatNum
00087 OffsetView::size(void) const {
00088 return x.size();
00089 }
00090
00091
00092
00093
00094
00095
00096 forceinline bool
00097 OffsetView::zero_in(void) const {
00098 return x.in(-c);
00099 }
00100 forceinline bool
00101 OffsetView::in(FloatNum n) const {
00102 return x.in(n-c);
00103 }
00104 forceinline bool
00105 OffsetView::in(const FloatVal& n) const {
00106 return x.in(n-c);
00107 }
00108
00109
00110
00111
00112
00113
00114 forceinline ModEvent
00115 OffsetView::lq(Space& home, int n) {
00116 return x.lq(home,n-c);
00117 }
00118 forceinline ModEvent
00119 OffsetView::lq(Space& home, FloatNum n) {
00120 return x.lq(home,n-c);
00121 }
00122 forceinline ModEvent
00123 OffsetView::lq(Space& home, FloatVal n) {
00124 return x.lq(home,n-c);
00125 }
00126
00127 forceinline ModEvent
00128 OffsetView::gq(Space& home, int n) {
00129 return x.gq(home,n-c);
00130 }
00131 forceinline ModEvent
00132 OffsetView::gq(Space& home, FloatNum n) {
00133 return x.gq(home,n-c);
00134 }
00135 forceinline ModEvent
00136 OffsetView::gq(Space& home, FloatVal n) {
00137 return x.gq(home,n-c);
00138 }
00139
00140 forceinline ModEvent
00141 OffsetView::eq(Space& home, int n) {
00142 return x.eq(home,n-c);
00143 }
00144 forceinline ModEvent
00145 OffsetView::eq(Space& home, FloatNum n) {
00146 return x.eq(home,n-c);
00147 }
00148 forceinline ModEvent
00149 OffsetView::eq(Space& home, const FloatVal& n) {
00150 return x.eq(home,n-c);
00151 }
00152
00153
00154
00155
00156
00157
00158 forceinline FloatNum
00159 OffsetView::min(const Delta& d) const {
00160 return x.min(d)+c;
00161 }
00162 forceinline FloatNum
00163 OffsetView::max(const Delta& d) const {
00164 return x.max(d)+c;
00165 }
00166
00167 forceinline ModEventDelta
00168 OffsetView::med(ModEvent me) {
00169 return VarImpView<FloatVar>::med(me);
00170 }
00171
00172
00173
00174
00175
00176
00177 forceinline void
00178 OffsetView::update(Space& home, bool share, OffsetView& y) {
00179 DerivedView<FloatView>::update(home,share,y);
00180 c=y.c;
00181 }
00182
00183 }}
00184
00185
00186