Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Operators/Interfaces/IIntValueCrossover.cs @ 5664

Last change on this file since 5664 was 5277, checked in by cneumuel, 14 years ago

#1215

  • implemented crossover and manipulator operators for int and double values
File size: 381 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Optimization;
6using HeuristicLab.Core;
7using HeuristicLab.Data;
8
9namespace HeuristicLab.Problems.MetaOptimization {
10  public interface IIntValueCrossover : ICrossover {
11    void Apply(IRandom random, IntValue value, IntValue other, IntValueRange range);
12  }
13}
Note: See TracBrowser for help on using the repository browser.