CoqDSC.ILambdaAL
Base terms
Grammar
Definition cache := list (var * option cache_var).
Definition cache_update := list (var * option cache_var).
Definition cache_update := list (var * option cache_var).
The type for base terms.
- "IResult (x, C)" represents "\((x, C)\)".
- "IDef f x t" represents "\({\bf let }\; y, c^{y}_{f x} = f\, x \;{\bf in }\; t\)".
- "IDefTuple [x₁; ...; xₙ]" represents "\({\bf let }\; y = (x₁, ..., xₙ) \;{\bf in }\; t\)".
Inductive term :=
| IResult : var -> cache -> term
| IDef : var -> var -> term -> term
| IDefTuple : list var -> term -> term.
| IResult : var -> cache -> term
| IDef : var -> var -> term -> term
| IDefTuple : list var -> term -> term.
Definition call f xs := IDef f xs (IResult (Idx O) (cons (Idx 0, Some (Cache (Idx 0) f xs)) nil)).
Notation "@#( f , x )" := (call f x).
Definition tuple xs := IDefTuple xs (IResult (Idx O) (cons (Idx 0, None) nil)).
The type of change terms. (Figure 1 in paper.)
- "dIResult x dC" represents "\(dx, dC\)".
- "dIDef f x dM" represents "\({\bf let}\; dy, c^{y}_{f x} = df\, x\, dx {\bf in}\; dM\)".
- "dIDefTuple [dx₁; ...; dxₙ] dM" represents "\({\bf let}\; dy = (dx₁, ..., dxₙ) {\bf in}\; dM\)".