lean4-htt/tests
Leonardo de Moura 30a6a2ade8 feat(library/init/data, runtime): remove parray support from runtime, and implement them in Lean using Scala/Clojure Radix trees
The Scala/Clojure approach for persistent arrays works great with our
`reset/reuse`. We seem to be much more efficient than their
implementations because of `reset/reuse`. The new approach also seems
better than the old one implemented in the runtime, and has a few
advantages:
1- The reroot procedure used in the old approach required
synchronization for multi-threaded code, or we would need to perform
deep copies when sending `parray` objects between threads.
2- We don't need any runtime extension for the new approach.
3- The old approach used "trail lists" for undoing array updates.
This works well for bactracking search use cases, but it is bad
in use cases where we are simultaneously updating the persistent
arrays that have shared nodes.
2019-06-02 09:18:19 -07:00
..
bench chore(tests/bench): further tweak Swift support 2019-05-31 10:48:50 +02:00
compiler feat(library/init/data/array/basic): efficient heterogeneous Array.map 2019-05-25 16:32:59 -07:00
ir chore(tests): port tests, fix at least compiler tests 2019-03-21 15:11:05 -07:00
lean chore(tests/lean/run/rc_tests): fix test 2019-05-22 18:46:30 -07:00
playground feat(library/init/data, runtime): remove parray support from runtime, and implement them in Lean using Scala/Clojure Radix trees 2019-06-02 09:18:19 -07:00