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