Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/13/17 08:14:29 (7 years ago)
Author:
gkronber
Message:

#2796 added collection of Pareto-optimal solutions

Location:
branches/MCTS-SymbReg-2796/HeuristicLab.Algorithms.DataAnalysis/3.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/MCTS-SymbReg-2796/HeuristicLab.Algorithms.DataAnalysis/3.4

    • Property svn:ignore set to
      Plugin.cs
  • branches/MCTS-SymbReg-2796/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/MctsSymbolicRegressionAlgorithm.cs

    r14523 r15360  
    3333using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3434using HeuristicLab.Problems.DataAnalysis;
     35using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
    3536
    3637namespace HeuristicLab.Algorithms.DataAnalysis.MctsSymbolicRegression {
     
    228229      var gradEvals = new IntValue();
    229230      Results.Add(new Result("Gradient evaluations", gradEvals));
     231      var paretoBestModelsResult = new Result("ParetoBestModels", typeof(ItemList<ISymbolicRegressionSolution>));
     232      Results.Add(paretoBestModelsResult);
    230233
    231234
     
    283286          totalRollouts.Value = state.TotalRollouts;
    284287
     288          paretoBestModelsResult.Value = new ItemList<ISymbolicRegressionSolution>(state.ParetoBestModels);
     289
    285290          table.Rows["Best quality"].Values.Add(bestQuality.Value);
    286291          table.Rows["Current best quality"].Values.Add(curQuality.Value);
Note: See TracChangeset for help on using the changeset viewer.