-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06ce9c7
commit d5df041
Showing
8 changed files
with
80 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#pragma once | ||
|
||
extern int nrnmusic; | ||
|
||
extern "C" { | ||
|
||
// Note: MPI_Comm nrnmusic_comm; in nrnmpi.cpp and nrnmusic.cpp | ||
|
||
extern void nrnmusic_runtime_phase(); | ||
extern void nrnmusic_injectlist(void*, double); | ||
extern void nrnmusic_init(int* parg, char*** pargv); | ||
extern void nrnmusic_terminate(); | ||
|
||
} // end of extern "C" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#pragma once | ||
|
||
// Some things in netpar.cpp that were static but needed by nrnmusic.cpp | ||
|
||
#include "netcon.h" | ||
#include <unordered_map> | ||
struct Symbol; | ||
|
||
using Gid2PreSyn = std::unordered_map<int, PreSyn*>; | ||
|
||
double nrn_usable_mindelay(); | ||
Symbol* nrn_netcon_sym(); | ||
Gid2PreSyn& nrn_gid2out(); |
This file contains 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