Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/Interfaces/IManipulatorOperator.cs @ 10347

Last change on this file since 10347 was 10347, checked in by bburlacu, 10 years ago

#1772: Small changes to the GenealogyGraph. Added generic Fragment class and interface. Added the SymbolicDataAnalysisPopulationDiversityAnalyzer. Added specialized tracking operators for symbolic data analysis. Merged trunk changes.

File size: 217 bytes
Line 
1using HeuristicLab.Core;
2
3namespace HeuristicLab.EvolutionTracking {
4  public interface IManipulatorOperator<T> : IOperator where T : class,IItem {
5    ILookupParameter<T> ChildParameter { get; set; }
6  }
7}
Note: See TracBrowser for help on using the repository browser.