Changeset 13552
- Timestamp:
- 01/19/16 08:51:49 (9 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBProblemView.cs
r13550 r13552 169 169 for (var i = 0; i < values.Count; i++) { 170 170 content[i, 0] = values[i].Name; 171 content[i, 1] = values[i]. ToString();171 content[i, 1] = values[i].GetValue(); 172 172 content[i, 2] = values[i].GetType().Name; 173 173 } -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/ICharacteristicCalculator.cs
r13540 r13552 27 27 IEnumerable<string> Characteristics { get; } 28 28 bool CanCalculate(IProblem problem); 29 IEnumerable<KeyValuePair<string, double>> Calculate(IProblem problem, IEnumerable<string> characteristics = null);29 IEnumerable<KeyValuePair<string, IItem>> Calculate(IProblem problem, IEnumerable<string> characteristics = null); 30 30 } 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.