Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbor
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arbor-sim
arbor
Commits
d06ac6ce
Unverified
Commit
d06ac6ce
authored
4 years ago
by
thorstenhater
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix pybind11 issues. (#1248)
* Fix pybind11 issues. * Retract suspicious fix. * Address comments.
parent
3e8155eb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/schedule.hpp
+1
-0
1 addition, 0 deletions
python/schedule.hpp
python/simulation.cpp
+1
-1
1 addition, 1 deletion
python/simulation.cpp
with
2 additions
and
1 deletion
python/schedule.hpp
+
1
−
0
View file @
d06ac6ce
...
...
@@ -18,6 +18,7 @@ struct schedule_shim_base {
schedule_shim_base
()
=
default
;
schedule_shim_base
(
const
schedule_shim_base
&
)
=
delete
;
schedule_shim_base
&
operator
=
(
schedule_shim_base
&
)
=
delete
;
virtual
~
schedule_shim_base
()
{}
virtual
arb
::
schedule
schedule
()
const
=
0
;
};
...
...
This diff is collapsed.
Click to expand it.
python/simulation.cpp
+
1
−
1
View file @
d06ac6ce
...
...
@@ -107,7 +107,7 @@ public:
}
py
::
object
spikes
()
const
{
return
py
::
array_t
<
arb
::
spike
>
(
{
spike_record_
.
size
()
}
,
spike_record_
.
data
());
return
py
::
array_t
<
arb
::
spike
>
(
py
::
ssize_t
(
spike_record_
.
size
()
)
,
spike_record_
.
data
());
}
py
::
list
get_probe_metadata
(
arb
::
cell_member_type
probe_id
)
const
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment