Paradiseo-eo sources added
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@40 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
bc1f453978
commit
c3aec878e5
3609 changed files with 342772 additions and 0 deletions
116
trunk/paradiseo-eo/doc/html/eo_virus_8h-source.html
Normal file
116
trunk/paradiseo-eo/doc/html/eo_virus_8h-source.html
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
||||
<title>EO: eoVirus.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3.9.1 -->
|
||||
<div class="qindex"> <form class="search" action="search.php" method="get">
|
||||
<a class="qindex" href="main.html">Main Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="namespacemembers.html">Namespace Members</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="pages.html">Related Pages</a> | <span class="search"><u>S</u>earch for <input class="search" type="text" name="query" value="" size="20" accesskey="s"/></span></form></div>
|
||||
<div class="nav">
|
||||
<a class="el" href="dir_000007.html">contrib</a> / <a class="el" href="dir_000015.html">MGE</a></div>
|
||||
<h1>eoVirus.h</h1><div class="fragment"><pre class="fragment">00001 <span class="comment">/* eoVirus.h</span>
|
||||
00002 <span class="comment"></span>
|
||||
00003 <span class="comment">(c) GeNeura Team 2001, Marc Schoenauer 2000</span>
|
||||
00004 <span class="comment"></span>
|
||||
00005 <span class="comment">This library is free software; you can redistribute it and/or modify</span>
|
||||
00006 <span class="comment">it under the terms of the GNU Lesser General Public License as</span>
|
||||
00007 <span class="comment">published by the Free Software Foundation; either version 2 of the</span>
|
||||
00008 <span class="comment">License, or (at your option) any later version.</span>
|
||||
00009 <span class="comment"></span>
|
||||
00010 <span class="comment">This library is distributed in the hope that it will be useful, but</span>
|
||||
00011 <span class="comment">WITHOUT ANY WARRANTY; without even the implied warranty of</span>
|
||||
00012 <span class="comment">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span>
|
||||
00013 <span class="comment">Lesser General Public License for more details.</span>
|
||||
00014 <span class="comment"></span>
|
||||
00015 <span class="comment">You should have received a copy of the GNU Lesser General Public</span>
|
||||
00016 <span class="comment">License along with this library; if not, write to the Free Software</span>
|
||||
00017 <span class="comment">Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307</span>
|
||||
00018 <span class="comment">USA</span>
|
||||
00019 <span class="comment"></span>
|
||||
00020 <span class="comment">Contact: todos@geneura.ugr.es, http://geneura.ugr.es</span>
|
||||
00021 <span class="comment"> Marc.Schoenauer@polytechnique.fr</span>
|
||||
00022 <span class="comment">*/</span>
|
||||
00023
|
||||
00024
|
||||
00025 <span class="preprocessor">#ifndef eoVirus_h</span>
|
||||
00026 <span class="preprocessor"></span><span class="preprocessor">#define eoVirus_h</span>
|
||||
00027 <span class="preprocessor"></span>
|
||||
00028 <span class="preprocessor">#include <iostream></span>
|
||||
00029 <span class="preprocessor">#include <functional></span>
|
||||
00030 <span class="preprocessor">#include <string></span>
|
||||
00031 <span class="preprocessor">#include <vector></span>
|
||||
00032
|
||||
00033 <span class="preprocessor">#include "ga/eoBit.h"</span>
|
||||
00034
|
||||
00048 <span class="keyword">template</span> <<span class="keyword">class</span> FitT>
|
||||
00049 <span class="keyword">class </span>eoVirus : <span class="keyword">public</span> <a class="code" href="classeo_bit.html">eoBit</a><FitT>
|
||||
00050 {
|
||||
00051 <span class="keyword">public</span>:
|
||||
00052
|
||||
00053 <span class="keyword">using</span> <a class="code" href="classeo_bit.html">eoBit<FitT></a>::begin;
|
||||
00054 <span class="keyword">using</span> <a class="code" href="classeo_bit.html">eoBit<FitT></a>::end;
|
||||
00055 <span class="keyword">using</span> <a class="code" href="classeo_bit.html">eoBit<FitT></a>::size;
|
||||
00056
|
||||
00057
|
||||
00062 eoVirus(<span class="keywordtype">unsigned</span> _size = 0, <span class="keywordtype">bool</span> _value = <span class="keyword">false</span>, <span class="keywordtype">bool</span> _virValue = <span class="keyword">false</span>):
|
||||
00063 <a class="code" href="classeo_bit.html">eoBit</a><<a class="code" href="classeo_scalar_fitness.html">FitT</a>>(_size, _value), virus( _size, _virValue) {}
|
||||
00064
|
||||
00066 <span class="keyword">virtual</span> std::string <a class="code" href="classeo_bit.html#a1">className</a>()<span class="keyword"> const </span>{
|
||||
00067 <span class="keywordflow">return</span> <span class="stringliteral">"eoVirus"</span>;
|
||||
00068 }
|
||||
00069
|
||||
00071 <span class="keywordtype">void</span> virResize( <span class="keywordtype">unsigned</span> _i ) {
|
||||
00072 virus.resize(_i );
|
||||
00073 }
|
||||
00074
|
||||
00076 <span class="keywordtype">bool</span> virusBit( <span class="keywordtype">unsigned</span> _i )<span class="keyword"> const </span>{
|
||||
00077 <span class="keywordflow">return</span> virus[_i];
|
||||
00078 }
|
||||
00079
|
||||
00081 <span class="keywordtype">void</span> virusBitSet( <span class="keywordtype">unsigned</span> _i, <span class="keywordtype">bool</span> _bit ) {
|
||||
00082 virus[_i ] = _bit;
|
||||
00083 }
|
||||
00084
|
||||
00089 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classeo_bit.html#a2">printOn</a>(std::ostream& os)<span class="keyword"> const </span>{
|
||||
00090 <a class="code" href="class_e_o.html#z10_2">EO<FitT>::printOn</a>(os);
|
||||
00091 os << <span class="charliteral">' '</span>;
|
||||
00092 os << size() << <span class="charliteral">' '</span>;
|
||||
00093 std::copy(begin(), end(), std::ostream_iterator<bool>(os));
|
||||
00094 std::cout << std::endl;
|
||||
00095 std::copy(virus.begin(), virus.end(), std::ostream_iterator<bool>(os));
|
||||
00096 }
|
||||
00097
|
||||
00102 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classeo_bit.html#a3">readFrom</a>(std::istream& is){
|
||||
00103 <a class="code" href="classeo_bit.html#a3">eoBit<FitT>::readFrom</a>(is);
|
||||
00104 <span class="keywordtype">unsigned</span> s;
|
||||
00105 is >> s;
|
||||
00106 std::string bits;
|
||||
00107 is >> bits;
|
||||
00108 <span class="keywordflow">if</span> (is) {
|
||||
00109 virus.resize(bits.size());
|
||||
00110 std::transform(bits.begin(), bits.end(), virus.begin(),
|
||||
00111 std::bind2nd(std::equal_to<char>(), <span class="charliteral">'1'</span>));
|
||||
00112 }
|
||||
00113 }
|
||||
00114
|
||||
00115
|
||||
00116 <span class="keyword">private</span>:
|
||||
00117
|
||||
00118 std::vector<bool> virus;
|
||||
00119 };
|
||||
00120
|
||||
00121 <span class="comment">//-----------------------------------------------------------------------------</span>
|
||||
00122
|
||||
00123 <span class="preprocessor">#endif //eoBit_h</span>
|
||||
00124 <span class="preprocessor"></span>
|
||||
00125
|
||||
00126 <span class="comment">// Local Variables:</span>
|
||||
00127 <span class="comment">// coding: iso-8859-1</span>
|
||||
00128 <span class="comment">// mode: C++</span>
|
||||
00129 <span class="comment">// c-file-style: "Stroustrup"</span>
|
||||
00130 <span class="comment">// End:</span>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Thu Oct 19 05:06:39 2006 for EO by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue