Last change
on this file since 17073 was
16577,
checked in by gkronber, 6 years ago
|
#2520: added missing StorableType attributes for interfaces
|
File size:
325 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HEAL.Attic;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Analysis.FitnessLandscape.DistanceCalculators {
|
---|
6 | [StorableType("79CBD877-B9E9-4CFE-B1E3-5FCF0DB17EF1")]
|
---|
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.