Generated on Tue Apr 18 10:21:42 2017 for Gecode by doxygen 1.6.3

asinacos.hpp

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Vincent Barichard <Vincent.Barichard@univ-angers.fr>
00005  *
00006  *  Copyright:
00007  *     Vincent Barichard, 2012
00008  *
00009  *  Last modified:
00010  *     $Date: 2012-07-27 02:28:31 +0200 (Fri, 27 Jul 2012) $ by $Author: vbarichard $
00011  *     $Revision: 12968 $
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 { namespace Float { namespace Trigonometric {
00039 
00040   /*
00041    * Bounds consistent arc sinus operator
00042    *
00043    */
00044 
00045   template<class A, class B>
00046   forceinline
00047   ASin<A,B>::ASin(Home home, A x0, B x1)
00048     : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,x0,x1) {}
00049 
00050   template<class A, class B>
00051   ExecStatus
00052   ASin<A,B>::post(Home home, A x0, B x1) {
00053     if (same(x0,x1)) {
00054       GECODE_ME_CHECK(x0.eq(home,0.0));
00055     } else {
00056       GECODE_ME_CHECK(x0.gq(home,-1.0));
00057       GECODE_ME_CHECK(x0.lq(home,1.0));
00058       (void) new (home) ASin<A,B>(home,x0,x1);
00059     }
00060     return ES_OK;
00061   }
00062 
00063 
00064   template<class A, class B>
00065   forceinline
00066   ASin<A,B>::ASin(Space& home, bool share, ASin<A,B>& p)
00067     : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,share,p) {}
00068 
00069   template<class A, class B>
00070   Actor*
00071   ASin<A,B>::copy(Space& home, bool share) {
00072     return new (home) ASin<A,B>(home,share,*this);
00073   }
00074 
00075   template<class A, class B>
00076   ExecStatus
00077   ASin<A,B>::propagate(Space& home, const ModEventDelta&) {
00078     if ((x0.max() < -1) || (x0.min() > 1)) return ES_FAILED;
00079     GECODE_ME_CHECK(x1.eq(home,asin(x0.domain())));
00080     GECODE_ME_CHECK(x0.eq(home,sin(x1.domain())));
00081     return (x0.assigned() || x1.assigned()) ? home.ES_SUBSUMED(*this) : ES_FIX;
00082   }
00083 
00084 
00085   /*
00086    * Bounds consistent arc cosinus operator
00087    *
00088    */
00089 
00090   template<class A, class B>
00091   forceinline
00092   ACos<A,B>::ACos(Home home, A x0, B x1)
00093     : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,x0,x1) {}
00094 
00095   template<class A, class B>
00096   ExecStatus
00097   ACos<A,B>::post(Home home, A x0, B x1) {
00098     if (same(x0,x1)) {
00099       GECODE_ME_CHECK(x0.gq(home,0.7390851332151));
00100       GECODE_ME_CHECK(x0.lq(home,0.7390851332152));
00101       bool mod;
00102       do {
00103         mod = false;
00104         GECODE_ME_CHECK_MODIFIED(mod,x0.eq(home,acos(x0.val())));
00105       } while (mod);
00106     } else {
00107       GECODE_ME_CHECK(x0.gq(home,-1.0));
00108       GECODE_ME_CHECK(x0.lq(home,1.0));
00109       (void) new (home) ACos<A,B>(home,x0,x1);
00110     }
00111     return ES_OK;
00112   }
00113 
00114 
00115   template<class A, class B>
00116   forceinline
00117   ACos<A,B>::ACos(Space& home, bool share, ACos<A,B>& p)
00118     : MixBinaryPropagator<A,PC_FLOAT_BND,B,PC_FLOAT_BND>(home,share,p) {}
00119 
00120   template<class A, class B>
00121   Actor*
00122   ACos<A,B>::copy(Space& home, bool share) {
00123     return new (home) ACos<A,B>(home,share,*this);
00124   }
00125 
00126   template<class A, class B>
00127   ExecStatus
00128   ACos<A,B>::propagate(Space& home, const ModEventDelta&) {
00129     if ((x0.max() < -1) || (x0.min() > 1)) return ES_FAILED;
00130     GECODE_ME_CHECK(x1.eq(home,acos(x0.domain())));
00131     GECODE_ME_CHECK(x0.eq(home,cos(x1.domain())));
00132     return (x0.assigned() || x1.assigned()) ? home.ES_SUBSUMED(*this) : ES_FIX;
00133   }
00134 
00135 }}}
00136 
00137 // STATISTICS: float-prop
00138