- Timestamp:
- 07/26/17 15:48:32 (7 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/Async (added) merged: 13329,13349,13354-13355,13401,15065,15190,15204,15212,15215-15216,15232,15280-15281,15284,15286
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Problems.QuadraticAssignment.Algorithms/3.3/RobustTabooSearch.cs
r14185 r15287 22 22 using System; 23 23 using System.Linq; 24 using System.Threading; 24 25 using HeuristicLab.Analysis; 25 26 using HeuristicLab.Common; … … 338 339 } 339 340 340 public override void Start( ) {341 public override void Start(CancellationToken cancellationToken) { 341 342 if (ExecutionState == ExecutionState.Prepared) { 342 343 int dim = Problem.Weights.Rows; … … 350 351 GlobalScope.Variables.Add(new Variable("MoveQualityMatrix", new DoubleMatrix(dim, dim))); 351 352 } 352 base.Start( );353 base.Start(cancellationToken); 353 354 } 354 355
Note: See TracChangeset
for help on using the changeset viewer.