Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/14 13:05:14 (9 years ago)
Author:
mkommend
Message:

#2174: Configured solution creator in single encodings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Interfaces/IEncoding.cs

    r11559 r11582  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    24 using System.Dynamic;
    25 using System.Linq;
    26 using System.Text;
    2723using HeuristicLab.Core;
    2824using HeuristicLab.Optimization;
    2925
    3026namespace HeuristicLab.Problems.Programmable {
    31   public interface IEncoding : INamedItem
    32   {
    33    
    34     ISolutionCreator DefaultSolutionCreator { get; }
     27  public interface IEncoding : INamedItem {
    3528    ISolutionCreator SolutionCreator { get; set; }
    36 
    3729
    3830    IEnumerable<IValueParameter> Parameters { get; }
     
    4133
    4234    void ConfigureOperator(IOperator @operator);
    43     void ConfigureOperators(IEnumerable<IOperator> operators);   
     35    void ConfigureOperators(IEnumerable<IOperator> operators);
    4436  }
    4537}
Note: See TracChangeset for help on using the changeset viewer.