mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 13:33:13 +00:00
fuzzy
This commit is contained in:
16
Esiur.Analysis/Fuzzy/INumericalSet.cs
Normal file
16
Esiur.Analysis/Fuzzy/INumericalSet.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Esiur.Analysis.Fuzzy
|
||||
{
|
||||
public interface INumericalSet<T>
|
||||
{
|
||||
public T this[T index] { get; }
|
||||
public double AlphaCut { get; set; }
|
||||
|
||||
public INumericalSet<T> Intersection(INumericalSet<T> with);
|
||||
public INumericalSet<T> Union(INumericalSet<T> with);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user