Changeset 18018
- Timestamp:
- 07/17/21 18:32:34 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/BalancedTreeCreator.cs
r18008 r18018 53 53 private void AfterDeserialization() { 54 54 if (!Parameters.ContainsKey(IrregularityBiasParameterName)) { 55 Parameters.Add(new FixedValueParameter<PercentValue>(IrregularityBiasParameterName, new PercentValue(0.0)));55 Parameters.Add(new FixedValueParameter<PercentValue>(IrregularityBiasParameterName, "Allows to bias tree initialization towards less balanced/regular shapes. Set to 0% for most balanced and 100% for least balanced trees. (default = 0%)", new PercentValue(0.0))); 56 56 } 57 57 }
Note: See TracChangeset
for help on using the changeset viewer.