Generated on Thu Apr 11 13:59:19 2019 for Gecode by doxygen 1.6.3

rel-op.cpp

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Guido Tack <tack@gecode.org>
00005  *
00006  *  Contributing authors:
00007  *     Gabor Szokoli <szokoli@gecode.org>
00008  *
00009  *  Copyright:
00010  *     Guido Tack, 2004, 2005
00011  *
00012  *  This file is part of Gecode, the generic constraint
00013  *  development environment:
00014  *     http://www.gecode.org
00015  *
00016  *  Permission is hereby granted, free of charge, to any person obtaining
00017  *  a copy of this software and associated documentation files (the
00018  *  "Software"), to deal in the Software without restriction, including
00019  *  without limitation the rights to use, copy, modify, merge, publish,
00020  *  distribute, sublicense, and/or sell copies of the Software, and to
00021  *  permit persons to whom the Software is furnished to do so, subject to
00022  *  the following conditions:
00023  *
00024  *  The above copyright notice and this permission notice shall be
00025  *  included in all copies or substantial portions of the Software.
00026  *
00027  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00028  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00029  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00030  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00031  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00032  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00033  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00034  *
00035  */
00036 
00037 #include <gecode/set/rel-op.hh>
00038 
00039 namespace Gecode {
00040   using namespace Gecode::Set;
00041   using namespace Gecode::Set::Rel;
00042   using namespace Gecode::Set::RelOp;
00043 
00044   void
00045   rel(Home home, SetOpType op, const SetVarArgs& x, SetVar y) {
00046     GECODE_POST;
00047     ViewArray<SetView> xa(home,x);
00048     switch (op) {
00049     case SOT_UNION:
00050       GECODE_ES_FAIL((RelOp::UnionN<SetView,SetView>::post(home, xa, y)));
00051       break;
00052     case SOT_DUNION:
00053       GECODE_ES_FAIL(
00054                      (RelOp::PartitionN<SetView,SetView>::post(home, xa, y)));
00055       break;
00056     case SOT_INTER:
00057       {
00058         GECODE_ES_FAIL(
00059                        (RelOp::IntersectionN<SetView,SetView>
00060                         ::post(home, xa, y)));
00061       }
00062       break;
00063     case SOT_MINUS:
00064       throw IllegalOperation("Set::rel");
00065       break;
00066     default:
00067       throw UnknownOperation("Set::rel");
00068     }
00069   }
00070 
00071   void
00072   rel(Home home, SetOpType op, const SetVarArgs& x, const IntSet& z, SetVar y) {
00073     GECODE_POST;
00074     Set::Limits::check(z, "Set::rel");
00075     ViewArray<SetView> xa(home,x);
00076     switch (op) {
00077     case SOT_UNION:
00078       GECODE_ES_FAIL((RelOp::UnionN<SetView,SetView>::post(home, xa, z, y)));
00079       break;
00080     case SOT_DUNION:
00081       GECODE_ES_FAIL(
00082                      (RelOp::PartitionN<SetView,SetView>::post(home, xa, z, y)));
00083       break;
00084     case SOT_INTER:
00085       {
00086         GECODE_ES_FAIL(
00087                        (RelOp::IntersectionN<SetView,SetView>
00088                         ::post(home, xa, z, y)));
00089       }
00090       break;
00091     case SOT_MINUS:
00092       throw IllegalOperation("Set::rel");
00093       break;
00094     default:
00095       throw UnknownOperation("Set::rel");
00096     }
00097   }
00098 
00099 }
00100 
00101 // STATISTICS: set-post