Example #1
0
        //Properties

        //Methods
        /// <summary>
        /// Sets State Machine internal state to its initial state
        /// </summary>
        public void Reset()
        {
            //Neural preprocessor reset
            NP.Reset(true);
            //Get rid the ReadoutLayer instance
            RL = null;
            return;
        }
Example #2
0
 /// <summary>
 /// Resets the state machine to its initial state.
 /// </summary>
 public void Reset()
 {
     //Neural preprocessor reset
     NP?.Reset();
     //ReadoutLayer reset
     RL.Reset();
     return;
 }