Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/22/16 16:52:32 (7 years ago)
Author:
bburlacu
Message:

#2679: Add analyzer for SingleObjectiveGoalSeekingProblem. Add result aggregation in the GoalSeekingOptimizer. Remove unused dataset parameter from the problems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4/GoalSeekingOptimizerView.cs

    r14380 r14526  
    5454      if (Content.ProblemData != null)
    5555        dataViewHost.Content = Content.ProblemData;
     56
     57      if (Content.Results != null)
     58        resultsViewHost.Content = Content.Results;
    5659    }
    5760
     
    6164      Content.ProblemChanged += (o, e) => { problemViewHost.Content = Content.Problem; };
    6265      Content.ProblemDataChanged += (o, e) => { dataViewHost.Content = Content.ProblemData; };
     66      Content.ResultsChanged += (o, e) => { resultsViewHost.Content = Content.Results; };
    6367    }
    6468
Note: See TracChangeset for help on using the changeset viewer.