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
Right now we store dependencies among functions via Rc and Weak pointers in Rust. This causes problems with #84: for instance, the derivatives of $\sin$ and $\cos$ depend on each other, causing a cycle that would never be freed. We can keep individual function definitions living in Rust, but we should move the graph itself into JavaScript so it can be managed by the garbage collector.
The text was updated successfully, but these errors were encountered:
Right now we store dependencies among functions via$\sin$ and $\cos$ depend on each other, causing a cycle that would never be freed. We can keep individual function definitions living in Rust, but we should move the graph itself into JavaScript so it can be managed by the garbage collector.
Rc
andWeak
pointers in Rust. This causes problems with #84: for instance, the derivatives ofThe text was updated successfully, but these errors were encountered: