Changeset 17604 for branches/3040_VectorBasedGP/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Timestamp:
- 06/17/20 11:23:37 (5 years ago)
- Location:
- branches/3040_VectorBasedGP/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3040_VectorBasedGP/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeNode.cs
r17180 r17604 33 33 bool HasLocalParameters { get; } 34 34 35 // Can be null for "unknown" 36 Type DataType { get; } 37 35 38 int GetDepth(); 36 39 int GetLength(); -
branches/3040_VectorBasedGP/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/SymbolicExpressionTreeNode.cs
r17180 r17604 96 96 } 97 97 98 public virtual Type DataType { 99 get { return null; } 100 } 101 98 102 public virtual IEnumerable<ISymbolicExpressionTreeNode> Subtrees { 99 103 get { return subtrees; }
Note: See TracChangeset
for help on using the changeset viewer.