Skip to content
Open
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
2 changes: 1 addition & 1 deletion pyNN/neuron/nmodl/gif.mod
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ ENDVERBATIM
: independent of nhost or which host this instance is on
: is desired, since each instance on this cpu draws from
: the same stream
value = scop_random(1)
value = scop_random()
VERBATIM
}
ENDVERBATIM
Expand Down
2 changes: 1 addition & 1 deletion pyNN/neuron/nmodl/quantal_stp.mod
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ VERBATIM
return value;
} else {
ENDVERBATIM
value = scop_random(1)
value = scop_random()
VERBATIM
}
ENDVERBATIM
Expand Down
2 changes: 1 addition & 1 deletion pyNN/neuron/nmodl/stochastic_synapse.mod
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ VERBATIM
return value;
} else {
ENDVERBATIM
value = scop_random(1)
value = scop_random()
VERBATIM
}
ENDVERBATIM
Expand Down
2 changes: 1 addition & 1 deletion pyNN/neuron/nmodl/stochastic_tsodyksmarkram.mod
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ VERBATIM
return value;
} else {
ENDVERBATIM
value = scop_random(1)
value = scop_random()
VERBATIM
}
ENDVERBATIM
Expand Down
6 changes: 3 additions & 3 deletions pyNN/neuron/nmodl/vecstim.mod
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ NET_RECEIVE (w) {


VERBATIM
extern double* vector_vec();
extern int vector_capacity();
extern void* vector_arg();
extern double* vector_vec(void *);
extern int vector_capacity(void *);
extern void* vector_arg(int);
ENDVERBATIM

PROCEDURE element() {
Expand Down