You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compat types (https://github.com/openbraininstitute/neurodamus/blob/main/neurodamus/utils/compat.py) were designed to behavior similar to Hoc objects. It was necessary at the time when neurodamus needed to parse the legacy config file (BlueConfig parsed by a hoc parser) as well as the SONATA config file. Now with the only SONATA case, is it possible to replace them with python types?
When I tried to replace Compat.Map in #18, I notice that it is the input of the hoc function inteprete() in RNGSetting.hoc which requires a hoc Map. And Compat.List is required by ConnectionUtils.hoc.
This task is to study whether Compat.Vector can be simply replaced by a Python type, array, list or numpy array. Or is it used in a hoc function?
The text was updated successfully, but these errors were encountered:
Compat types (https://github.com/openbraininstitute/neurodamus/blob/main/neurodamus/utils/compat.py) were designed to behavior similar to Hoc objects. It was necessary at the time when neurodamus needed to parse the legacy config file (BlueConfig parsed by a hoc parser) as well as the SONATA config file. Now with the only SONATA case, is it possible to replace them with python types?
When I tried to replace
Compat.Map
in #18, I notice that it is the input of the hoc functioninteprete()
inRNGSetting.hoc
which requires a hoc Map. AndCompat.List
is required byConnectionUtils.hoc
.This task is to study whether
Compat.Vector
can be simply replaced by a Python type, array, list or numpy array. Or is it used in a hoc function?The text was updated successfully, but these errors were encountered: