Changeset 15351 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers
- Timestamp:
- 09/06/17 20:51:26 (7 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Property svn:mergeinfo changed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers/SymbolicExpressionTreeLengthAnalyzer.cs
r14312 r15351 185 185 186 186 treeLengthsTableRow.VisualProperties.ChartType = DataRowVisualProperties.DataRowChartType.Histogram; 187 treeLengthsTable Row.VisualProperties.ExactBins = false;187 treeLengthsTable.VisualProperties.HistogramExactBins = false; 188 188 189 189 int range = maxLength - minLength; 190 190 if (range == 0) range = 1; 191 191 // the following trick should result in an integer intervalWidth of 1,2,4,... 192 treeLengthsTable Row.VisualProperties.Bins = range;192 treeLengthsTable.VisualProperties.HistogramBins = range; 193 193 194 194 if (maxLength <= 25) // [0,25]
Note: See TracChangeset
for help on using the changeset viewer.