Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/10 15:49:22 (14 years ago)
Author:
gkronber
Message:

Implemented views for DataAnalysisProblems and DataAnalysisSolutions. #938 (Data types and operators for regression problems)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/VariableTreeNode.cs

    r3376 r3442  
    5656    public VariableTreeNode(Variable variableSymbol) : base(variableSymbol) { }
    5757
     58    public override bool HasLocalParameters {
     59      get {
     60        return true;
     61      }
     62    }
     63
    5864    public override void ResetLocalParameters(IRandom random) {
    5965      base.ResetLocalParameters(random);
     
    6874      return new VariableTreeNode(this);
    6975    }
     76
     77    public override string ToString() {
     78      return weight.ToString("E5") + " * " + variableName;
     79    }
    7080  }
    7181}
Note: See TracChangeset for help on using the changeset viewer.