Renamed new meta model branch
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@609 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
b0c0d480b1
commit
a0f7039b27
413 changed files with 31937 additions and 0 deletions
30
branches/paradiseo-peo-meta-model/src/peoAggEvalFunc.h
Normal file
30
branches/paradiseo-peo-meta-model/src/peoAggEvalFunc.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
// "peoAggEvalFunc.h"
|
||||
|
||||
// (c) OPAC Team, LIFL, August 2005
|
||||
|
||||
/*
|
||||
Contact: paradiseo-help@lists.gforge.inria.fr
|
||||
*/
|
||||
|
||||
#ifndef __peoAggEvalFunc_h
|
||||
#define __peoAggEvalFunc_h
|
||||
|
||||
#include <eoFunctor.h>
|
||||
|
||||
//! Interface class for creating an aggregate evaluation function.
|
||||
|
||||
//! The peoAggEvalFunc class offers only the interface for creating aggregate evaluation functions - there
|
||||
//! are no direct internal functions provided. The class inherits <b>public eoBF< EOT&, const typename EOT :: Fitness&, void ></b>
|
||||
//! thus requiring, for the derived classes, the creation of a function having the following signature:
|
||||
//!
|
||||
//! <table style="border:none; border-spacing:0px;text-align:left; vertical-align:top; font-size:8pt;" border="0">
|
||||
//! <tr><td>void operator()( EOT& __eot, const typename EOT :: Fitness& __partial_fittness ); </td> <td> </td></tr>
|
||||
//! </table>
|
||||
//!
|
||||
//! The aggregation object is called in an iterative manner for each of the results obtained by applying partial evaluation functions.
|
||||
template< class EOT > class peoAggEvalFunc : public eoBF< EOT&, const typename EOT :: Fitness&, void > {
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue