Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/22/11 13:05:08 (12 years ago)
Author:
ascheibe
Message:

#1661 fixed compiler warnings and removed duplicated interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers/SymbolicExpressionTreeLengthAnalyzer.cs

    r7227 r7230  
    3737  [Item("SymbolicExpressionTreeLengthAnalyzer", "An operator that tracks tree lengths of Symbolic Expression Trees")]
    3838  [StorableClass]
    39   public sealed class SymbolicExpressionTreeLengthAnalyzer : SingleSuccessorOperator, ISymbolicExpressionTreeAnalyzer, IStatefulItem {
     39  public sealed class SymbolicExpressionTreeLengthAnalyzer : SingleSuccessorOperator, ISymbolicExpressionTreeAnalyzer {
    4040    private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
    4141    private const string MaximumSymbolicExpressionTreeLengthParameterName = "MaximumSymbolicExpressionTreeLength";
     
    128128
    129129    #region IStatefulItem members
    130     public void InitializeState() {
     130    public override void InitializeState() {
     131      base.InitializeState();
    131132      UpdateCounter.Value = 0;
    132133    }
    133     public void ClearState() {
     134    public override void ClearState() {
     135      base.ClearState();
    134136      UpdateCounter.Value = 0;
    135137    }
Note: See TracChangeset for help on using the changeset viewer.