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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Optimization;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 | using HeuristicLab.Data;
|
---|
8 |
|
---|
9 | namespace 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.