doc update

This commit is contained in:
nojhan 2011-09-14 16:28:39 +02:00
commit d6ccadd18e
5 changed files with 7 additions and 7 deletions

View file

@ -28,15 +28,15 @@ Authors:
#ifndef _edoBounder_h
#define _edoBounder_h
#include <eoFunctor.h>
#include <edoRepairer.h>
/** The interface of a set of classes that modifies a solution so as to respect
* a given set of bounds (typically an hypercube).
*
* @ingroup Bounders
* @ingroup Repairers
*/
template < typename EOT >
class edoBounder : public eoUF< EOT&, void >
class edoBounder : public edoRepairer< EOT >
{
public:
edoBounder( EOT min = EOT(1, 0), EOT max = EOT(1, 0) )

View file

@ -32,7 +32,7 @@ Authors:
/** A bounder that correct an incorrect variable by setting it to the min/max
*
* @ingroup Bounders
* @ingroup Repairers
*/
template < typename EOT >
class edoBounderBound : public edoBounder< EOT >

View file

@ -32,7 +32,7 @@ Authors:
/** A bounder that does nothing.
*
* @ingroup Bounders
* @ingroup Repairers
*/
template < typename EOT >
class edoBounderNo : public edoBounder< EOT >

View file

@ -33,7 +33,7 @@ Authors:
/** A bounder that randomly draw new values for variables going out bounds,
* using an eoRng to do so.
*
* @ingroup Bounders
* @ingroup Repairers
*/
template < typename EOT >
class edoBounderRng : public edoBounder< EOT >

View file

@ -32,7 +32,7 @@ Authors:
/** A bounder that randomly draw new values for variables going out bounds,
* in a given uniform distribution.
*
* @ingroup Bounders
* @ingroup Repairers
*/
template < typename EOT >
class edoBounderUniform : public edoBounder< EOT >