Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Avoid declaring (ion) state variables as global, see neuronsimulator/nrn/pull/1723 #1

Merged
merged 2 commits into from
May 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@ now a macro. Update a function prototype used in a VERBATIM block.
20150219 With Michael Hines suggestion, parbush/kca.mod and
parscalebush/kca.mod updated to a derivative block compatible with
cnexp (restores original model epileptiform activity).

Changelog
---------
2022-05: Updated MOD files to compile with the latest neuron releases where
ion variables used as STATE can not be declared as GLOBAL.
2 changes: 1 addition & 1 deletion parbulbNet/cadecay.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ NEURON{
SUFFIX cad
USEION ca READ ica, cai WRITE cai
RANGE ica, channel_flow, depth, B
GLOBAL cai, tau, cainf
GLOBAL tau, cainf
}

UNITS {
Expand Down