Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add more tests #96

Merged
merged 37 commits into from
Jul 15, 2020
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
1e25e2a
Add more tests
alkino Jun 17, 2020
eb2a1f4
Add inverted times
alkino Jun 17, 2020
b803812
First tests for Element report
alkino Jun 17, 2020
563bdda
Throw on error
alkino Jun 22, 2020
19e660a
Fix python for nonstd::nullopt_t
alkino Jun 22, 2020
3c2aa2c
clang-format
alkino Jun 22, 2020
5057ff9
Throw SonataError and uint32_t => ElementId
alkino Jun 23, 2020
c20e5ad
ElementId => ElementID
alkino Jun 23, 2020
037ad05
Add get_nodes_ids
alkino Jun 24, 2020
9a22658
clang format
alkino Jun 24, 2020
06b2342
typo in c++ tests
alkino Jun 24, 2020
8f9c421
Use optional in SpikesReader
alkino Jun 24, 2020
036f71e
Add limits tests for ElementReportReader
alkino Jun 24, 2020
d276dbf
Simplify bindings of SpikeReader with optional
alkino Jun 24, 2020
e7fdeaf
Fix tests
alkino Jun 24, 2020
72b5516
Minor fix and testing data in python
alkino Jul 1, 2020
3de6b12
Merge remote-tracking branch 'origin/master'
alkino Jul 1, 2020
e6bb7dd
Fix merge
alkino Jul 1, 2020
1f371f2
Fix fix merge
alkino Jul 6, 2020
8797372
fix docstring
alkino Jul 6, 2020
d1ec4a9
Regenerate them
alkino Jul 6, 2020
e976447
Fix out of range node ids
alkino Jul 7, 2020
860a096
clang-format and docstring
alkino Jul 8, 2020
8ff79ce
Allow tstart == tstop
alkino Jul 8, 2020
80e3675
Return empty dataframe if [] as input
alkino Jul 8, 2020
273d22e
clang format
alkino Jul 8, 2020
9432da7
Blindfix of this
alkino Jul 9, 2020
5b949a6
node_ids=[] return empty for Spikes too
alkino Jul 9, 2020
58d348c
Put ElementID in common.h
alkino Jul 9, 2020
3068308
constify
alkino Jul 9, 2020
f443d13
Empty instead of throw if id out of range
alkino Jul 9, 2020
f0d9848
Fix test where tstart == tstop
alkino Jul 10, 2020
982ed5c
Rename get_population_names()
Jul 14, 2020
2a336e7
Clang format
Jul 14, 2020
927f4c1
Expose Report data as Numpy (#99)
alkino Jul 14, 2020
309cecf
Merge branch 'master' into add_tests
ferdonline Jul 14, 2020
68e6ada
Add a test to be sure that data are not destroyed
alkino Jul 15, 2020
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
1 change: 1 addition & 0 deletions include/bbp/sonata/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ SONATA_API const std::string version();

using NodeID = uint64_t;
using EdgeID = uint64_t;
using ElementID = uint32_t;

class SONATA_API SonataError: public std::runtime_error
{
Expand Down
Loading