Free cookie consent management tool by TermsFeed Policy Generator

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

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

Location:
branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4
Files:
2 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
  • branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4/GoalSeekingProblem.Views.csproj

    r14380 r14526  
    2222    <ErrorReport>prompt</ErrorReport>
    2323    <WarningLevel>4</WarningLevel>
     24    <LangVersion>4</LangVersion>
    2425  </PropertyGroup>
    2526  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
     
    3233  </PropertyGroup>
    3334  <ItemGroup>
     35    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec" />
    3436    <Reference Include="HeuristicLab.Common-3.3">
    3537      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
Note: See TracChangeset for help on using the changeset viewer.