Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5379


Ignore:
Timestamp:
01/26/11 13:18:26 (13 years ago)
Author:
svonolfe
Message:

Implemented review comments by abeham for the SuccessProgressAnalysis (#1392)

Location:
branches/SuccessProgressAnalysis
Files:
1 added
1 deleted
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/SuccessProgressAnalysis/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.csproj

    r5163 r5379  
    1212    <AssemblyName>HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3</AssemblyName>
    1313    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    14     <TargetFrameworkProfile></TargetFrameworkProfile>
     14    <TargetFrameworkProfile>
     15    </TargetFrameworkProfile>
    1516    <FileAlignment>512</FileAlignment>
    1617    <SignAssembly>true</SignAssembly>
     
    115116    <Compile Include="OffspringSelectionGeneticAlgorithmMainOperator.cs" />
    116117    <Compile Include="Properties\AssemblyInfo.cs" />
     118    <Compile Include="SuccessProgressAnalysis\SuccessProgressAnalyzer.cs" />
    117119  </ItemGroup>
    118120  <ItemGroup>
  • branches/SuccessProgressAnalysis/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SuccessProgressAnalysis/SuccessProgressAnalyzer.cs

    r5372 r5379  
    3131using HeuristicLab.Parameters;
    3232using HeuristicLab.Data;
     33using HeuristicLab.Analysis;
    3334
    34 namespace HeuristicLab.Analysis.SuccessProgressAnalysis {
     35namespace HeuristicLab.Algorithms.OffspringSelectionAlgorithm.SuccessProgressAnalysis {
    3536  /// <summary>
    3637  /// An operator for analyzing the solution diversity in a population.
  • branches/SuccessProgressAnalysis/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj

    r5372 r5379  
    137137    <Compile Include="HeuristicLabAnalysisPlugin.cs" />
    138138    <Compile Include="Properties\AssemblyInfo.cs" />
    139     <Compile Include="SuccessProgressAnalysis\SuccessProgressAnalyzer.cs" />
    140139    <Compile Include="ValueAnalysis\MinAverageMaxValueAnalyzer.cs" />
    141140    <Compile Include="ValueAnalysis\MinAverageMaxValueCalculator.cs" />
  • branches/SuccessProgressAnalysis/HeuristicLab.Operators/3.3/StochasticMultiBranch.cs

    r5372 r5379  
    4949      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
    5050    }
     51    public ValueParameter<BoolValue> ReportExecutedOperatorParameter {
     52      get { return (ValueParameter<BoolValue>)Parameters["ReportExecutedOperator"]; }
     53    }
    5154    public ValueLookupParameter<StringValue> ExecutedOperatorParameter {
    5255      get { return (ValueLookupParameter<StringValue>)Parameters["ExecutedOperator"]; }
     
    6366      if (!Parameters.ContainsKey("ExecutedOperator")) {
    6467        Parameters.Add(new ValueLookupParameter<StringValue>("ExecutedOperator", "The operator that was executed."));
     68      }
     69      if (!Parameters.ContainsKey("ReportExecutedOperator")) {
     70        Parameters.Add(new ValueParameter<BoolValue>("ReportExecutedOperator", "Report the executed operator", new BoolValue(false)));
    6571      }
    6672      #endregion
     
    8187      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
    8288      Parameters.Add(new ValueLookupParameter<StringValue>("ExecutedOperator", "The operator that was executed."));
     89      Parameters.Add(new ValueParameter<BoolValue>("ReportExecutedOperator", "Report the executed operator", new BoolValue(false)));
    8390    }
    8491
Note: See TracChangeset for help on using the changeset viewer.