Changeset 13794 for branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem.Common/3.3/Interfaces
- Timestamp:
- 04/26/16 00:02:05 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem.Common/3.3/Interfaces/IRecommendationModel.cs
r13791 r13794 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Optimization; 24 using System;25 24 using System.Collections.Generic; 26 25 27 26 namespace HeuristicLab.OptimizationExpertSystem.Common { 28 27 public interface IRecommendationModel : IContent { 29 IEnumerable< Tuple<IAlgorithm, double>> GetRanking(IRun problemInstance);28 IEnumerable<KeyValuePair<IAlgorithm, double>> GetRanking(IRun problemInstance); 30 29 } 31 30 }
Note: See TracChangeset
for help on using the changeset viewer.