Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/08/16 13:00:06 (8 years ago)
Author:
gkronber
Message:

#2650: renamed FactorVariable -> BinaryFactorVariable

File:
1 moved

Legend:

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

    r14242 r14243  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2524using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2625using HeuristicLab.Random;
    2726namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
    2827  [StorableClass]
    29   public class FactorVariableTreeNode : VariableTreeNodeBase {
    30     public new FactorVariable Symbol {
    31       get { return (FactorVariable)base.Symbol; }
     28  public class BinaryFactorVariableTreeNode : VariableTreeNodeBase {
     29    public new BinaryFactorVariable Symbol {
     30      get { return (BinaryFactorVariable)base.Symbol; }
    3231    }
    3332
     
    4039
    4140    [StorableConstructor]
    42     protected FactorVariableTreeNode(bool deserializing) : base(deserializing) { }
    43     protected FactorVariableTreeNode(FactorVariableTreeNode original, Cloner cloner)
     41    protected BinaryFactorVariableTreeNode(bool deserializing) : base(deserializing) { }
     42    protected BinaryFactorVariableTreeNode(BinaryFactorVariableTreeNode original, Cloner cloner)
    4443      : base(original, cloner) {
    4544      variableValue = original.variableValue;
    4645    }
    47     protected FactorVariableTreeNode() { }
    48     public FactorVariableTreeNode(FactorVariable variableSymbol) : base(variableSymbol) { }
     46    protected BinaryFactorVariableTreeNode() { }
     47    public BinaryFactorVariableTreeNode(BinaryFactorVariable variableSymbol) : base(variableSymbol) { }
    4948
    5049    public override bool HasLocalParameters {
     
    7372
    7473    public override IDeepCloneable Clone(Cloner cloner) {
    75       return new FactorVariableTreeNode(this, cloner);
     74      return new BinaryFactorVariableTreeNode(this, cloner);
    7675    }
    7776
Note: See TracChangeset for help on using the changeset viewer.