Encog.App.Analyst.Wizard.AnalystWizard.DetermineClassification C# (CSharp) Method

DetermineClassification() private method

Determine the type of classification used.
private DetermineClassification ( ) : void
return void
        private void DetermineClassification()
        {
            _directClassification = false;

            if ((_methodType == WizardMethodType.SVM)
                || (_methodType == WizardMethodType.SOM))
            {
                _directClassification = true;
            }
        }