changement dans moContinuator.init qui n'est plus virtuel pure, et l'indentation de moLS ;-)
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1675 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
476a59e1e7
commit
a1c3c96542
2 changed files with 29 additions and 29 deletions
|
|
@ -73,7 +73,7 @@ public:
|
||||||
|
|
||||||
bool b=continuator(_solution);
|
bool b=continuator(_solution);
|
||||||
|
|
||||||
do{
|
do {
|
||||||
// explore the neighborhood of the solution
|
// explore the neighborhood of the solution
|
||||||
searchExplorer(_solution);
|
searchExplorer(_solution);
|
||||||
|
|
||||||
|
|
@ -85,7 +85,7 @@ public:
|
||||||
searchExplorer.updateParam(_solution);
|
searchExplorer.updateParam(_solution);
|
||||||
|
|
||||||
b=continuator(_solution);
|
b=continuator(_solution);
|
||||||
}while (b && searchExplorer.isContinue(_solution));
|
} while (b && searchExplorer.isContinue(_solution));
|
||||||
|
|
||||||
searchExplorer.terminate(_solution);
|
searchExplorer.terminate(_solution);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ public:
|
||||||
* Init Continuator parameters
|
* Init Continuator parameters
|
||||||
* @param _solution the related solution
|
* @param _solution the related solution
|
||||||
*/
|
*/
|
||||||
virtual void init(EOT& _solution) = 0 ;
|
virtual void init(EOT& _solution) { } ;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Last Call to terminate the checkpoint
|
* Last Call to terminate the checkpoint
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue