Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/01/13 15:26:40 (11 years ago)
Author:
abeham
Message:

#1833: changed parameter collection for runs, so that the "checked" information is available.

File:
1 edited

Legend:

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

    r9456 r9838  
    2020#endregion
    2121
     22using System;
     23using System.Collections.Generic;
    2224using HeuristicLab.Collections;
    2325using HeuristicLab.Common;
     
    2527using HeuristicLab.Parameters;
    2628using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    27 using System;
    28 using System.Collections.Generic;
    2929
    3030namespace HeuristicLab.Operators {
     
    3636  public abstract class MultiOperator<T> : SingleSuccessorOperator, IMultiOperator<T> where T : class, IOperator {
    3737    private List<IValueParameter<T>> operatorParameters;
     38    protected IEnumerable<IValueParameter<T>> OperatorParameters { get { return operatorParameters; } }
    3839
    3940    [Storable]
Note: See TracChangeset for help on using the changeset viewer.