Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add #[unsafe_ignore_trace] to memoization table
Using Gc for memo_table was degrading the runtime execution of some algorithms due to the garbage collector tracing the memoization table. Replacing Gc with Rc to prevent a panic caused by the macro. see: Manishearth/rust-gc#52
- Loading branch information