Changeset 3623 for trunk/sources
- Timestamp:
- 05/05/10 03:48:35 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Analysis/3.3
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj
r3618 r3623 87 87 <Compile Include="BestAverageWorstQualityCalculator.cs" /> 88 88 <Compile Include="BestQualityMemorizer.cs" /> 89 <Compile Include="PopulationQualityAnalyzer.cs" /> 90 <Compile Include="PopulationValueAnalyzer.cs" /> 91 <Compile Include="MinAverageMaxValueCalculator.cs" /> 92 <Compile Include="PopulationMinAverageMaxValueAnalyzer.cs" /> 93 <Compile Include="SolutionValueAnalyzer.cs" /> 94 <Compile Include="SolutionQualityAnalyzer.cs" /> 89 95 <Compile Include="MultiAnalyzer.cs" /> 90 96 <Compile Include="PopulationBestAverageWorstQualityAnalyzer.cs" /> -
trunk/sources/HeuristicLab.Analysis/3.3/PopulationBestAverageWorstQualityAnalyzer.cs
r3618 r3623 57 57 get { return (ValueLookupParameter<DoubleValue>)Parameters["CurrentWorstQuality"]; } 58 58 } 59 public ValueLookupParameter<DataTable> QualitiesParameter { 60 get { return (ValueLookupParameter<DataTable>)Parameters["Qualities"]; } 61 } 59 62 public ValueLookupParameter<DoubleValue> AbsoluteDifferenceBestKnownToBestParameter { 60 63 get { return (ValueLookupParameter<DoubleValue>)Parameters["AbsoluteDifferenceBestKnownToBest"]; } … … 84 87 Parameters.Add(new ValueLookupParameter<DoubleValue>("CurrentAverageQuality", "The average quality value of all solutions in the current population.")); 85 88 Parameters.Add(new ValueLookupParameter<DoubleValue>("CurrentWorstQuality", "The worst quality value found in the current population.")); 89 Parameters.Add(new ValueLookupParameter<DataTable>("Qualities", "The data table to store the current best, current average, current worst, best and best known quality value.")); 86 90 Parameters.Add(new ValueLookupParameter<DoubleValue>("AbsoluteDifferenceBestKnownToBest", "The absolute difference of the best known quality value to the best quality value.")); 87 91 Parameters.Add(new ValueLookupParameter<PercentValue>("RelativeDifferenceBestKnownToBest", "The relative difference of the best known quality value to the best quality value.")); 88 Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The variable collection where results should be stored."));92 Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The results collection where the analysis values should be stored.")); 89 93 #endregion 90 94
Note: See TracChangeset
for help on using the changeset viewer.