I was making a neuron project on Python.
In a previous post, I asked how I could make the neurons fire to each other. I used my Dad's account for that post, but I and only I asked that question. I put all accounts with my name on it :|
If you haven't, please read the last post.
The circuit was successful. I made a new class called "Muscle", that flexes when receiving a signal from a neuron.
But there is a big flaw: When I fire two neurons, say N1 and N2, that are connected to another neuron, N3, then N3 wouldn't sum up the signals it received by both N1 and N2. Instead, N3 does them separately, in different times.
How could I overcome that problem?