fix(mo): comment out unused parameters

Removes -Wunused-parameters warnings.
This commit is contained in:
Johann Dreo 2022-09-10 06:26:34 +02:00
commit c2a3ed4e7f
69 changed files with 159 additions and 159 deletions

View file

@ -87,7 +87,7 @@ public:
* initialization of the number of step to be done
* @param _solution unused solution
*/
virtual void initParam(EOT & _solution) {
virtual void initParam(EOT & /*_solution*/) {
step = 0;
isAccept = true;
};
@ -96,7 +96,7 @@ public:
* increase the number of step
* @param _solution unused solution
*/
virtual void updateParam(EOT & _solution) {
virtual void updateParam(EOT & /*_solution*/) {
step++;
};
@ -104,7 +104,7 @@ public:
* terminate: NOTHING TO DO
* @param _solution unused solution
*/
virtual void terminate(EOT & _solution) {};
virtual void terminate(EOT & /*_solution*/) {};
/**
* Explore the neighborhood of a solution
@ -142,7 +142,7 @@ public:
* @param _solution the solution
* @return true there is some steps to do
*/
virtual bool isContinue(EOT & _solution) {
virtual bool isContinue(EOT & /*_solution*/) {
return (step < nbStep) && isAccept ;
};