doc update
This commit is contained in:
parent
6489e6f4e2
commit
d6ccadd18e
5 changed files with 7 additions and 7 deletions
|
|
@ -28,15 +28,15 @@ Authors:
|
||||||
#ifndef _edoBounder_h
|
#ifndef _edoBounder_h
|
||||||
#define _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
|
/** The interface of a set of classes that modifies a solution so as to respect
|
||||||
* a given set of bounds (typically an hypercube).
|
* a given set of bounds (typically an hypercube).
|
||||||
*
|
*
|
||||||
* @ingroup Bounders
|
* @ingroup Repairers
|
||||||
*/
|
*/
|
||||||
template < typename EOT >
|
template < typename EOT >
|
||||||
class edoBounder : public eoUF< EOT&, void >
|
class edoBounder : public edoRepairer< EOT >
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
edoBounder( EOT min = EOT(1, 0), EOT max = EOT(1, 0) )
|
edoBounder( EOT min = EOT(1, 0), EOT max = EOT(1, 0) )
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ Authors:
|
||||||
|
|
||||||
/** A bounder that correct an incorrect variable by setting it to the min/max
|
/** A bounder that correct an incorrect variable by setting it to the min/max
|
||||||
*
|
*
|
||||||
* @ingroup Bounders
|
* @ingroup Repairers
|
||||||
*/
|
*/
|
||||||
template < typename EOT >
|
template < typename EOT >
|
||||||
class edoBounderBound : public edoBounder< EOT >
|
class edoBounderBound : public edoBounder< EOT >
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ Authors:
|
||||||
|
|
||||||
/** A bounder that does nothing.
|
/** A bounder that does nothing.
|
||||||
*
|
*
|
||||||
* @ingroup Bounders
|
* @ingroup Repairers
|
||||||
*/
|
*/
|
||||||
template < typename EOT >
|
template < typename EOT >
|
||||||
class edoBounderNo : public edoBounder< EOT >
|
class edoBounderNo : public edoBounder< EOT >
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ Authors:
|
||||||
/** A bounder that randomly draw new values for variables going out bounds,
|
/** A bounder that randomly draw new values for variables going out bounds,
|
||||||
* using an eoRng to do so.
|
* using an eoRng to do so.
|
||||||
*
|
*
|
||||||
* @ingroup Bounders
|
* @ingroup Repairers
|
||||||
*/
|
*/
|
||||||
template < typename EOT >
|
template < typename EOT >
|
||||||
class edoBounderRng : public edoBounder< EOT >
|
class edoBounderRng : public edoBounder< EOT >
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ Authors:
|
||||||
/** A bounder that randomly draw new values for variables going out bounds,
|
/** A bounder that randomly draw new values for variables going out bounds,
|
||||||
* in a given uniform distribution.
|
* in a given uniform distribution.
|
||||||
*
|
*
|
||||||
* @ingroup Bounders
|
* @ingroup Repairers
|
||||||
*/
|
*/
|
||||||
template < typename EOT >
|
template < typename EOT >
|
||||||
class edoBounderUniform : public edoBounder< EOT >
|
class edoBounderUniform : public edoBounder< EOT >
|
||||||
|
|
|
||||||
Reference in a new issue