Last change
on this file since 17460 was
16577,
checked in by gkronber, 6 years ago
|
#2520: added missing StorableType attributes for interfaces
|
File size:
325 bytes
|
Rev | Line | |
---|
[7128] | 1 | using System;
|
---|
| 2 | using HeuristicLab.Core;
|
---|
[16577] | 3 | using HEAL.Attic;
|
---|
[7128] | 4 |
|
---|
| 5 | namespace HeuristicLab.Analysis.FitnessLandscape.DistanceCalculators {
|
---|
[16577] | 6 | [StorableType("79CBD877-B9E9-4CFE-B1E3-5FCF0DB17EF1")]
|
---|
[7128] | 7 | public interface IItemDistanceCalculator : IItem {
|
---|
| 8 | Type ItemType { get; }
|
---|
| 9 | double Distance(IItem a, IItem b);
|
---|
| 10 | }
|
---|
| 11 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.