Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DistanceCalculators/IItemDistanceCalculator.cs @ 16577

Last change on this file since 16577 was 16577, checked in by gkronber, 5 years ago

#2520: added missing StorableType attributes for interfaces

File size: 325 bytes
Line 
1using System;
2using HeuristicLab.Core;
3using HEAL.Attic;
4
5namespace 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.