Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/20/14 15:12:27 (9 years ago)
Author:
mkommend
Message:

#2174: Adapted IEncoding and Encoding base class.

File:
1 edited

Legend:

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

    r11553 r11559  
    2222using System;
    2323using System.Collections.Generic;
     24using System.Dynamic;
    2425using System.Linq;
    2526using System.Text;
     
    3031  public interface IEncoding : INamedItem
    3132  {
     33   
    3234    ISolutionCreator DefaultSolutionCreator { get; }
     35    ISolutionCreator SolutionCreator { get; set; }
     36
     37
    3338    IEnumerable<IValueParameter> Parameters { get; }
    3439    IEnumerable<IOperator> Operators { get; }
    3540    //event EventHandler ParameterConfigurationChanged;
     41
     42    void ConfigureOperator(IOperator @operator);
     43    void ConfigureOperators(IEnumerable<IOperator> operators);   
    3644  }
    3745}
Note: See TracChangeset for help on using the changeset viewer.