bricks-0.0.0.4: Bricks is a lazy functional language based on Nix.

Safe HaskellNone
LanguageHaskell2010

Bricks.Evaluation

Description

This module lets you evaluate Bricks expressions. First expression'to'terms converts the abstract syntax tree (Expression) into an enriched version of the lambda calculus (Term). Then we perform graph reduction, repeatedly applying simplifications until we arrive at an irreducible term.

When we substitute an argument into a lambda body to perform beta-conversion, we do so by substituting a Pointer of the argument rather than the term itself. This gives rise to sharing, thus turning the tree into a general graph, and helps avoid reducing the same expression more than once.

The Implementation of Functional Programming Languages

The design of Bricks evaluation is in large part based on Simon Peyton Jones's 1987 book The Implementation of Functional Programming Languages. In attempt to keep the Bricks API documentation mostly self-contained, we avoid making frequent references to this work throughout. Instead, here we give a list of some important connections to the book:

  • The rationale for immediately converting the AST into another data structure rather than performing any transformations directly on the AST comes from page 38.
  • A Bricks function defined using a dict pattern turns into a "pattern-matching lambda abstraction"; this term is introduced on page 61.
  • Page 185 introduces the style of drawing ASTs to which the /@\ operator alludes.
  • Pointer substitution is described on page 208.
  • The implementation of term'substitute closely follows the description of Instantiate, page 210.
  • Page 20 introduces the name capture problem. Pages 199 and 210 discuss how we avoid it by only reducing the top-level redex, which has no free variables.
  • On page 233 starts the discussion of how letrec expressions are instantiated as cyclic graphcs.

Synopsis

Documentation

newtype Eval a Source #

Constructors

Eval 

Fields

Instances

Monad Eval Source # 

Methods

(>>=) :: Eval a -> (a -> Eval b) -> Eval b #

(>>) :: Eval a -> Eval b -> Eval b #

return :: a -> Eval a #

fail :: String -> Eval a #

Functor Eval Source # 

Methods

fmap :: (a -> b) -> Eval a -> Eval b #

(<$) :: a -> Eval b -> Eval a #

Applicative Eval Source # 

Methods

pure :: a -> Eval a #

(<*>) :: Eval (a -> b) -> Eval a -> Eval b #

liftA2 :: (a -> b -> c) -> Eval a -> Eval b -> Eval c #

(*>) :: Eval a -> Eval b -> Eval b #

(<*) :: Eval a -> Eval b -> Eval a #

MonadIO Eval Source # 

Methods

liftIO :: IO a -> Eval a #

MonadEval Eval Source # 
MonadError Bottom Eval Source # 

Methods

throwError :: Bottom -> Eval a #

catchError :: Eval a -> (Bottom -> Eval a) -> Eval a #

instantiate'one Source #

Arguments

:: MonadEval m 
=> Text

var - Variable name

-> Term

value - The argument being substituted. We assume that this term has no free variables; or else we will suffer the name capture problem.

-> Term

body - The term being copied ("instantiated")

-> m Term 

instantiate var value body produces a copy of the term body, substituting value for free occurrences of var.

instantiate'many Source #

Arguments

:: MonadEval m 
=> Map Text Term
values
-> Term
body
-> m Term