Changeset 18114 for branches/3140_NumberSymbol/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Timestamp:
- 12/13/21 10:25:35 (3 years ago)
- Location:
- branches/3140_NumberSymbol/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3140_NumberSymbol/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNodeSimilarityComparer.cs
r16565 r18114 6 6 [StorableType("c4de8ab2-616d-4c73-9f9c-59545ac38199")] 7 7 public interface ISymbolicExpressionTreeNodeSimilarityComparer : IEqualityComparer<ISymbolicExpressionTreeNode>, IItem { 8 bool Match ConstantValues { get; set; }8 bool MatchParameterValues { get; set; } 9 9 bool MatchVariableWeights { get; set; } 10 10 bool MatchVariableNames { get; set; } -
branches/3140_NumberSymbol/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Manipulators/FullTreeShaker.cs
r17180 r18114 47 47 public FullTreeShaker() 48 48 : base() { 49 Parameters.Add(new FixedValueParameter<DoubleValue>(ShakingFactorParameterName, "The shaking factor that should be used for the manipulation of constants (default=1.0).", new DoubleValue(1.0)));49 Parameters.Add(new FixedValueParameter<DoubleValue>(ShakingFactorParameterName, "The shaking factor that should be used for the manipulation of parameters (default=1.0).", new DoubleValue(1.0))); 50 50 } 51 51 -
branches/3140_NumberSymbol/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Manipulators/OnePointShaker.cs
r17180 r18114 49 49 public OnePointShaker() 50 50 : base() { 51 Parameters.Add(new FixedValueParameter<DoubleValue>(ShakingFactorParameterName, "The shaking factor that should be used for the manipulation of constants (default=1.0).", new DoubleValue(1.0)));51 Parameters.Add(new FixedValueParameter<DoubleValue>(ShakingFactorParameterName, "The shaking factor that should be used for the manipulation of parameters (default=1.0).", new DoubleValue(1.0))); 52 52 } 53 53
Note: See TracChangeset
for help on using the changeset viewer.