Last change
on this file since 16189 was
10830,
checked in by bburlacu, 11 years ago
|
#1772: Fixed persistence errors in the GenealogyAnalyzer and the instrumented operators, tweaked display code in the GenealogyGraphChart.
|
File size:
270 bytes
|
Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.EvolutionTracking {
|
---|
4 | public interface ICrossoverOperator<T> : IOperator where T : class,IItem {
|
---|
5 | IScopeTreeLookupParameter<T> ParentsParameter { get; }
|
---|
6 | ILookupParameter<T> ChildParameter { get; }
|
---|
7 | }
|
---|
8 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.