A general-purpose Incremental Computation (IC) library for Rust.
Based on:
The paper Incremental Computation with Names, 2015.
A prior OCaml implementation.
The library exposes a small core interface.
See the Adapton
trait.
The library implements this interface with an imperative data structure.
See AdaptonState
.
See also: Incremental Computation with Names, 2015.
Rust macros provide syntactic sugar.
See adapton_syntax
.
Testing:
Lazy Evaluation (simple, pure caching).
Function Caching:
Structural Adapton:
Nominal Adapton:
Incremental Data Structures and Algorithms.
<_ as structures::ListT<A, _>>::List == _
[E0284]ArtId::Structural
for cell and thunk to do hashing internally, not externally.http://users.rust-lang.org/t/trait-objects-with-associated-types/746/16?u=matthewhammer
The concept of "object safety" seems to bite me a lot in naive designs:
src/adapton_impl.rs:653:51: 653:111 error: cannot convert to a trait object because trait `adapton_impl::Producer` is not object-safe [E0038]
...
src/adapton_impl.rs:653:51: 653:111 note: method `eq` references the `Self` type in its arguments or return type
I sidestepped this problem in adapton_state.rs
twice: by writing Producer::copy
and the ShapeShifter
trait. Both avoid returning a Self
.
Rc<Box<Fn (_) -> _>>
instead of Rc<Fn (_) -> _>
? (Why?)