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
|
|
@ -72,7 +72,7 @@ public:
|
|||
* @param _solution the current solution
|
||||
* @return true if there is some heuristics
|
||||
*/
|
||||
virtual bool cont(EOT& _solution){
|
||||
virtual bool cont(EOT& /*_solution*/){
|
||||
return ( cycle || (currentOrder <= (order.size() - 2)) );
|
||||
}
|
||||
|
||||
|
|
@ -81,7 +81,7 @@ public:
|
|||
*
|
||||
* @param _solution the current solution
|
||||
*/
|
||||
virtual void init(EOT& _solution) {
|
||||
virtual void init(EOT& /*_solution*/) {
|
||||
if(order.size() == 0)
|
||||
for(unsigned int i = 0; i < LSvector.size(); i++)
|
||||
order.push_back(i);
|
||||
|
|
@ -98,7 +98,7 @@ public:
|
|||
*
|
||||
* @param _solution the current solution
|
||||
*/
|
||||
virtual void next(EOT& _solution){
|
||||
virtual void next(EOT& /*_solution*/){
|
||||
currentOrder = (currentOrder + 1) % order.size();
|
||||
|
||||
current = order[currentOrder];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue