Last change
on this file since 17790 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
|
Line | |
---|
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 |
|
---|
9 | namespace HeuristicLab.JsonInterface {
|
---|
10 | public class AlgorithmConverter : ParameterizedItemConverter {
|
---|
11 | public override int Priority => 30;
|
---|
12 |
|
---|
13 | public override Type ConvertableType => typeof(IAlgorithm);
|
---|
14 |
|
---|
15 | public override void Inject(IItem item, IJsonItem data, IJsonItemConverter root) {
|
---|
16 | base.Inject(item, data, root);
|
---|
17 | IAlgorithm algorithm = item as IAlgorithm;
|
---|
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 | }
|
---|
23 | }
|
---|
24 |
|
---|
25 | public override IJsonItem Extract(IItem value, IJsonItemConverter root) {
|
---|
26 | IJsonItem item = base.Extract(value, root);
|
---|
27 | IAlgorithm algorithm = value as IAlgorithm;
|
---|
28 | foreach (var res in algorithm.Results) {
|
---|
29 | item.AddChildren(new ResultJsonItem() {
|
---|
30 | Name = res.Name,
|
---|
31 | Description = res.Description
|
---|
32 | });
|
---|
33 | }
|
---|
34 | item.AddChildren(root.Extract(algorithm.Problem, root));
|
---|
35 | return item;
|
---|
36 | }
|
---|
37 | }
|
---|
38 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.