Skip to content

Commit 8c121ce

Browse files
authored
Merge pull request #1425 from ucsd-progsys/T1420
add smallstep notes
2 parents e557f2f + 6b60810 commit 8c121ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

include/Language/Haskell/Liquid/Equational.hs

+3-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ _ `eq` x = x
4242

4343
infixl 3 ?
4444

45-
(?) :: a -> Proof -> a
45+
{-@ (?) :: forall a b <pa :: a -> Bool, pb :: b -> Bool>. a<pa> -> b<pb> -> a<pa> @-}
46+
(?) :: a -> b -> a
4647
x ? _ = x
4748
{-# INLINE (?) #-}
4849

@@ -51,4 +52,4 @@ x ? _ = x
5152
-------------------------------------------------------------------------------
5253

5354
withTheorem :: a -> Proof -> a
54-
withTheorem z _ = z
55+
withTheorem z _ = z

0 commit comments

Comments
 (0)