Esempio n. 1
0
    // Get Current Best Output
    public int GetCurrentEpochBestOutput(float[] InputArray)
    {
        if (_Epoch_Current == null)
        {
            return(-1);
        }

        return(_Epoch_Current.GetBestOutput(InputArray));
    }