Skip to content

Commit

Permalink
Merge pull request #179 from timkpaine/tkp/sym
Browse files Browse the repository at this point in the history
ensure symbolic graphs are collected
  • Loading branch information
timkpaine committed May 15, 2023
2 parents 615c935 + 8a9ac39 commit 343c826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tributary/symbolic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ def __init__(self, **kwargs):
self._lambda = lambdify(syms, expr, modules=modules)(**self._kwargs)
self._expr = expr

super(Streaming, self).__init__(node=self._lambda)
super(Streaming, self).__init__(node=self._lambda.collect())

return Streaming

0 comments on commit 343c826

Please sign in to comment.