Changeset 5185 for branches/ParallelEngine/HeuristicLab.Optimization
- Timestamp:
- 12/31/10 04:29:19 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Optimization/3.3/UserDefinedProblem.cs
r4722 r5185 30 30 using HeuristicLab.Parameters; 31 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 using System.Threading; 32 33 33 34 namespace HeuristicLab.Optimization { … … 248 249 public bool Breakpoint { get; set; } 249 250 250 public IOperation Execute(IExecutionContext context) { 251 throw new InvalidOperationException("Please choose an appropriate evaluation operator."); 252 } 253 254 public void Abort() { 251 public IOperation Execute(IExecutionContext context, CancellationToken cancellationToken) { 255 252 throw new InvalidOperationException("Please choose an appropriate evaluation operator."); 256 253 }
Note: See TracChangeset
for help on using the changeset viewer.