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
65
trunk/paradiseo-eo/doc/html/eo_real_8h-source.html
Normal file
65
trunk/paradiseo-eo/doc/html/eo_real_8h-source.html
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
<!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: eoReal.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_000000.html">src</a> / <a class="el" href="dir_000010.html">es</a></div>
|
||||
<h1>eoReal.h</h1><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
|
||||
00002 <span class="comment"> eoReal.h</span>
|
||||
00003 <span class="comment">// (c) Marc Schoenauer, Maarten Keijzer and GeNeura Team, 2000</span>
|
||||
00004 <span class="comment"></span>
|
||||
00005 <span class="comment"> This library is free software; you can redistribute it and/or</span>
|
||||
00006 <span class="comment"> modify it under the terms of the GNU Lesser General Public</span>
|
||||
00007 <span class="comment"> License as published by the Free Software Foundation; either</span>
|
||||
00008 <span class="comment"> version 2 of the 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,</span>
|
||||
00011 <span class="comment"> but 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 USA</span>
|
||||
00018 <span class="comment"></span>
|
||||
00019 <span class="comment"> Contact: Marc.Schoenauer@polytechnique.fr</span>
|
||||
00020 <span class="comment"> todos@geneura.ugr.es, http://geneura.ugr.es </span>
|
||||
00021 <span class="comment"> mkeijzer@dhi.dk</span>
|
||||
00022 <span class="comment">*/</span>
|
||||
00023
|
||||
00024 <span class="preprocessor">#ifndef eoReal_h</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define eoReal_h</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="comment">//-----------------------------------------------------------------------------</span>
|
||||
00028
|
||||
00029 <span class="preprocessor">#include <iostream></span> <span class="comment">// std::ostream, std::istream</span>
|
||||
00030 <span class="preprocessor">#include <string></span> <span class="comment">// std::string</span>
|
||||
00031
|
||||
00032 <span class="preprocessor">#include <eoVector.h></span>
|
||||
00033
|
||||
<a name="l00037"></a><a class="code" href="classeo_real.html">00037</a> <span class="keyword">template</span> <<span class="keyword">class</span> FitT> <span class="keyword">class </span><a class="code" href="classeo_real.html">eoReal</a>: <span class="keyword">public</span> <a class="code" href="classeo_vector.html">eoVector</a><FitT, double>
|
||||
00038 {
|
||||
00039 <span class="keyword">public</span>:
|
||||
00040
|
||||
<a name="l00045"></a><a class="code" href="classeo_real.html#a0">00045</a> <a class="code" href="classeo_real.html#a0">eoReal</a>(<span class="keywordtype">unsigned</span> size = 0, <span class="keywordtype">double</span> value = 0.0):
|
||||
00046 <a class="code" href="classeo_vector.html">eoVector</a><<a class="code" href="classeo_scalar_fitness.html">FitT</a>, double>(size, value) {}
|
||||
00047
|
||||
<a name="l00049"></a><a class="code" href="classeo_real.html#a1">00049</a> <span class="keyword">virtual</span> std::string <a class="code" href="classeo_real.html#a1">className</a>()<span class="keyword"> const</span>
|
||||
00050 <span class="keyword"> </span>{
|
||||
00051 <span class="keywordflow">return</span> <span class="stringliteral">"eoReal"</span>;
|
||||
00052 }
|
||||
00053
|
||||
00054 };
|
||||
00055
|
||||
00056 <span class="comment">//-----------------------------------------------------------------------------</span>
|
||||
00057
|
||||
00058 <span class="preprocessor">#endif</span>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Thu Oct 19 05:06:37 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