Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/19/10 06:19:16 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on operators, engines, and optimization
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/CombinedOperator.cs

    r2830 r2834  
    2020#endregion
    2121
    22 using System.Drawing;
    2322using HeuristicLab.Collections;
    2423using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2624
    2725namespace HeuristicLab.Operators {
     
    3129  [Item("CombinedOperator", "An operator which contains an operator graph.")]
    3230  [Creatable("Test")]
    33   public sealed class CombinedOperator : AlgorithmOperator, IOperator {
     31  public sealed class CombinedOperator : AlgorithmOperator, IParameterizedItem {
    3432    public new ParameterCollection Parameters {
    3533      get {
     
    3735      }
    3836    }
    39     IObservableKeyedCollection<string, IParameter> IOperator.Parameters {
     37    IObservableKeyedCollection<string, IParameter> IParameterizedItem.Parameters {
    4038      get { return Parameters; }
    4139    }
Note: See TracChangeset for help on using the changeset viewer.