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
Specifically, the semantics must avoid redundant computation of shared dependencies. For example, if we had two inputs, a and b, and returned two values, a + b - a and a + b - b, a + b must be computed exactly once.
The text was updated successfully, but these errors were encountered:
This would be greatly simplified by #29. By-need evaluation means that a graph with multiple returns has a product return type, and we only compute the fields which we project out of it.
Specifically, the semantics must avoid redundant computation of shared dependencies. For example, if we had two inputs, a and b, and returned two values, a + b - a and a + b - b, a + b must be computed exactly once.
The text was updated successfully, but these errors were encountered: