Changeset 3275 for trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Timestamp:
- 04/06/10 03:37:29 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IOptimizer.cs
r3274 r3275 26 26 /// Interface to represent optimizers such as algorithms, batch runs, or experiments. 27 27 /// </summary> 28 public interface IOptimizer : IExecutable { 29 void Prepare(bool clearResults); 28 public interface IOptimizer : INamedItem, IExecutable { 29 RunCollection Runs { get; } 30 31 void Prepare(bool clearRuns); 30 32 } 31 33 }
Note: See TracChangeset
for help on using the changeset viewer.