Changeset 15190 for branches/Async/HeuristicLab.Algorithms.DataAnalysis
- Timestamp:
- 07/10/17 22:04:22 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async/HeuristicLab.Algorithms.DataAnalysis/3.4/CrossValidation.cs
r15065 r15190 320 320 clonedAlgorithm.ExecutionState == ExecutionState.Paused) { 321 321 ticket.Wait(); 322 clonedAlgorithm.StartAsync(cancellationToken); 322 lock (locker) { 323 if (pausePending || stopPending) break; 324 clonedAlgorithm.StartAsync(cancellationToken); 325 } 323 326 } 324 327 }
Note: See TracChangeset
for help on using the changeset viewer.