This repository was archived by the owner on Mar 25, 2025. It is now read-only.
Implement simplified expsyn.#1238
Merged
Merged
Conversation
This comment has been minimized.
This comment has been minimized.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1238 +/- ##
==========================================
- Coverage 86.67% 86.40% -0.27%
==========================================
Files 176 176
Lines 13166 13213 +47
==========================================
+ Hits 11411 11417 +6
- Misses 1755 1796 +41 ☔ View full report in Codecov by Sentry. |
This comment has been minimized.
This comment has been minimized.
JCGoran
reviewed
May 6, 2024
Instead of setting the conductance as: g = g + g0 * exp(-(t - t0)/tau) we set it to g += g0 where `g0` is the argument passed to NET_RECEIVE, i.e. the weight. This allows for an analytic solution, that can be tested.
JCGoran
approved these changes
May 7, 2024
Collaborator
|
Logfiles from GitLab pipeline #209730 (:white_check_mark:) have been uploaded here! Status and direct links: |
JCGoran
pushed a commit
to neuronsimulator/nrn
that referenced
this pull request
Mar 12, 2025
Instead of setting the conductance as: g = g + g0 * exp(-(t - t0)/tau) we set it to g += g0 where `g0` is the argument passed to NET_RECEIVE, i.e. the weight. This allows for an analytic solution, that can be tested. NMODL Repo SHA: BlueBrain/nmodl@ada65df
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Instead of setting the conductance as:
we set it to
where
g0is the argument passed to NET_RECEIVE, i.e. the weight.This allows for an analytic solution, that can be tested.