Changeset 14251 for branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interfaces
- Timestamp:
- 08/10/16 20:10:25 (8 years ago)
- Location:
- branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interfaces
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interfaces/IVariableSymbol.cs
r14238 r14251 24 24 25 25 /// <summary> 26 /// Any symbol that references a variable 26 /// Any symbol that references a variable (includes terminal as well as non-terminal symbols) 27 27 /// </summary> 28 28 public interface IVariableSymbol : ISymbol { 29 29 } 30 31 /// <summary>32 /// Any tree node that references a variable33 /// </summary>34 public interface IVariableTreeNode : ISymbolicExpressionTreeNode {35 string VariableName { get; }36 }37 30 }
Note: See TracChangeset
for help on using the changeset viewer.