Changeset 11328 for branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/OrienteeringProblem.cs
- Timestamp:
- 09/02/14 14:04:20 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/OrienteeringProblem.cs
r11325 r11328 206 206 } 207 207 private void PointVisitingCostsParameterValue_ValueChanged(object sender, EventArgs e) { } 208 209 private void BestKnownSolutionParameter_ValueChanged(object sender, EventArgs e) { 210 if (BestKnownSolution == null) 211 BestKnownQuality = null; 212 } 208 213 #endregion 209 214 … … 230 235 ScoresParameter.ValueChanged += ScoresParameter_ValueChanged; 231 236 ScoresParameter.Value.Reset += ScoresValue_Reset; 237 238 BestKnownSolutionParameter.ValueChanged += BestKnownSolutionParameter_ValueChanged; 232 239 } 233 240 … … 351 358 352 359 // Clear old solutions 353 BestKnownQuality = null;354 360 BestKnownSolution = null; 355 361 … … 378 384 379 385 // Clear old solutions 380 BestKnownQuality = null;381 386 BestKnownSolution = null; 382 387 … … 405 410 406 411 // Clear old solutions 407 BestKnownQuality = null;408 412 BestKnownSolution = null; 409 413
Note: See TracChangeset
for help on using the changeset viewer.