SvenK
SvenK

Reputation: 2722

Optimizing FRP Systems

I have to write a paper on optimizations of Functional Reactive Programming (FRP) systems.

Here are the the references I have found so far.

Besides that, has anyone any other references or suggestions how to optimize the graphs of FRP systems?

Upvotes: 2

Views: 259

Answers (2)

sclv
sclv

Reputation: 38893

See the causal commutative arrows stuff here: http://haskell.cs.yale.edu/publications/publications-chronologically/

There's also a very nice related work section at the end of the pldi Elm paper, which gives a bunch of references one may wish to chase down: http://people.seas.harvard.edu/~chong/pubs/pldi13-elm.pdf

Upvotes: 3

Conal
Conal

Reputation: 18587

Suggestion: Don't think of FRP in terms of graphs or other concrete representations. Then imagine other possibilities such as code generation, perhaps using the GHC API or LLVM.

Upvotes: 2

Related Questions