You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Mathemathics/HistogramMode.cs

18 lines
349 B

namespace ZeroLevel.Mathemathics
{
public enum HistogramMode
{
/// <summary>
/// 1 + 3.2 * Ln(LinksCount)
/// </summary>
SQRT,
/// <summary>
/// Sqrt(LinksCount)
/// </summary>
LOG,
/// <summary>
/// Direct count
/// </summary>
COUNTS
}
}

Powered by TurnKey Linux.