using System; namespace Science.Mathematics.SpecialFunction { /// /// Combinatorial /// public class Combinatorial { public Combinatorial() { } /* public static double BernoulliB(double x) { return x; } public static double ClebschGordan(double x) { return x; } public static double EulerE(double x) { return x; } public static double Fibonacci(double x) { return x; } public static double HarmonicNumber(double x) { return x; } public static double PartitionsP(double x) { return x; } public static double PartitionsQ(double x) { return x; } public static double Signature(double x) { return x; } public static double SixJSymbol(double x) { return x; } public static double StirlingS1(double x) { return x; } public static double StirlingS2(double x) { return x; } public static double ThreeJSymbol(double x) { return x; } */ } }