File: eoSurviveAndDie.h

package info (click to toggle)
gamera 1%3A3.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 15,912 kB
  • sloc: xml: 122,324; cpp: 50,730; python: 35,044; ansic: 258; makefile: 114; sh: 101
file content (197 lines) | stat: -rw-r--r-- 6,600 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/** -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-

   -----------------------------------------------------------------------------
   eoSurviveAndDie.h
   (c) Maarten Keijzer, Marc Schoenauer, GeNeura Team, 2000

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    Contact: todos@geneura.ugr.es, http://geneura.ugr.es
             Marc.Schoenauer@polytechnique.fr
             mkeijzer@dhi.dk
 */
//-----------------------------------------------------------------------------

#ifndef _eoSurviveAndDie_h
#define _eoSurviveAndDie_h


//-----------------------------------------------------------------------------
#include <eoPop.h>
#include <eoFunctor.h>
#include <eoMerge.h>
#include <eoReduce.h>
#include <utils/eoHowMany.h>
//-----------------------------------------------------------------------------

/**
eoSurviveAndDie: takes a population (first argument),
kills the ones that are to die,
puts the ones that are to survive into the second argument
removes them from the first pop argument

@class eoSurviveAndDie
@class eoDeterministicSurviveAndDie,
@class eoDeterministicSaDReplacement
*/

/** @addtogroup Replacors
 * @{
 */

/** eoSurviveAndDie
A pure abstract class, to store the howmany's
*/
template <class EOT>
class eoSurviveAndDie : public eoBF<eoPop<EOT> &, eoPop<EOT> &, void>
{
public:
    eoSurviveAndDie(double _survive, double _die, bool _interpret_as_rate = true):
        howmanySurvive(_survive, _interpret_as_rate),
        howmanyDie(_die, _interpret_as_rate)
    {}

protected:
    eoHowMany howmanySurvive;
    eoHowMany howmanyDie;

};

/** An instance (theonly one as of today, Dec. 20, 2000) of an
    eoSurviveAndDie, that does everything deterministically

    Used in eoDeterministicSaDReplacement.
*/
template <class EOT>
class eoDeterministicSurviveAndDie : public eoSurviveAndDie<EOT>
{
public:

    using eoSurviveAndDie< EOT >::howmanyDie;
    using eoSurviveAndDie< EOT >::howmanySurvive;

    /** constructor */
    eoDeterministicSurviveAndDie(double _survive, double _die, bool _interpret_as_rate = true)
        : eoSurviveAndDie< EOT >(_survive, _die, _interpret_as_rate)
    {}


    void operator()(eoPop<EOT> & _pop, eoPop<EOT> & _luckyGuys)
    {
        unsigned pSize = _pop.size();
        unsigned nbSurvive = howmanySurvive(pSize);
        // first, save the best into _luckyGuys
        if (nbSurvive)
            {
                _pop.nth_element(nbSurvive);
                // copy best
                _luckyGuys.resize(nbSurvive);
                std::copy(_pop.begin(), _pop.begin()+nbSurvive, _luckyGuys.begin());
                // erase them from pop
                _pop.erase(_pop.begin(), _pop.begin()+nbSurvive);
            }
        unsigned nbRemaining = _pop.size();

        // carefull, we can have a rate of 1 if we want to kill all remaining
        unsigned nbDie = std::min(howmanyDie(pSize), pSize-nbSurvive);
        if (nbDie > nbRemaining)
            throw std::logic_error("eoDeterministicSurviveAndDie: Too many to kill!\n");

        if (!nbDie)
          {
            return;
          }
        // else
        // kill the worse nbDie
        _pop.nth_element(nbRemaining-nbDie);
        _pop.resize(nbRemaining-nbDie);
    }

};

/**
eoDeterministicSaDReplacement: replacement strategy that is just, in sequence
  saves best and kill worse from parents
+ saves best and kill worse from offspring
+ merge remaining (neither save nor killed) parents and offspring
+ reduce that merged population
= returns reduced pop + best parents + best offspring

An obvious use is as strong elitist strategy,
   i.e. preserving best parents, and reducing
         (either offspring or parents+offspring)
*/
template <class EOT>
class eoDeterministicSaDReplacement : public eoReplacement<EOT>
{
public:
  /**  Constructor with reduce */
  eoDeterministicSaDReplacement(eoReduce<EOT>& _reduceGlobal,
                 double _surviveParents, double _dieParents=0,
                 double _surviveOffspring=0, double _dieOffspring=0,
                 bool _interpret_as_rate = true ) :
        reduceGlobal(_reduceGlobal),
        sAdParents(_surviveParents, _dieParents, _interpret_as_rate),
        sAdOffspring(_surviveOffspring, _dieOffspring, _interpret_as_rate)
    {}

  /**  Constructor with default truncate used as reduce */
    eoDeterministicSaDReplacement(
                 double _surviveParents, double _dieParents=0,
                 double _surviveOffspring=0, double _dieOffspring=0,
                 bool _interpret_as_rate = true ) :
        reduceGlobal(truncate),
        sAdParents(_surviveParents, _dieParents, _interpret_as_rate),
        sAdOffspring(_surviveOffspring, _dieOffspring, _interpret_as_rate)
    {}

    void operator()(eoPop<EOT>& _parents, eoPop<EOT>& _offspring)
    {
        unsigned pSize = _parents.size(); // target number of individuals

        eoPop<EOT> luckyParents;       // to hold the absolute survivors
        sAdParents(_parents, luckyParents);

        eoPop<EOT> luckyOffspring;       // to hold the absolute survivors
        sAdOffspring(_offspring, luckyOffspring);

        unsigned survivorSize = luckyOffspring.size() + luckyParents.size();
        if (survivorSize > pSize)
            throw std::logic_error("eoGeneralReplacement: More survivors than parents!\n");

        plus(_parents, _offspring); // all that remain in _offspring

        reduceGlobal(_offspring, pSize - survivorSize);
        plus(luckyParents, _offspring);
        plus(luckyOffspring, _offspring);

        _parents.swap(_offspring);

    }

private :
  eoReduce<EOT>& reduceGlobal;
  eoDeterministicSurviveAndDie<EOT> sAdParents;
  eoDeterministicSurviveAndDie<EOT> sAdOffspring;
  // plus helper (could be replaced by operator+= ???)
  eoPlus<EOT> plus;
  // the default reduce: deterministic truncation
  eoTruncate<EOT> truncate;
};


/** @} */

#endif