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
Speed up access to species counts and concentrations: eliminate lookups, extra objects and memory allocation/deallocation
For maximum speed, don't use Python's eval() -- convert expressions into trees, & use an evaluator that can process operators, literals, and Python functions
Before doing 2., estimate how much it would improve performance
The text was updated successfully, but these errors were encountered:
eval()
-- convert expressions into trees, & use an evaluator that can process operators, literals, and Python functionsThe text was updated successfully, but these errors were encountered: