Skip to content
Snippets Groups Projects
Commit 7a5af5ed authored by Max Ole Elliger's avatar Max Ole Elliger :penguin:
Browse files

added v_inl v_inr as cbv-values

parent 26982a14
Branches
Tags
1 merge request!1Draft: Resolve "Introduce coproducts and maybe"
......@@ -19,6 +19,14 @@ Inductive value : form -> Prop :=
value t ->
value s ->
value (f_pair t s)
| v_inl : forall t,
is_term t ->
value t ->
value (f_inl t)
| v_inr : forall t,
is_term t ->
value t ->
value (f_inr t)
| v_func :
forall x t,
is_term t ->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment