Skip to content

Commit

Permalink
Make some contr args more implicit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ailrun committed Jan 22, 2024
1 parent f62b48d commit 84e70d1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions theories/Core/Semantic/PER.v
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ Definition per_top_typ : relation domain := fun a b => (forall s, exists C, {{ R
Inductive per_nat : relation domain :=
| per_nat_zero : {{ Dom zero ≈ zero ∈ per_nat }}
| per_nat_succ :
`( {{ Dom m ≈ n ∈ per_nat }} ->
{{ Dom succ m ≈ succ n ∈ per_nat }} )
`{ {{ Dom m ≈ n ∈ per_nat }} ->
{{ Dom succ m ≈ succ n ∈ per_nat }} }
| per_nat_neut :
`( {{ Dom m ≈ n ∈ per_bot }} ->
{{ Dom ⇑ ℕ m ≈ ⇑ ℕ n ∈ per_nat }} )
`{ {{ Dom m ≈ n ∈ per_bot }} ->
{{ Dom ⇑ ℕ m ≈ ⇑ ℕ n ∈ per_nat }} }
.

Inductive per_ne : relation domain :=
| per_ne_neut :
`( {{ Dom m ≈ n ∈ per_bot }} ->
{{ Dom ⇑ a m ≈ ⇑ a' n ∈ per_ne }} )
`{ {{ Dom m ≈ n ∈ per_bot }} ->
{{ Dom ⇑ a m ≈ ⇑ a' n ∈ per_ne }} }
.

Module Per_univ_def.
Expand Down

0 comments on commit 84e70d1

Please sign in to comment.