Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/11 14:23:26 (13 years ago)
Author:
mkommend
Message:

#1418: Added symbolic data analysis problems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/ProbabilisticTreeCreator.cs

    r5549 r5618  
    3333  [StorableClass]
    3434  [Item("ProbabilisticTreeCreator", "An operator that creates new symbolic expression trees with uniformly distributed length")]
    35   public sealed class ProbabilisticTreeCreator : SymbolicExpressionTreeCreator,
     35  public class ProbabilisticTreeCreator : SymbolicExpressionTreeCreator,
    3636    ISymbolicExpressionTreeSizeConstraintOperator, ISymbolicExpressionTreeGrammarBasedOperator, ISymbolicExpressionTreeArchitectureAlteringOperator {
    3737    private const int MAX_TRIES = 100;
     
    7777
    7878    [StorableConstructor]
    79     private ProbabilisticTreeCreator(bool deserializing) : base(deserializing) { }
    80     private ProbabilisticTreeCreator(ProbabilisticTreeCreator original, Cloner cloner) : base(original, cloner) { }
     79    protected ProbabilisticTreeCreator(bool deserializing) : base(deserializing) { }
     80    protected ProbabilisticTreeCreator(ProbabilisticTreeCreator original, Cloner cloner) : base(original, cloner) { }
    8181    public ProbabilisticTreeCreator()
    8282      : base() {
Note: See TracChangeset for help on using the changeset viewer.