Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Operators/Interfaces/IDoubleValueCrossover.cs @ 17282

Last change on this file since 17282 was 16996, checked in by gkronber, 6 years ago

#2520 Update plugin dependencies and references for HL.MetaOptimization for new persistence

File size: 303 bytes
Line 
1using HeuristicLab.Optimization;
2using HeuristicLab.Core;
3using HeuristicLab.Data;
4
5namespace HeuristicLab.Problems.MetaOptimization {
6  public interface IDoubleValueCrossover : ICrossover {
7    void Apply(IRandom random, DoubleValue value, DoubleValue other, DoubleValueRange range);
8  }
9}
Note: See TracBrowser for help on using the repository browser.