Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoming0625 committed Jul 8, 2024
1 parent 5366b0c commit 7a2146d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pip install dendritex --upgrade

## Documentation

The official documentation is hosted on Read the Docs: [https://dendritex.readthedocs.io](https://dendritex.readthedocs.io)
The official documentation is hosted on Read the Docs: [https://dendrite.readthedocs.io](https://dendrite.readthedocs.io)



Expand Down
2 changes: 1 addition & 1 deletion dendritex/neurons/hh.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def update(self, x=0.):

# integrate the membrane potential
V = self.V.value + self.derivative(self.V.value, bst.environ.get('t'), x) * bst.environ.get_dt()
V += self.sum_delta_inputs(init=bu.Quantity(0., dim=bu.get_dim(V)))
V = self.sum_delta_inputs(init=V)

# integrate dynamics of ion and ion channels
for node in channels.values():
Expand Down

0 comments on commit 7a2146d

Please sign in to comment.