Research Article
Parameter Tuning for Local-Search-Based Matheuristic Methods
Algorithm 4
Matheuristic method using the blind algorithm.
| // To find an (approximately) optimal solution for MIP | | Input: (portion of the resources included in ) | | Output: (approximately optimal solution) | | (1) begin | | (2) = 0; | | (3) ; | | (4) = solve (; | | (5) while !stopCriterion do | | (6) ; | | (7) ; | | (8) = solve (; | | (9) if MIP then | | (10) = ; | | (11) | | (12) return ; |
|