Last change
on this file since 17712 was
17451,
checked in by dpiringe, 5 years ago
|
#3026:
- renamed ResultItem to ResultJsonItem
- implemented RegressionProblemDataConverter
- added support for "named matrices" (named = rows and columns have names) -> INamedMatrixJsonItem incl. base classes and views
- added a bool property Active in IJsonItem -> marks items, which should be written into the template
|
File size:
1.3 KB
|
Rev | Line | |
---|
[17395] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Threading.Tasks;
|
---|
| 6 | using HeuristicLab.Core;
|
---|
| 7 | using HeuristicLab.Optimization;
|
---|
| 8 |
|
---|
[17435] | 9 | namespace HeuristicLab.JsonInterface {
|
---|
[17395] | 10 | public class AlgorithmConverter : ParameterizedItemConverter {
|
---|
| 11 | public override int Priority => 30;
|
---|
| 12 |
|
---|
| 13 | public override Type ConvertableType => typeof(IAlgorithm);
|
---|
| 14 |
|
---|
[17407] | 15 | public override void Inject(IItem item, IJsonItem data, IJsonItemConverter root) {
|
---|
| 16 | base.Inject(item, data, root);
|
---|
[17395] | 17 | IAlgorithm algorithm = item as IAlgorithm;
|
---|
[17444] | 18 | var collection = data.Children.Where(x => x.Name == algorithm.Problem.ItemName);
|
---|
| 19 | if(collection.Count() > 0) {
|
---|
| 20 | IJsonItem problemData = collection.First();
|
---|
| 21 | root.Inject(algorithm.Problem, problemData, root);
|
---|
| 22 | }
|
---|
[17395] | 23 | }
|
---|
[17407] | 24 |
|
---|
| 25 | public override IJsonItem Extract(IItem value, IJsonItemConverter root) {
|
---|
| 26 | IJsonItem item = base.Extract(value, root);
|
---|
[17395] | 27 | IAlgorithm algorithm = value as IAlgorithm;
|
---|
[17407] | 28 | foreach (var res in algorithm.Results) {
|
---|
[17451] | 29 | item.AddChildren(new ResultJsonItem() {
|
---|
[17407] | 30 | Name = res.Name,
|
---|
[17444] | 31 | Description = res.Description
|
---|
[17405] | 32 | });
|
---|
| 33 | }
|
---|
[17420] | 34 | item.AddChildren(root.Extract(algorithm.Problem, root));
|
---|
[17407] | 35 | return item;
|
---|
[17395] | 36 | }
|
---|
| 37 | }
|
---|
| 38 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.