Encog.MathUtil.LIBSVM.ONE_CLASS_Q.ONE_CLASS_Q C# (CSharp) Method

ONE_CLASS_Q() private method

private ONE_CLASS_Q ( svm_problem prob, svm_parameter param ) : System
prob svm_problem
param svm_parameter
return System
        internal ONE_CLASS_Q(svm_problem prob, svm_parameter param) : base(prob.l, prob.x, param)
        {
            //UPGRADE_WARNING: Data types in Visual C# might be different.  Verify the accuracy of narrowing conversions. 'ms-help://MS.VSCC.2003/commoner/redir/redirect.htm?keyword="jlca1042_3"'
            cache = new Cache(prob.l, (int) (param.cache_size*(1 << 20)));
        }