fix(mo): comment out unused parameters
Removes -Wunused-parameters warnings.
This commit is contained in:
parent
1a980c442d
commit
843aa6fc37
69 changed files with 159 additions and 159 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue