001        package com.croftsoft.core.ai.neuro;
002    
003        /***********************************************************************
004        * Neuron.
005        * 
006        * @version
007        *   $Id: Neuron.java,v 1.1 2008/07/19 19:38:37 croft Exp $
008        * @since
009        *   2008-07-19
010        * @author
011        *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012        ***********************************************************************/
013    
014        public interface  Neuron
015        ////////////////////////////////////////////////////////////////////////
016        ////////////////////////////////////////////////////////////////////////
017        {
018          
019        boolean  isSpiking ( );
020          
021        ////////////////////////////////////////////////////////////////////////
022        ////////////////////////////////////////////////////////////////////////
023        }