Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.OptimizationExpertSystem.Common/3.3/Interfaces
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.OptimizationExpertSystem.Common/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.OptimizationExpertSystem.Common/3.3/Interfaces/IAlgorithmInstanceRecommender.cs
r13791 r16728 20 20 #endregion 21 21 22 using HEAL.Attic; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Optimization; 24 25 25 26 namespace HeuristicLab.OptimizationExpertSystem.Common { 27 [StorableType("eaf9f3da-2645-445f-9321-a0e9c6434e79")] 26 28 public interface IAlgorithmInstanceRecommender : IParameterizedItem { 27 29 IRecommendationModel TrainModel(IRun[] problemInstances, KnowledgeCenter kc, string[] characteristics); -
branches/1614_GeneralizedQAP/HeuristicLab.OptimizationExpertSystem.Common/3.3/Interfaces/IRecommendationModel.cs
r13794 r16728 20 20 #endregion 21 21 22 using System.Collections.Generic; 23 using HEAL.Attic; 22 24 using HeuristicLab.Common; 23 25 using HeuristicLab.Optimization; 24 using System.Collections.Generic;25 26 26 27 namespace HeuristicLab.OptimizationExpertSystem.Common { 28 [StorableType("6372fba1-0207-47c0-a7ef-f57416086881")] 27 29 public interface IRecommendationModel : IContent { 28 30 IEnumerable<KeyValuePair<IAlgorithm, double>> GetRanking(IRun problemInstance);
Note: See TracChangeset
for help on using the changeset viewer.