moFitSolContinue, moSteadyFitSolContinue and moNoFitImprSolContinue are added
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@582 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
bbe5e6f2b4
commit
0693358307
172 changed files with 3155 additions and 355 deletions
|
|
@ -1,4 +1,4 @@
|
|||
.TH "EmptySelection" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "EmptySelection" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moAlgo" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moAlgo" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moAspirCrit" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moAspirCrit" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moBestImprSelect" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moBestImprSelect" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moCoolingSchedule" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moCoolingSchedule" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moExponentialCoolingSchedule" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moExponentialCoolingSchedule" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moFirstImprSelect" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moFirstImprSelect" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
115
trunk/paradiseo-mo/doc/man/man3/moFitSolContinue.3
Normal file
115
trunk/paradiseo-mo/doc/man/man3/moFitSolContinue.3
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
.TH "moFitSolContinue" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
moFitSolContinue \- One possible stop criterion for a solution-based heuristic.
|
||||
|
||||
.PP
|
||||
.SH SYNOPSIS
|
||||
.br
|
||||
.PP
|
||||
\fC#include <moFitSolContinue.h>\fP
|
||||
.PP
|
||||
Inherits \fBmoSolContinue< EOT >< EOT >\fP.
|
||||
.PP
|
||||
.SS "Public Types"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "typedef EOT::Fitness \fBFitness\fP"
|
||||
.br
|
||||
.RI "\fIAlias for the fitness. \fP"
|
||||
.in -1c
|
||||
.SS "Public Member Functions"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "\fBmoFitSolContinue\fP (\fBFitness\fP __fitness, bool __maximization=true)"
|
||||
.br
|
||||
.RI "\fIBasic constructor. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBoperator()\fP (const EOT &__sol)"
|
||||
.br
|
||||
.RI "\fIFunction that activates the stopping criterion. \fP"
|
||||
.ti -1c
|
||||
.RI "void \fBinit\fP ()"
|
||||
.br
|
||||
.RI "\fIProcedure which allows to initialise all the stuff needed. \fP"
|
||||
.in -1c
|
||||
.SS "Private Attributes"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "\fBFitness\fP \fBfitness\fP"
|
||||
.br
|
||||
.RI "\fIFitness target. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBmaximization\fP"
|
||||
.br
|
||||
.RI "\fIFlag that indicate if there is a maximization (true) or a minimization (false) of the fitness value. \fP"
|
||||
.in -1c
|
||||
.SH "Detailed Description"
|
||||
.PP
|
||||
|
||||
.SS "template<class EOT> class moFitSolContinue< EOT >"
|
||||
One possible stop criterion for a solution-based heuristic.
|
||||
|
||||
The stop criterion corresponds to a fitness threshold gained.
|
||||
.PP
|
||||
Definition at line 21 of file moFitSolContinue.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> \fBmoFitSolContinue\fP< EOT >::\fBmoFitSolContinue\fP (\fBFitness\fP __fitness, bool __maximization = \fCtrue\fP)\fC [inline]\fP"
|
||||
.PP
|
||||
Basic constructor.
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
\fI__fitness\fP The fitness to reach.
|
||||
.br
|
||||
\fI__maximization\fP Indicate if the the aim is to maximize or minimize the fitness.
|
||||
.RE
|
||||
.PP
|
||||
|
||||
.PP
|
||||
Definition at line 34 of file moFitSolContinue.h.
|
||||
.SH "Member Function Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> bool \fBmoFitSolContinue\fP< EOT >::operator() (const EOT & __sol)\fC [inline, virtual]\fP"
|
||||
.PP
|
||||
Function that activates the stopping criterion.
|
||||
.PP
|
||||
Indicates if the fitness threshold has not been yet reached.
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
\fI__sol\fP the current solution.
|
||||
.RE
|
||||
.PP
|
||||
\fBReturns:\fP
|
||||
.RS 4
|
||||
true or false according to the value of the fitness.
|
||||
.RE
|
||||
.PP
|
||||
|
||||
.PP
|
||||
Implements \fBeoUF< const EOT &, bool >\fP.
|
||||
.PP
|
||||
Definition at line 44 of file moFitSolContinue.h.
|
||||
.PP
|
||||
References moFitSolContinue< EOT >::fitness, and moFitSolContinue< EOT >::maximization.
|
||||
.SH "Member Data Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> bool \fBmoFitSolContinue\fP< EOT >::\fBmaximization\fP\fC [private]\fP"
|
||||
.PP
|
||||
Flag that indicate if there is a maximization (true) or a minimization (false) of the fitness value.
|
||||
.PP
|
||||
It can be interesting to know this information because some solution-based metaheuristics can generate solution with a fitness that is worse that the best known fitness (in this case, the counter is not reinitialized).
|
||||
.PP
|
||||
Definition at line 72 of file moFitSolContinue.h.
|
||||
.PP
|
||||
Referenced by moFitSolContinue< EOT >::operator()().
|
||||
|
||||
.SH "Author"
|
||||
.PP
|
||||
Generated automatically by Doxygen for PARADISEO-MO from the source code.
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
.TH "moGenSolContinue" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moGenSolContinue" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
moGenSolContinue \- One possible stop criterion for a solution-based heuristic.
|
||||
moGenSolContinue \- One possible stopping criterion for a solution-based heuristic.
|
||||
|
||||
.PP
|
||||
.SH SYNOPSIS
|
||||
|
|
@ -18,7 +18,7 @@ Inherits \fBmoSolContinue< EOT >< EOT >\fP.
|
|||
.ti -1c
|
||||
.RI "\fBmoGenSolContinue\fP (unsigned int __maxNumGen)"
|
||||
.br
|
||||
.RI "\fISimple constructor. \fP"
|
||||
.RI "\fIBasic constructor. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBoperator()\fP (const EOT &__sol)"
|
||||
.br
|
||||
|
|
@ -26,7 +26,7 @@ Inherits \fBmoSolContinue< EOT >< EOT >\fP.
|
|||
.ti -1c
|
||||
.RI "void \fBinit\fP ()"
|
||||
.br
|
||||
.RI "\fIProcedure which allows to initialise the generation counter. \fP"
|
||||
.RI "\fIProcedure which allows to initialise all the stuff needed. \fP"
|
||||
.in -1c
|
||||
.SS "Private Attributes"
|
||||
|
||||
|
|
@ -44,16 +44,16 @@ Inherits \fBmoSolContinue< EOT >< EOT >\fP.
|
|||
.PP
|
||||
|
||||
.SS "template<class EOT> class moGenSolContinue< EOT >"
|
||||
One possible stop criterion for a solution-based heuristic.
|
||||
One possible stopping criterion for a solution-based heuristic.
|
||||
|
||||
The stop criterion corresponds to a maximum number of iteration.
|
||||
The stopping criterion corresponds to a maximum number of iteration.
|
||||
.PP
|
||||
Definition at line 21 of file moGenSolContinue.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> \fBmoGenSolContinue\fP< EOT >::\fBmoGenSolContinue\fP (unsigned int __maxNumGen)\fC [inline]\fP"
|
||||
.PP
|
||||
Simple constructor.
|
||||
Basic constructor.
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
|
|
@ -69,7 +69,7 @@ Definition at line 30 of file moGenSolContinue.h.
|
|||
.PP
|
||||
Function that activates the stop criterion.
|
||||
.PP
|
||||
Increments the counter and returns TRUE if the current number of iteration is lower than the given maximum number of iterations.
|
||||
Increments the counter and returns true if the current number of iteration is lower than the given maximum number of iterations.
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
|
|
@ -78,27 +78,16 @@ Increments the counter and returns TRUE if the current number of iteration is lo
|
|||
.PP
|
||||
\fBReturns:\fP
|
||||
.RS 4
|
||||
TRUE or FALSE according to the current generation number.
|
||||
true or false according to the current generation number.
|
||||
.RE
|
||||
.PP
|
||||
|
||||
.PP
|
||||
Implements \fBeoUF< const EOT &, bool >\fP.
|
||||
.PP
|
||||
Definition at line 44 of file moGenSolContinue.h.
|
||||
Definition at line 42 of file moGenSolContinue.h.
|
||||
.PP
|
||||
References moGenSolContinue< EOT >::maxNumGen, and moGenSolContinue< EOT >::numGen.
|
||||
.SS "template<class EOT> void \fBmoGenSolContinue\fP< EOT >::init ()\fC [inline, virtual]\fP"
|
||||
.PP
|
||||
Procedure which allows to initialise the generation counter.
|
||||
.PP
|
||||
It can also be used to reset the iteration counter.
|
||||
.PP
|
||||
Implements \fBmoSolContinue< EOT >\fP.
|
||||
.PP
|
||||
Definition at line 54 of file moGenSolContinue.h.
|
||||
.PP
|
||||
References moGenSolContinue< EOT >::numGen.
|
||||
|
||||
.SH "Author"
|
||||
.PP
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moHC" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moHC" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moHCMoveLoopExpl" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moHCMoveLoopExpl" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moImprBestFitAspirCrit" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moImprBestFitAspirCrit" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moItRandNextMove" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moItRandNextMove" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moLSCheckPoint" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moLSCheckPoint" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moLinearCoolingSchedule" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moLinearCoolingSchedule" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moMove" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moMove" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moMoveExpl" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moMoveExpl" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moMoveIncrEval" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moMoveIncrEval" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moMoveInit" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moMoveInit" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moMoveLoopExpl" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moMoveLoopExpl" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moMoveSelect" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moMoveSelect" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moNextMove" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moNextMove" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moNoAspirCrit" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moNoAspirCrit" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
127
trunk/paradiseo-mo/doc/man/man3/moNoFitImprSolContinue.3
Normal file
127
trunk/paradiseo-mo/doc/man/man3/moNoFitImprSolContinue.3
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
.TH "moNoFitImprSolContinue" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
moNoFitImprSolContinue \- One possible stop criterion for a solution-based heuristic.
|
||||
|
||||
.PP
|
||||
.SH SYNOPSIS
|
||||
.br
|
||||
.PP
|
||||
\fC#include <moNoFitImprSolContinue.h>\fP
|
||||
.PP
|
||||
Inherits \fBmoSolContinue< EOT >< EOT >\fP.
|
||||
.PP
|
||||
.SS "Public Types"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "typedef EOT::Fitness \fBFitness\fP"
|
||||
.br
|
||||
.RI "\fIAlias for the fitness. \fP"
|
||||
.in -1c
|
||||
.SS "Public Member Functions"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "\fBmoNoFitImprSolContinue\fP (unsigned int __maxNumberOfIterationWithoutImprovment, bool __maximization=true)"
|
||||
.br
|
||||
.RI "\fIBasic constructor. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBoperator()\fP (const EOT &__sol)"
|
||||
.br
|
||||
.RI "\fIFunction that activates the stopping criterion. \fP"
|
||||
.ti -1c
|
||||
.RI "void \fBinit\fP ()"
|
||||
.br
|
||||
.RI "\fIProcedure which allows to initialise all the stuff needed. \fP"
|
||||
.in -1c
|
||||
.SS "Private Attributes"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "unsigned int \fBmaxNumberOfIterationsWithoutImprovment\fP"
|
||||
.br
|
||||
.RI "\fIMaximum number of iterations without improvment allowed. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBfirstFitnessSaved\fP"
|
||||
.br
|
||||
.RI "\fIFlag that this is the first time that the fitness is used. \fP"
|
||||
.ti -1c
|
||||
.RI "\fBFitness\fP \fBfitness\fP"
|
||||
.br
|
||||
.RI "\fICurrent Fitness. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBmaximization\fP"
|
||||
.br
|
||||
.RI "\fIFlag that indicate if there is a maximization (true) or a minimization (false) of the fitness value. \fP"
|
||||
.ti -1c
|
||||
.RI "unsigned int \fBcounter\fP"
|
||||
.br
|
||||
.RI "\fIThe iteration couter. \fP"
|
||||
.in -1c
|
||||
.SH "Detailed Description"
|
||||
.PP
|
||||
|
||||
.SS "template<class EOT> class moNoFitImprSolContinue< EOT >"
|
||||
One possible stop criterion for a solution-based heuristic.
|
||||
|
||||
The stop criterion corresponds to a maximum number of iterations without improvement.
|
||||
.PP
|
||||
Definition at line 21 of file moNoFitImprSolContinue.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> \fBmoNoFitImprSolContinue\fP< EOT >::\fBmoNoFitImprSolContinue\fP (unsigned int __maxNumberOfIterationWithoutImprovment, bool __maximization = \fCtrue\fP)\fC [inline]\fP"
|
||||
.PP
|
||||
Basic constructor.
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
\fI__maxNumberOfIterationWithoutImprovment\fP The number of iterations without fitness improvment to reach for stop.
|
||||
.br
|
||||
\fI__maximization\fP Indicate if the the aim is to maximize or minimize the fitness.
|
||||
.RE
|
||||
.PP
|
||||
|
||||
.PP
|
||||
Definition at line 34 of file moNoFitImprSolContinue.h.
|
||||
.SH "Member Function Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> bool \fBmoNoFitImprSolContinue\fP< EOT >::operator() (const EOT & __sol)\fC [inline, virtual]\fP"
|
||||
.PP
|
||||
Function that activates the stopping criterion.
|
||||
.PP
|
||||
Indicates if the fitness has not been improved since a given number of iterations (after a minimum of iterations).
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
\fI__sol\fP the current solution.
|
||||
.RE
|
||||
.PP
|
||||
\fBReturns:\fP
|
||||
.RS 4
|
||||
true or false.
|
||||
.RE
|
||||
.PP
|
||||
|
||||
.PP
|
||||
Implements \fBeoUF< const EOT &, bool >\fP.
|
||||
.PP
|
||||
Definition at line 45 of file moNoFitImprSolContinue.h.
|
||||
.PP
|
||||
References moNoFitImprSolContinue< EOT >::counter, moNoFitImprSolContinue< EOT >::firstFitnessSaved, moNoFitImprSolContinue< EOT >::fitness, moNoFitImprSolContinue< EOT >::maximization, and moNoFitImprSolContinue< EOT >::maxNumberOfIterationsWithoutImprovment.
|
||||
.SH "Member Data Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> bool \fBmoNoFitImprSolContinue\fP< EOT >::\fBmaximization\fP\fC [private]\fP"
|
||||
.PP
|
||||
Flag that indicate if there is a maximization (true) or a minimization (false) of the fitness value.
|
||||
.PP
|
||||
It can be interesting to know this information because some solution-based metaheuristics can generate solutions wiht a fitness that is worse that the best known fitness (in this case, the counter is not reinitialized).
|
||||
.PP
|
||||
Definition at line 96 of file moNoFitImprSolContinue.h.
|
||||
.PP
|
||||
Referenced by moNoFitImprSolContinue< EOT >::operator()().
|
||||
|
||||
.SH "Author"
|
||||
.PP
|
||||
Generated automatically by Doxygen for PARADISEO-MO from the source code.
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moRandImprSelect" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moRandImprSelect" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moRandMove" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moRandMove" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moSA" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moSA" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moSimpleMoveTabuList" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moSimpleMoveTabuList" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moSimpleSolutionTabuList" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moSimpleSolutionTabuList" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
.TH "moSolContinue" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moSolContinue" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
moSolContinue \- Class that describes a stop criterion for a solution-based heuristic.
|
||||
moSolContinue \- Class that describes a stopping criterion for a solution-based heuristic.
|
||||
|
||||
.PP
|
||||
.SH SYNOPSIS
|
||||
|
|
@ -12,7 +12,7 @@ moSolContinue \- Class that describes a stop criterion for a solution-based heur
|
|||
.PP
|
||||
Inherits \fBeoUF< const EOT &, bool >\fP.
|
||||
.PP
|
||||
Inherited by \fBmoGenSolContinue< EOT >\fP.
|
||||
Inherited by \fBmoFitSolContinue< EOT >\fP, \fBmoGenSolContinue< EOT >\fP, \fBmoNoFitImprSolContinue< EOT >\fP, and \fBmoSteadyFitSolContinue< EOT >\fP.
|
||||
.PP
|
||||
.SS "Public Member Functions"
|
||||
|
||||
|
|
@ -20,13 +20,13 @@ Inherited by \fBmoGenSolContinue< EOT >\fP.
|
|||
.ti -1c
|
||||
.RI "virtual void \fBinit\fP ()=0"
|
||||
.br
|
||||
.RI "\fIProcedure which initialises all that the stop criterion needs. \fP"
|
||||
.RI "\fIProcedure which initialises all that the stopping criterion needs. \fP"
|
||||
.in -1c
|
||||
.SH "Detailed Description"
|
||||
.PP
|
||||
|
||||
.SS "template<class EOT> class moSolContinue< EOT >"
|
||||
Class that describes a stop criterion for a solution-based heuristic.
|
||||
Class that describes a stopping criterion for a solution-based heuristic.
|
||||
|
||||
It allows to add an initialisation procedure to an object that is a unary function (\fBeoUF\fP).
|
||||
.PP
|
||||
|
|
@ -35,11 +35,11 @@ Definition at line 22 of file moSolContinue.h.
|
|||
.PP
|
||||
.SS "template<class EOT> virtual void \fBmoSolContinue\fP< EOT >::init ()\fC [pure virtual]\fP"
|
||||
.PP
|
||||
Procedure which initialises all that the stop criterion needs.
|
||||
Procedure which initialises all that the stopping criterion needs.
|
||||
.PP
|
||||
Generally, it allocates some data structures or initialises some counters.
|
||||
.PP
|
||||
Implemented in \fBmoGenSolContinue< EOT >\fP.
|
||||
Implemented in \fBmoFitSolContinue< EOT >\fP, \fBmoGenSolContinue< EOT >\fP, \fBmoNoFitImprSolContinue< EOT >\fP, and \fBmoSteadyFitSolContinue< EOT >\fP.
|
||||
|
||||
.SH "Author"
|
||||
.PP
|
||||
|
|
|
|||
137
trunk/paradiseo-mo/doc/man/man3/moSteadyFitSolContinue.3
Normal file
137
trunk/paradiseo-mo/doc/man/man3/moSteadyFitSolContinue.3
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
.TH "moSteadyFitSolContinue" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
moSteadyFitSolContinue \- One possible stopping criterion for a solution-based heuristic.
|
||||
|
||||
.PP
|
||||
.SH SYNOPSIS
|
||||
.br
|
||||
.PP
|
||||
\fC#include <moSteadyFitSolContinue.h>\fP
|
||||
.PP
|
||||
Inherits \fBmoSolContinue< EOT >< EOT >\fP.
|
||||
.PP
|
||||
.SS "Public Types"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "typedef EOT::Fitness \fBFitness\fP"
|
||||
.br
|
||||
.RI "\fIAlias for the fitness. \fP"
|
||||
.in -1c
|
||||
.SS "Public Member Functions"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "\fBmoSteadyFitSolContinue\fP (unsigned int __maxNumberOfIterations, unsigned int __maxNumberOfIterationWithoutImprovment, bool __maximization=true)"
|
||||
.br
|
||||
.RI "\fIBasic constructor. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBoperator()\fP (const EOT &__sol)"
|
||||
.br
|
||||
.RI "\fIFunction that activates the stopping criterion. \fP"
|
||||
.ti -1c
|
||||
.RI "void \fBinit\fP ()"
|
||||
.br
|
||||
.RI "\fIProcedure which allows to initialise the stuff needed. \fP"
|
||||
.in -1c
|
||||
.SS "Private Attributes"
|
||||
|
||||
.in +1c
|
||||
.ti -1c
|
||||
.RI "unsigned int \fBmaxNumberOfIterations\fP"
|
||||
.br
|
||||
.RI "\fIMaximum number of iterations before considering the fitness. \fP"
|
||||
.ti -1c
|
||||
.RI "unsigned int \fBmaxNumberOfIterationsWithoutImprovment\fP"
|
||||
.br
|
||||
.RI "\fIMaximum number of iterations without improvment allowed. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBmaxNumberOfIterationsReached\fP"
|
||||
.br
|
||||
.RI "\fIFlag that indicates that the maxNumberIteration have been reached. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBfirstFitnessSaved\fP"
|
||||
.br
|
||||
.RI "\fIFlag that this is the first time that the fitness is used. \fP"
|
||||
.ti -1c
|
||||
.RI "\fBFitness\fP \fBfitness\fP"
|
||||
.br
|
||||
.RI "\fICurrent Fitness. \fP"
|
||||
.ti -1c
|
||||
.RI "bool \fBmaximization\fP"
|
||||
.br
|
||||
.RI "\fIFlag that indicate if there is a maximization (true) or a minimization (false) of the fitness value. \fP"
|
||||
.ti -1c
|
||||
.RI "unsigned int \fBcounter\fP"
|
||||
.br
|
||||
.RI "\fIThe iteration couter. \fP"
|
||||
.in -1c
|
||||
.SH "Detailed Description"
|
||||
.PP
|
||||
|
||||
.SS "template<class EOT> class moSteadyFitSolContinue< EOT >"
|
||||
One possible stopping criterion for a solution-based heuristic.
|
||||
|
||||
The stop criterion corresponds to a maximum number of iterations without improvement (after a minimum number of iterations).
|
||||
.PP
|
||||
Definition at line 21 of file moSteadyFitSolContinue.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> \fBmoSteadyFitSolContinue\fP< EOT >::\fBmoSteadyFitSolContinue\fP (unsigned int __maxNumberOfIterations, unsigned int __maxNumberOfIterationWithoutImprovment, bool __maximization = \fCtrue\fP)\fC [inline]\fP"
|
||||
.PP
|
||||
Basic constructor.
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
\fI__maxNumberOfIterations\fP The number of iterations to reach before looking for the fitness.
|
||||
.br
|
||||
\fI__maxNumberOfIterationWithoutImprovment\fP The number of iterations without fitness improvment to reach for stop.
|
||||
.br
|
||||
\fI__maximization\fP Indicate if the the aim is to maximize or minimize the fitness.
|
||||
.RE
|
||||
.PP
|
||||
|
||||
.PP
|
||||
Definition at line 35 of file moSteadyFitSolContinue.h.
|
||||
.SH "Member Function Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> bool \fBmoSteadyFitSolContinue\fP< EOT >::operator() (const EOT & __sol)\fC [inline, virtual]\fP"
|
||||
.PP
|
||||
Function that activates the stopping criterion.
|
||||
.PP
|
||||
Indicates if the fitness has not been improved since a number of iterations (after a minimum of iterations).
|
||||
.PP
|
||||
\fBParameters:\fP
|
||||
.RS 4
|
||||
\fI__sol\fP the current solution.
|
||||
.RE
|
||||
.PP
|
||||
\fBReturns:\fP
|
||||
.RS 4
|
||||
true or false.
|
||||
.RE
|
||||
.PP
|
||||
|
||||
.PP
|
||||
Implements \fBeoUF< const EOT &, bool >\fP.
|
||||
.PP
|
||||
Definition at line 47 of file moSteadyFitSolContinue.h.
|
||||
.PP
|
||||
References moSteadyFitSolContinue< EOT >::counter, moSteadyFitSolContinue< EOT >::firstFitnessSaved, moSteadyFitSolContinue< EOT >::fitness, moSteadyFitSolContinue< EOT >::maximization, moSteadyFitSolContinue< EOT >::maxNumberOfIterations, moSteadyFitSolContinue< EOT >::maxNumberOfIterationsReached, and moSteadyFitSolContinue< EOT >::maxNumberOfIterationsWithoutImprovment.
|
||||
.SH "Member Data Documentation"
|
||||
.PP
|
||||
.SS "template<class EOT> bool \fBmoSteadyFitSolContinue\fP< EOT >::\fBmaximization\fP\fC [private]\fP"
|
||||
.PP
|
||||
Flag that indicate if there is a maximization (true) or a minimization (false) of the fitness value.
|
||||
.PP
|
||||
It can be interesting to know this information because some solution-based metaheuristics can generate solution with a fitness that is worse that the best known fitness (in this case, the counter is not reinitialized).
|
||||
.PP
|
||||
Definition at line 114 of file moSteadyFitSolContinue.h.
|
||||
.PP
|
||||
Referenced by moSteadyFitSolContinue< EOT >::operator()().
|
||||
|
||||
.SH "Author"
|
||||
.PP
|
||||
Generated automatically by Doxygen for PARADISEO-MO from the source code.
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moTS" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moTS" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moTSMoveLoopExpl" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moTSMoveLoopExpl" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH "moTabuList" 3 "6 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.TH "moTabuList" 3 "31 Jul 2007" "Version 0.1" "PARADISEO-MO" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue