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 #include "gecode/int/sorted.hh"
00039
00040 namespace Gecode {
00041
00042 void
00043 sorted(Space* home, const IntVarArgs& x, const IntVarArgs& y,
00044 IntConLevel, PropKind) {
00045 using namespace Int;
00046 if (x.size() != y.size())
00047 throw ArgumentSizeMismatch("Int::Sorted");
00048 if (x.same(y))
00049 throw ArgumentSame("Int::Sorted");
00050
00051 if (home->failed()) return;
00052
00053
00054 ViewArray<ViewTuple<IntView,1> > x0(home, x.size());
00055 for (int i = x.size(); i--; )
00056 x0[i][0] = x[i];
00057 ViewArray<IntView> y0(home, y);
00058
00059 GECODE_ES_FAIL(home,
00060 (Sorted::
00061 Sorted<IntView, ViewTuple<IntView,1>, false>::
00062 post(home, x0, y0)));
00063 }
00064
00065 void
00066 sorted(Space* home, const IntVarArgs& x, const IntVarArgs& y,
00067 const IntVarArgs& z, IntConLevel, PropKind) {
00068 using namespace Int;
00069 if ((x.size() != y.size()) || (x.size() != z.size()))
00070 throw ArgumentSizeMismatch("Int::Sorted");
00071 if (x.same(y) || x.same(z) || y.same(z))
00072 throw ArgumentSame("Int::Sorted");
00073
00074 if (home->failed()) return;
00075
00076 ViewArray<ViewTuple<IntView, 2> > xz0(home, x.size());
00077
00078
00079 ViewArray<IntView> y0(home, y);
00080 for (int i = x.size(); i--; ) {
00081 xz0[i][0]=x[i]; xz0[i][1] = z[i];
00082 }
00083
00084 GECODE_ES_FAIL(home,
00085 (Sorted::
00086 Sorted<IntView, ViewTuple<IntView,2>, true>::
00087 post(home, xz0, y0)));
00088 }
00089 }
00090
00091