Yet again some documentation change
This commit is contained in:
parent
ff057c799a
commit
318697af40
3 changed files with 18 additions and 3 deletions
|
|
@ -45,9 +45,24 @@ using namespace std;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//@{
|
//@{
|
||||||
/** eo1d: Base class for "chromosomes" with a single dimension
|
/**
|
||||||
|
@deprecated {eo1d} eo1d
|
||||||
|
\deprecated
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
|
||||||
|
eo1d: Base class for "chromosomes" with a single dimension
|
||||||
#T# is the type it will be instantiated with; this type must have, at
|
#T# is the type it will be instantiated with; this type must have, at
|
||||||
least, a copy ctor, assignment operators,
|
least, a copy ctor, assignment operators,
|
||||||
|
|
||||||
|
\deprecated
|
||||||
|
As eo1d provides a so-called 'fat' interface, it might be wiser to
|
||||||
|
use eoFixedLength or eoVariableLength instead, that derive from
|
||||||
|
vector and list respectively and (important) redirect the less than
|
||||||
|
comparison operator to EO rather than the STL variants.
|
||||||
|
|
||||||
|
@see eoFixedLength eoVariableLength
|
||||||
*/
|
*/
|
||||||
template<class T, class fitnessT = float>
|
template<class T, class fitnessT = float>
|
||||||
class eo1d: public EO< fitnessT > {
|
class eo1d: public EO< fitnessT > {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// eoEsBase.h
|
// eoFixedLength.h
|
||||||
// (c) GeNeura Team, 2000 - EEAAX 1999 - Maarten Keijzer 2000
|
// (c) GeNeura Team, 2000 - EEAAX 1999 - Maarten Keijzer 2000
|
||||||
/*
|
/*
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// eoEsBase.h
|
// eoVariableLength.h
|
||||||
// (c) GeNeura Team, 2000 - EEAAX 1999 - Maarten Keijzer 2000
|
// (c) GeNeura Team, 2000 - EEAAX 1999 - Maarten Keijzer 2000
|
||||||
/*
|
/*
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
||||||
Reference in a new issue