CoqDSC.Constants
Constants
Base constants
- literals are first-order values. They are passive. They cannot be applied. They are values.
- primitives are higher-order values. They have a dynamic behavior when they are applied. They are not values.
Inductive primitive :=
| Add : primitive
| Push : primitive
| Curry : primitive
| FixRec : primitive.
| Add : primitive
| Push : primitive
| Curry : primitive
| FixRec : primitive.
Primitives can only be replaced by other functions or other
primitives using a generic replace change (see
LambdaALOperationalSemantics.dvalue). Therefore, there is no
specific change construction for primitives here.