Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/05/16 17:34:16 (8 years ago)
Author:
gkronber
Message:

#2650:

  • added weight for FactorVariable (necessary for LR)
  • introduced VariableBase and VariableTreeNodeBase and IVariableSymbol
  • support for factors in LR
  • extended variable impacts in solution view
  • fixed ERC view for regression
  • support for FactorVariable in simplifier
  • improved support for FactorVariable in constants optimizer
  • multiple related changes and small fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Symbols/VariableView.cs

    r14185 r14238  
    3535  [View("Variable View")]
    3636  [Content(typeof(Variable), true)]
     37  [Content(typeof(FactorVariable), true)]
    3738  public partial class VariableView : SymbolView {
    3839    private CheckedItemCollectionView<StringValue> variableNamesView;
    3940
    40     public new Variable Content {
    41       get { return (Variable)base.Content; }
     41    public new VariableBase Content {
     42      get { return (VariableBase)base.Content; }
    4243      set { base.Content = value; }
    4344    }
Note: See TracChangeset for help on using the changeset viewer.