Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/10 04:15:54 (14 years ago)
Author:
swagner
Message:

Refactored interface implementations of selectors and reducers (#931).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Selection/3.3/BestSelector.cs

    r3137 r3138  
    2020#endregion
    2121
    22 using System;
     22using System.Collections.Generic;
    2323using System.Linq;
    24 using System.Collections.Generic;
    2524using HeuristicLab.Core;
     25using HeuristicLab.Data;
     26using HeuristicLab.Optimization;
    2627using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    27 using HeuristicLab.Data;
    2828
    2929namespace HeuristicLab.Selection {
     
    3434  [StorableClass]
    3535  [Creatable("Test")]
    36   public sealed class BestSelector : SingleObjectiveSelector {
     36  public sealed class BestSelector : SingleObjectiveSelector, ISingleObjectiveSelector {
    3737    public BestSelector() : base() { }
    3838
Note: See TracChangeset for help on using the changeset viewer.