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
Early on we established a pattern of always returning tuples from RandomVariables. This has proven rather unergonomic, and results in many instances of code like x[0].value, when we could instead have x.value if we did not return a singleton tuple.
The text was updated successfully, but these errors were encountered:
Early on we established a pattern of always returning tuples from
RandomVariable
s. This has proven rather unergonomic, and results in many instances of code likex[0].value
, when we could instead havex.value
if we did not return a singleton tuple.The text was updated successfully, but these errors were encountered: