Skip to content

Commit

Permalink
Add configuration to test connection strategy FixedOutdegree. (#5)
Browse files Browse the repository at this point in the history
* Create additional file for outdegree connection test.
  • Loading branch information
drodarie authored Jul 17, 2024
1 parent 40a28bf commit 51d2d48
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions bsb_test/configs/outdegree.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
required_plugins = []

tree = {
"storage": {"engine": "fs"},
"network": {"x": 150.0, "y": 150.0, "z": 150.0},
"partitions": {"all": {"type": "layer", "thickness": 150.0}},
"cell_types": {
"inhibitory": {"spatial": {"radius": 1.0, "count": 2000}},
"excitatory": {"spatial": {"radius": 1.0, "count": 2000}},
"extra": {"spatial": {"radius": 1.0, "count": 2000}},
},
"placement": {
"random": {
"strategy": "bsb.placement.RandomPlacement",
"cell_types": ["inhibitory", "excitatory", "extra"],
"partitions": ["all"],
}
},
"connectivity": {
"outdegree": {
"strategy": "bsb.connectivity.FixedOutdegree",
"outdegree": 50,
"presynaptic": {"cell_types": ["excitatory"]},
"postsynaptic": {"cell_types": ["inhibitory"]},
},
"multi_outdegree": {
"strategy": "bsb.connectivity.FixedOutdegree",
"outdegree": 50,
"presynaptic": {"cell_types": ["excitatory", "extra"]},
"postsynaptic": {"cell_types": ["inhibitory", "extra"]},
},
},
"simulations": {},
}

0 comments on commit 51d2d48

Please sign in to comment.