Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/25/10 06:35:43 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on algorithms
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Permutation/3.3/IPermutationCrossover.cs

    r2862 r2865  
    2121
    2222using HeuristicLab.Core;
    23 using HeuristicLab.Data;
    2423using HeuristicLab.Optimization;
    2524
     
    2827  /// An interface which represents an operator for crossing permutations.
    2928  /// </summary>
    30   public interface IPermutationCrossoverOperator : ICrossoverOperator { }
     29  public interface IPermutationCrossover : IPermutationOperator, ICrossover {
     30    ILookupParameter<ItemArray<Permutation>> ParentsParameter { get; }
     31    ILookupParameter<Permutation> ChildParameter { get; }
     32  }
    3133}
Note: See TracChangeset for help on using the changeset viewer.