This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Description
The OneclassSupportVectorLearning class exposes a Shrinking property, which it does not actually use during optimization.
This code block in the `Learn' method is the offender:
var s = new FanChenLinQuadraticOptimization(alpha.Length, Q, zeros, ones)
{
Tolerance = eps,
Shrinking = true, // <-- SHRINKING PROPERTY SHOULD BE USED HERE
Solution = alpha
};
bool success = s.Minimize();