Generated on Tue Apr 18 10:22:04 2017 for Gecode by doxygen 1.6.3

brancher-val-sel.hpp

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main author:
00004  *     Christian Schulte <schulte@gecode.org>
00005  *
00006  *  Copyright:
00007  *     Christian Schulte, 2012
00008  *
00009  *  Last modified:
00010  *     $Date: 2017-03-01 04:28:36 +0100 (Wed, 01 Mar 2017) $ by $Author: schulte $
00011  *     $Revision: 15541 $
00012  *
00013  *  This file is part of Gecode, the generic constraint
00014  *  development environment:
00015  *     http://www.gecode.org
00016  *
00017  *  Permission is hereby granted, free of charge, to any person obtaining
00018  *  a copy of this software and associated documentation files (the
00019  *  "Software"), to deal in the Software without restriction, including
00020  *  without limitation the rights to use, copy, modify, merge, publish,
00021  *  distribute, sublicense, and/or sell copies of the Software, and to
00022  *  permit persons to whom the Software is furnished to do so, subject to
00023  *  the following conditions:
00024  *
00025  *  The above copyright notice and this permission notice shall be
00026  *  included in all copies or substantial portions of the Software.
00027  *
00028  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00029  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00030  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00031  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00032  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00033  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00034  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00035  *
00036  */
00037 
00038 namespace Gecode {
00039 
00046 
00047   template<class _View, class _Val>
00048   class ValSel {
00049   public:
00051     typedef _View View;
00053     typedef typename View::VarType Var;
00055     typedef _Val Val;
00056   public:
00058     ValSel(Space& home, const ValBranch<Var>& vb);
00060     ValSel(Space& home, bool shared, ValSel<View,Val>& vs);
00062     bool notice(void) const;
00064     void dispose(Space& home);
00065   };
00066 
00068   template<class View>
00069   class ValSelFunction :
00070     public ValSel<View,
00071                   typename BranchTraits<typename View::VarType>::ValType> {
00072     using typename ValSel<View,
00073                           typename BranchTraits<typename View::VarType>::ValType>::Var;
00074   public:
00076     typedef typename ValSel<View,
00077                             typename BranchTraits<typename View::VarType>
00078                               ::ValType>::Val Val;
00080     typedef typename BranchTraits<Var>::Val ValFunction;
00081   protected:
00083     SharedData<ValFunction> v;
00084   public:
00086     ValSelFunction(Space& home, const ValBranch<Var>& vb);
00088     ValSelFunction(Space& home, bool shared, ValSelFunction<View>& vs);
00090     Val val(const Space& home, View x, int i);
00092     bool notice(void) const;
00094     void dispose(Space& home);
00095   };
00097 
00098 
00099   // Baseclass value selection
00100   template<class View, class Val>
00101   forceinline
00102   ValSel<View,Val>::ValSel(Space&, const ValBranch<Var>&) {}
00103   template<class View, class Val>
00104   forceinline
00105   ValSel<View,Val>::ValSel(Space&, bool, ValSel<View,Val>&) {}
00106   template<class View, class Val>
00107   forceinline bool
00108   ValSel<View,Val>::notice(void) const {
00109     return false;
00110   }
00111   template<class View, class Val>
00112   forceinline void
00113   ValSel<View,Val>::dispose(Space&) {}
00114 
00115 
00116   // User-defined value selection
00117   template<class View>
00118   forceinline
00119   ValSelFunction<View>::ValSelFunction(Space& home, const ValBranch<Var>& vb)
00120     : ValSel<View,Val>(home,vb), v(vb.val()) {
00121     if (!v())
00122       throw InvalidFunction("ValSelFunction::ValSelFunction");
00123   }
00124   template<class View>
00125   forceinline
00126   ValSelFunction<View>::ValSelFunction(Space& home, bool shared,
00127                                        ValSelFunction<View>& vs)
00128     : ValSel<View,Val>(home,shared,vs) {
00129     v.update(home,shared,vs.v);
00130   }
00131   template<class View>
00132   forceinline typename ValSelFunction<View>::Val
00133   ValSelFunction<View>::val(const Space& home, View x, int i) {
00134     typename View::VarType y(x.varimp());
00135     GECODE_VALID_FUNCTION(v());
00136     return v()(home,y,i);
00137   }
00138   template<class View>
00139   forceinline bool
00140   ValSelFunction<View>::notice(void) const {
00141     return true;
00142   }
00143   template<class View>
00144   forceinline void
00145   ValSelFunction<View>::dispose(Space&) {
00146     v.~SharedData<ValFunction>();
00147   }
00148 
00149 }
00150 
00151 // STATISTICS: kernel-branch