Exemplo n.º 1
0
		void IBrainMatter.Init( Brain b )
		{
			Init( b, b.DefaultSynapse );
		}
Exemplo n.º 2
0
		void Init( Brain b, Synapse _default )
		{
			brain = b;
			if( _default == null )
			{
				_gain = 1024;
			}
			else
			{
				Synapse s = _default;
				_gain = s._gain;
			}
			this._cycle = 0;
		}