Changeset 16956 for branches/2457_ExpertSystem/HeuristicLab.Optimization/3.3/Results/IResultParameter.cs
- Timestamp:
- 05/15/19 13:36:51 (6 years ago)
- Location:
- branches/2457_ExpertSystem/HeuristicLab.Optimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2457_ExpertSystem/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/2457_ExpertSystem/HeuristicLab.Optimization/3.3/Results/IResultParameter.cs
r16075 r16956 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using HeuristicLab.Core; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Optimization { 27 [StorableType("af5d3f60-6f3a-4a44-a906-688ac8296fe3")] 26 28 public interface IResultParameter : ILookupParameter { 27 29 string ResultCollectionName { get; set; } … … 29 31 } 30 32 33 [StorableType("803e6ad6-dd9d-497a-ad1c-7cd3dc5b0d3c")] 31 34 public interface IResultParameter<T> : ILookupParameter<T>, IResultParameter where T : class, IItem { 32 35 T DefaultValue { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.