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 843aa6fc37
69 changed files with 159 additions and 159 deletions

View file

@ -59,7 +59,7 @@ public:
* @param _solution initial solution
* @return the initial temperature
*/
virtual double init(EOT & _solution) {
virtual double init(EOT & /*_solution*/) {
// number of iteration with the same temperature
step = 0;
@ -71,7 +71,7 @@ public:
* @param _temp current temperature to update
* @param _acceptedMove true when the move is accepted, false otherwise
*/
virtual void update(double& _temp, bool _acceptedMove) {
virtual void update(double& _temp, bool /*_acceptedMove*/) {
if (step >= span) {
_temp *= alpha;
step = 0;