Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/ResultFormatters/PythonResultFormatter.cs @ 18043

Last change on this file since 18043 was 18041, checked in by dpiringe, 3 years ago

#3026

  • added PythonResultFormatter
  • removed code which was used for debugging and was forgotten
  • fixed the release build path of all JsonInterface projects
  • changed the output of Runner -> now: it writes the results after (at least) one run is finished
File size: 413 bytes
Line 
1using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
2using HeuristicLab.Problems.DataAnalysis.Symbolic;
3
4namespace HeuristicLab.JsonInterface {
5  public class PythonResultFormatter : SymbolicRegressionSolutionFormatterBase {
6    protected override ISymbolicExpressionTreeStringFormatter SymbolicExpressionTreeStringFormatter
7      => new SymbolicDataAnalysisExpressionPythonFormatter();
8  }
9}
Note: See TracBrowser for help on using the repository browser.