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