Last change
on this file since 14049 was
5277,
checked in by cneumuel, 14 years ago
|
#1215
- implemented crossover and manipulator operators for int and double values
|
File size:
381 bytes
|
Rev | Line | |
---|
[5111] | 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 {
|
---|
[5277] | 11 | void Apply(IRandom random, IntValue value, IntValue other, IntValueRange range);
|
---|
[5111] | 12 | }
|
---|
| 13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.