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
In practice, expressions can be nested many layers deep, and this makes clone operations expensive enough to dominate compilation time. There are different ways we could make this cheaper:
Use of Arc instead of Box
An arena approach rather than a recursive struct
The text was updated successfully, but these errors were encountered:
kalzoo
changed the title
Expression Clones are expensive
Expression clones are expensive
Aug 3, 2023
In practice, expressions can be nested many layers deep, and this makes clone operations expensive enough to dominate compilation time. There are different ways we could make this cheaper:
Arc
instead ofBox
The text was updated successfully, but these errors were encountered: