Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VOSGA/HeuristicLab.Algorithms.VOffspringSelectionGeneticAlgorithm/ISubScopesQualityComparatorOperator.cs @ 11884

Last change on this file since 11884 was 11516, checked in by ascheibe, 9 years ago

#2267 added new subscopes comparer

File size: 594 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Data;
3using HeuristicLab.Optimization;
4using HeuristicLab.Parameters;
5
6namespace 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.