Accord.MachineLearning.SubproblemEventArgs.SubproblemEventArgs C# (CSharp) Method

SubproblemEventArgs() public method

Initializes a new instance of the SubproblemEventArgs class.
public SubproblemEventArgs ( int class1, int class2 ) : System
class1 int One of the classes in the subproblem.
class2 int The other class in the subproblem.
return System
        public SubproblemEventArgs(int class1, int class2)
        {
            this.Class1 = class1;
            this.Class2 = class2;
        }
SubproblemEventArgs