2018-09-10 03:56:32 +00:00
|
|
|
|
using BotSharp.Algorithm.Statistics;
|
|
|
|
|
|
using System;
|
2018-09-09 15:32:10 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-09-10 03:56:32 +00:00
|
|
|
|
namespace BotSharp.Algorithm.Estimators
|
2018-09-09 15:32:10 +00:00
|
|
|
|
{
|
2018-09-10 03:56:32 +00:00
|
|
|
|
public interface IEstimator
|
2018-09-09 15:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
|
double Prob(List<Probability> dist, string sample);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|