- Timestamp:
- 11/23/15 21:18:26 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async/HeuristicLab.Problems.QuadraticAssignment.Algorithms/3.3/RobustTabooSearch.cs
r13173 r13349 22 22 using System; 23 23 using System.Linq; 24 using System.Threading; 25 using System.Threading.Tasks; 24 26 using HeuristicLab.Analysis; 25 27 using HeuristicLab.Common; … … 338 340 } 339 341 340 public override void Start() {342 public override async Task StartAsync(CancellationToken cancellationToken) { 341 343 if (ExecutionState == ExecutionState.Prepared) { 342 344 int dim = Problem.Weights.Rows; … … 350 352 GlobalScope.Variables.Add(new Variable("MoveQualityMatrix", new DoubleMatrix(dim, dim))); 351 353 } 352 base.Start();354 await base.StartAsync(cancellationToken); 353 355 } 354 356
Note: See TracChangeset
for help on using the changeset viewer.