- Timestamp:
- 02/18/20 14:39:50 (5 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters/AlgorithmConverter.cs
r17435 r17443 16 16 base.Inject(item, data, root); 17 17 IAlgorithm algorithm = item as IAlgorithm; 18 IJsonItem problemData = data.Children.Where(x => x.Name == algorithm.Problem. Name).First();18 IJsonItem problemData = data.Children.Where(x => x.Name == algorithm.Problem.ItemName).First(); 19 19 root.Inject(algorithm.Problem, problemData, root); 20 20 -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters/StringValueConverter.cs
r17433 r17443 17 17 public override IJsonItem Extract(IItem value, IJsonItemConverter root) => 18 18 new StringJsonItem() { 19 Name = value.ItemName,19 Name = "[OverridableParamName]", 20 20 Description = value.ItemDescription, 21 21 Value = ((StringValue)value).Value
Note: See TracChangeset
for help on using the changeset viewer.