Free cookie consent management tool by TermsFeed Policy Generator

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

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
RevLine 
[7128]1using System;
2using HeuristicLab.Core;
[16577]3using HEAL.Attic;
[7128]4
5namespace 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.