Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/12/15 15:03:06 (9 years ago)
Author:
mkommend
Message:

#2174: Added best scope solution analyzer to single-objective programmable problem.

Location:
trunk/sources/HeuristicLab.Problems.Programmable/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Programmable/3.3/HeuristicLab.Problems.Programmable-3.3.csproj

    r11961 r11984  
    111111  </ItemGroup>
    112112  <ItemGroup>
     113    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
     114      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
     115      <Name>HeuristicLab.Analysis-3.3</Name>
     116      <Private>False</Private>
     117    </ProjectReference>
    113118    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    114119      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
  • trunk/sources/HeuristicLab.Problems.Programmable/3.3/Plugin.cs.frame

    r11961 r11984  
    2525  [Plugin("HeuristicLab.Problems.Programmable", "Programmable problem for defining custom representation and evaluation function.", "3.3.9.$WCREV$")]
    2626  [PluginFile("HeuristicLab.Problems.Programmable-3.3.dll", PluginFileType.Assembly)]
     27  [PluginDependency("HeuristicLab.Analysis", "3.3")]
    2728  [PluginDependency("HeuristicLab.Collections", "3.3")]
    2829  [PluginDependency("HeuristicLab.Common", "3.3")]
  • trunk/sources/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProgrammableProblem.cs

    r11961 r11984  
    2222using System.Collections.Generic;
    2323using System.Drawing;
     24using HeuristicLab.Analysis;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Common.Resources;
     
    6162      : base() {
    6263      Parameters.Add(new FixedValueParameter<SingleObjectiveProblemDefinitionScript>("ProblemScript", "Defines the problem.", new SingleObjectiveProblemDefinitionScript() { Name = Name }));
     64      Operators.Add(new BestScopeSolutionAnalyzer());
    6365      RegisterEvents();
    6466    }
Note: See TracChangeset for help on using the changeset viewer.