Changeset 15068 for trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers
- Timestamp:
- 06/27/17 10:06:34 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers/SymbolicExpressionTreeLengthAnalyzer.cs
r14185 r15068 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.