Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/12/21 15:24:18 (3 years ago)
Author:
dpiringe
Message:

#3026

  • added ResultFormatter to add an extra layer of result transformation logic (converting a result value to a string with a defined logic, e.g. MatlabResultFormatter for ISymbolicRegressionSolution)
  • extended the IResultJsonItem with two properties for result formatting
  • added a new control to selected a result formatter for a result value
  • refactored the Runner for the new result formatting process
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters/AlgorithmConverter.cs

    r17828 r17834  
    3030      IAlgorithm algorithm = value as IAlgorithm;
    3131      foreach (var res in algorithm.Results) {
     32        item.AddChildren(root.Extract(res, root));
     33        /*
    3234        item.AddChildren(new ResultJsonItem() {
    3335          Name = res.Name,
    3436          Description = res.Description
    35         });
     37        });*/
    3638      }
    3739      item.AddChildren(root.Extract(algorithm.Problem, root));
Note: See TracChangeset for help on using the changeset viewer.