• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List

land.hh

00001 // Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE)
00002 //
00003 // This file is part of Olena.
00004 //
00005 // Olena is free software: you can redistribute it and/or modify it under
00006 // the terms of the GNU General Public License as published by the Free
00007 // Software Foundation, version 2 of the License.
00008 //
00009 // Olena is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012 // General Public License for more details.
00013 //
00014 // You should have received a copy of the GNU General Public License
00015 // along with Olena.  If not, see <http://www.gnu.org/licenses/>.
00016 //
00017 // As a special exception, you may use this file as part of a free
00018 // software project without restriction.  Specifically, if other files
00019 // instantiate templates or use macros or inline functions from this
00020 // file, or you compile this file and link it with other files to produce
00021 // an executable, this file does not by itself cause the resulting
00022 // executable to be covered by the GNU General Public License.  This
00023 // exception does not however invalidate any other reasons why the
00024 // executable file might be covered by the GNU General Public License.
00025 
00026 #ifndef MLN_ACCU_LOGIC_LAND_HH
00027 # define MLN_ACCU_LOGIC_LAND_HH
00028 
00034 
00035 # include <mln/core/concept/meta_accumulator.hh>
00036 # include <mln/accu/internal/base.hh>
00037 
00038 
00039 namespace mln
00040 {
00041 
00042   // Forward declaration.
00043   namespace accu {
00044     namespace logic {
00045       struct land;
00046     }
00047   }
00048 
00049 
00050   // Traits.
00051 
00052   namespace trait
00053   {
00054 
00055     template <>
00056     struct accumulator_< accu::logic::land >
00057     {
00058       typedef accumulator::has_untake::yes   has_untake;
00059       typedef accumulator::has_set_value::no has_set_value;
00060       typedef accumulator::has_stop::no      has_stop;
00061       typedef accumulator::when_pix::use_v   when_pix;
00062     };
00063 
00064   } // end of namespace mln::trait
00065 
00066 
00067   namespace accu
00068   {
00069 
00070     namespace meta
00071     {
00072       namespace logic
00073       {
00074 
00076         struct land : public Meta_Accumulator< land >
00077         {
00078           template <typename T>
00079           struct with
00080           {
00081             typedef accu::logic::land ret;
00082           };
00083         };
00084 
00085       } // end of namespace mln::accu::meta::logic
00086     } // end of namespace mln::accu::meta
00087 
00088 
00089     namespace logic
00090     {
00091 
00095       //
00096       struct land : public mln::accu::internal::base< bool, land >
00097       {
00098         typedef bool argument;
00099 
00100         land();
00101 
00104         void init();
00105         void take_as_init_(const argument& t);
00106 
00107         void take(const argument& t);
00108         void take(const land& other);
00109 
00110         void untake(const argument& t);
00111         void untake(const land& other);
00113 
00115         bool to_result() const;
00116 
00119         bool is_valid() const;
00120 
00121       protected:
00122         unsigned nfalse_;
00123       };
00124 
00125 
00126 # ifndef MLN_INCLUDE_ONLY
00127 
00128       inline
00129       land::land()
00130       {
00131         init();
00132       }
00133 
00134       inline
00135       void
00136       land::init()
00137       {
00138         nfalse_ = 0;
00139       }
00140 
00141       inline
00142       void land::take_as_init_(const argument& t)
00143       {
00144         nfalse_ = t ? 0 : 1;
00145       }
00146 
00147       inline
00148       void land::take(const argument& t)
00149       {
00150         if (t == false)
00151           ++nfalse_;
00152       }
00153 
00154       inline
00155       void
00156       land::take(const land& other)
00157       {
00158         nfalse_ += other.nfalse_;
00159       }
00160 
00161       inline
00162       void land::untake(const argument& t)
00163       {
00164         if (t == false)
00165           --nfalse_;
00166       }
00167 
00168       inline
00169       void
00170       land::untake(const land& other)
00171       {
00172         mln_precondition(other.nfalse_ <= nfalse_);
00173         nfalse_ -= other.nfalse_;
00174       }
00175 
00176       inline
00177       bool
00178       land::to_result() const
00179       {
00180         return nfalse_ == 0;
00181       }
00182 
00183       inline
00184       bool
00185       land::is_valid() const
00186       {
00187         return true;
00188       }
00189 
00190 # endif // ! MLN_INCLUDE_ONLY
00191 
00192     } // end of namespace mln::accu::logic
00193   } // end of namespace mln::accu
00194 } // end of namespace mln
00195 
00196 #endif // ! MLN_ACCU_LOGIC_LAND_HH

Generated on Tue Oct 4 2011 15:24:01 for Milena (Olena) by  doxygen 1.7.1