Skip to content

Commit d4862bb

Browse files
accompanying files
1 parent 4c59470 commit d4862bb

File tree

5 files changed

+113
-0
lines changed

5 files changed

+113
-0
lines changed

tests/netid.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"netid": {
3+
"cells": {
4+
"cellid1": {
5+
"neuroml2_source_file": "nnn"
6+
},
7+
"cellid2": {
8+
"neuroml2_source_file": "nnn2"
9+
}
10+
},
11+
"synapses": {
12+
"syn0": {
13+
"tested": true
14+
},
15+
"syn1": {
16+
"neuroml2_source_file": "xx"
17+
}
18+
},
19+
"stable": false,
20+
"parameters": {
21+
"size": 3,
22+
"name": null
23+
},
24+
"random_connectivity": {
25+
"probability": 0.01
26+
},
27+
"ee0": "str",
28+
"ee1": {
29+
"a": 2
30+
},
31+
"ee2": 1,
32+
"ee3": 1.1,
33+
"ee4": true,
34+
"ee5": [
35+
1,
36+
2
37+
]
38+
}
39+
}

tests/netid.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" ?>
2+
<modelspec>
3+
<netid>
4+
<cells>
5+
<cellid1>
6+
<neuroml2_source_file>nnn</neuroml2_source_file>
7+
</cellid1>
8+
<cellid2>
9+
<neuroml2_source_file>nnn2</neuroml2_source_file>
10+
</cellid2>
11+
</cells>
12+
<synapses>
13+
<syn0>
14+
<tested>True</tested>
15+
</syn0>
16+
<syn1>
17+
<neuroml2_source_file>xx</neuroml2_source_file>
18+
</syn1>
19+
</synapses>
20+
<stable>False</stable>
21+
<parameters>
22+
<size>3</size>
23+
<name>None</name>
24+
</parameters>
25+
<random_connectivity>
26+
<probability>0.01</probability>
27+
</random_connectivity>
28+
<ee0>str</ee0>
29+
<ee1>
30+
<a>2</a>
31+
</ee1>
32+
<ee2>1</ee2>
33+
<ee3>1.1</ee3>
34+
<ee4>True</ee4>
35+
<ee5>1</ee5>
36+
<ee5>2</ee5>
37+
</netid>
38+
</modelspec>

tests/netid.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
netid:
2+
cells:
3+
cellid1:
4+
neuroml2_source_file: nnn
5+
cellid2:
6+
neuroml2_source_file: nnn2
7+
synapses:
8+
syn0:
9+
tested: true
10+
syn1:
11+
neuroml2_source_file: xx
12+
stable: false
13+
parameters:
14+
size: 3
15+
name: null
16+
random_connectivity:
17+
probability: 0.01
18+
ee0: str
19+
ee1:
20+
a: 2
21+
ee2: 1
22+
ee3: 1.1
23+
ee4: true
24+
ee5:
25+
- 1
26+
- 2

tests/test_array.bson

421 Bytes
Binary file not shown.

tests/test_array.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" ?>
2+
<modelspec>
3+
<array>[[0, 1, 2], [3, 4, 5], [6, 7, 8]]</array>
4+
<array>[[9, 10, 11], [12, 13, 14], [15, 16, 17]]</array>
5+
<array>[[18, 19, 20], [21, 22, 23], [24, 25, 26]]</array>
6+
<list_of_lists>[1, 2]</list_of_lists>
7+
<list_of_lists>[3, 4]</list_of_lists>
8+
<ragged_list>[1, 2]</ragged_list>
9+
<ragged_list>[1]</ragged_list>
10+
</modelspec>

0 commit comments

Comments
 (0)