using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BotSharp.Algorithm.HiddenMarkovModel.MathUtils { public class Constants { /// Maximum log on the machine. public const double LogMax = 7.09782712893383996732E2; /// Square root of 2: sqrt(2). public const double Sqrt2 = 1.4142135623730950488016887; /// Square root of twice number pi: sqrt(2*π). public const double Sqrt2PI = 2.50662827463100050242E0; /// Log of number pi: log(pi). public const double LogPI = 1.14472988584940017414; } }