Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IVector.cs @ 17403

Last change on this file since 17403 was 17403, checked in by pfleck, 4 years ago

#3040 Added fix for non-numeric class labels

File size: 396 bytes
Line 
1using System.Collections;
2using System.Collections.Generic;
3using HEAL.Attic;
4
5namespace HeuristicLab.Problems.DataAnalysis {
6  [StorableType("E6B5D191-F094-4A6C-91C1-011191C13A16")]
7  public interface IVector : IEnumerable {
8    int Count { get; }
9  }
10
11  [StorableType("FAAFAE70-9240-49FF-9614-EE4A2C17A3C7")]
12  public interface IVector<out T> : IVector, IReadOnlyList<T> {
13  }
14}
Note: See TracBrowser for help on using the repository browser.