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