Changeset 5193 for trunk/sources/HeuristicLab.Optimization
- Timestamp:
- 01/03/11 00:46:55 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/ParallelEngine (added) merged: 5175-5178,5183,5185,5187-5188
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Optimization/3.3/UserDefinedProblem.cs
r4722 r5193 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.