Changeset 3274 for trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Timestamp:
- 04/06/10 01:57:29 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IAlgorithm.cs
r3262 r3274 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Common;25 24 using HeuristicLab.Core; 26 25 … … 29 28 /// Interface to represent an algorithm. 30 29 /// </summary> 31 public interface IAlgorithm : IParameterizedNamedItem, I Executable{30 public interface IAlgorithm : IParameterizedNamedItem, IOptimizer { 32 31 Type ProblemType { get; } 33 32 IProblem Problem { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.