Skip to content

Commit

Permalink
erase p in the subst0
Browse files Browse the repository at this point in the history
  • Loading branch information
liesnikov committed Jan 19, 2024
1 parent cc2a596 commit a838a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Haskell/Prelude.agda
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ lookup x [] = Nothing
lookup x ((x₁ , y) ∷ xs) = if x == x₁ then Just y else lookup x xs


subst0 : (p : @0 a Set) {@0 x y : a} @0 x ≡ y p x p y
subst0 : (@0 p : @0 a Set) {@0 x y : a} @0 x ≡ y p x p y
subst0 p refl z = z
{-# COMPILE AGDA2HS subst0 transparent #-}

Expand Down

0 comments on commit a838a8c

Please sign in to comment.