Last change
on this file since 13459 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
323 bytes
|
Rev | Line | |
---|
[7128] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Core;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Analysis.FitnessLandscape.DistanceCalculators {
|
---|
| 8 | public interface IItemDistanceCalculator : IItem {
|
---|
| 9 | Type ItemType { get; }
|
---|
| 10 | double Distance(IItem a, IItem b);
|
---|
| 11 | }
|
---|
| 12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.