You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm coming across a lot of code during the review (see #29) that includes extra blank lines. I've been removing a lot if it as I go through the code, but It would be good to make a pass through and clean this up all at once. In general, this is undesirable because it limits the amount of code that can be seen on the screen at once time without adding any additional readability.
Here's an example from NeuronModel.js:
// Delay between the values in the HH model to the concentration readouts.// This is needed to make sure that the concentration readouts don't// change before visible potassium or sodium ions have crossed the//membrane.varCONCENTRATION_READOUT_DELAY=0.001;// In seconds of sim time.// Thresholds for determining whether an action potential should be// considered to be in progress. These values relate to the rate of flow// through the gated sodium, gated potassium, and combination of the// sodium and potassium leakage. If the values from the HH model exceed// any of these, and action potential is considered to be in progress.// The values were determined empirically, and different HH models may// require different values here.varPOTASSIUM_CURRENT_THRESH_FOR_ACTION_POTENTIAL=0.001;varSODIUM_CURRENT_THRESH_FOR_ACTION_POTENTIAL=0.001;varLEAKAGE_CURRENT_THRESH_FOR_ACTION_POTENTIAL=0.444;// Rates at which concentration changes during action potential. These
The text was updated successfully, but these errors were encountered:
I'm coming across a lot of code during the review (see #29) that includes extra blank lines. I've been removing a lot if it as I go through the code, but It would be good to make a pass through and clean this up all at once. In general, this is undesirable because it limits the amount of code that can be seen on the screen at once time without adding any additional readability.
Here's an example from NeuronModel.js:
The text was updated successfully, but these errors were encountered: