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
Currently, some RV's _print_names contain the abbreviated version of the random variable Op rather than its full name, e.g. Normal, Cauchy, etc. When it come to displaying them in Graphviz, we resort to its class name via some_op.__class__.__name__, which, to my understanding, is a bit hackish. A solution would look like the following:
Currently, some RV's
_print_name
s contain the abbreviated version of the random variable Op rather than its full name, e.g. Normal, Cauchy, etc. When it come to displaying them in Graphviz, we resort to its class name viasome_op.__class__.__name__
, which, to my understanding, is a bit hackish. A solution would look like the following:In particular, with the newly added
SymbolicRV
s, this could be helpful (see WIP PR #6149).CC @ricardoV94 @michaelosthege
The text was updated successfully, but these errors were encountered: