wasBayesSharp – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Collections.Generic;
2  
3 namespace BayesSharp.Combiners
4 {
5 public interface ICombiner
6 {
7 /// <summary>
8 /// Combine a list of numbers
9 /// </summary>
10 /// <param name="numbers">List of numbers to be combined</param>
11 double Combine(IEnumerable<double> numbers);
12 }
13 }