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
There is not a very good reason to use Model instead of ModelRaw for the python bindings (at pyo.rs).
Drawback: getParameter would be O(n) (or better, whatever find is) instead of O(1), but that can be solved easily, if needed (not really, the usual number of parameters in SBML documents do not justify the use of a more complex data structure in this case).
Advantage: using ModelRaw would allow for adding writing capabilities to the python API.
Advantage: less String allocations.
The text was updated successfully, but these errors were encountered:
There is not a very good reason to use Model instead of ModelRaw for the python bindings (at pyo.rs).
getParameter
would be O(n) (or better, whatever find is) instead of O(1), but that can be solved easily, if needed (not really, the usual number of parameters in SBML documents do not justify the use of a more complex data structure in this case).ModelRaw
would allow for adding writing capabilities to the python API.String
allocations.The text was updated successfully, but these errors were encountered: