- Timestamp:
- 02/21/11 16:33:35 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/VariableConditionTreeNode.cs
r5467 r5524 88 88 89 89 public override string ToString() { 90 return variableName + " > " + threshold.ToString("E4") + Environment.NewLine +91 "slope: " + slope.ToString("E4");90 string thresholdString = threshold > 0 ? "+" + threshold.ToString("E4") : threshold.ToString("E4"); 91 return "Sigmoid " + "(" + slope.ToString("E4") + ", " + variableName + thresholdString + ")"; 92 92 } 93 93 }
Note: See TracChangeset
for help on using the changeset viewer.