Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | using HeuristicLab.Optimization;
|
---|
4 | using HeuristicLab.Parameters;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Algorithms.VOffspringSelectionGeneticAlgorithm {
|
---|
7 | public interface ISubScopesQualityComparatorOperator : ISubScopesQualityComparator, IOperator {
|
---|
8 | //TODO: the ISubScopesQualityComparator interface should be fixed:
|
---|
9 | // * add IOperator as base interface
|
---|
10 | // * don't call it QualityComparator because it could also compare solutions by diversity
|
---|
11 |
|
---|
12 |
|
---|
13 | ValueLookupParameter<DoubleValue> ComparisonFactorParameter { get; }
|
---|
14 | }
|
---|
15 |
|
---|
16 | }
|
---|
17 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.