liquidhaskell-0.8.2.0: tests/todo/T1109.hs
-- | Unification for simple terms a la Zombie
-- | cite : http://www.seas.upenn.edu/~sweirich/papers/congruence-extended.pdf
-- RJ: for some odd reason, this file NEEDs cuts/qualifiers. It is tickled by
-- nonlinear-cuts (i.e. they add new cut vars that require qualifiers.) why?
-- where? switch off non-lin-cuts in higher-order mode?
{-@ LIQUID "--higherorder" @-}
{-@ LIQUID "--exact-data-cons" @-}
{-@ LIQUID "--eliminate=all" @-}
{-@ LIQUID "--automatic-instances=liquidinstanceslocal" @-}
module Unify where
import Language.Haskell.Liquid.ProofCombinators
import qualified Data.Set as S
-- | Data Types
data Term = TBot | TVar Int | TFun Term Term
deriving (Eq)
{-@ data Term [tsize] = TBot | TVar {tvar :: Int} | TFun {tfun1 :: Term, tfun2 :: Term} @-}
type Substitution = L (P Int Term)
data P a b = P a b
{-@ data P a b = P {pfst :: a, psnd :: b} @-}
-- | Unification
-- | If unification succeds then the returned substitution makes input terms equal
-- | Unification may fail with Nothing, or diverge
{-@ lazy unify @-}
{-@ unify :: t1:Term -> t2:Term
-> Maybe {θ:Substitution | apply θ t1 == apply θ t2 } @-}
unify :: Term -> Term -> Maybe Substitution
unify TBot TBot
= Just Emp
unify t1@(TVar i) t2
| not (S.member i (freeVars t2))
= Just (C (P i t2) Emp `byTheorem` theoremVar t2 i)
unify t1 t2@(TVar i)
| not (S.member i (freeVars t1))
= Just (C (P i t1) Emp `byTheorem` theoremVar t1 i)
unify (TFun t11 t12) (TFun t21 t22)
= case unify t11 t21 of
Just θ1 -> case unify (apply θ1 t12) (apply θ1 t22) of
Just θ2 -> Just (append θ2 θ1 `byTheorem` theoremFun t11 t12 t21 t22 θ1 θ2)
Nothing -> Nothing
_ -> Nothing
unify t1 t2
= Nothing
-- | Helper Functions
{-@ measure freeVars @-}
freeVars :: Term -> S.Set Int
freeVars TBot = S.empty
freeVars (TFun t1 t2) = S.union (freeVars t1) (freeVars t2)
freeVars (TVar i) = S.singleton i
{-@ axiomatize apply @-}
apply :: Substitution -> Term -> Term
apply Emp t
= t
apply (C s ss) t
= applyOne s (apply ss t)
{-@ axiomatize applyOne @-}
applyOne :: (P Int Term) -> Term -> Term
applyOne su (TFun tx t)
= TFun (applyOne su tx) (applyOne su t)
applyOne (P x t) (TVar v) | x == v
= t
applyOne _ t
= t
-- | Proving the required theorems
{-@ automatic-instances theoremFun @-}
theoremFun :: Term -> Term -> Term -> Term -> Substitution -> Substitution -> Proof
{-@ theoremFun
:: t11:Term
-> t12:Term
-> t21:Term
-> t22:Term
-> s1:{θ1:Substitution | apply θ1 t11 == apply θ1 t21 }
-> s2:{θ2:Substitution | apply θ2 (apply s1 t12) == apply θ2 (apply s1 t22) }
-> { apply (append s2 s1) (TFun t11 t12) ==
apply (append s2 s1) (TFun t21 t22) }
@-}
theoremFun t11 t12 t21 t22 θ1 θ2
= split_fun t11 t12 (append θ2 θ1)
&&& append_apply θ2 θ1 t11
&&& append_apply θ2 θ1 t12
&&& append_apply θ2 θ1 t21
&&& append_apply θ2 θ1 t22
&&& split_fun t21 t22 (append θ2 θ1)
{-@ automatic-instances split_fun @-}
split_fun :: Term -> Term -> Substitution -> Proof
{-@ split_fun :: t1:Term -> t2:Term -> θ:Substitution
-> {apply θ (TFun t1 t2) == TFun (apply θ t1) (apply θ t2)} / [llen θ] @-}
{-
HACK: the above spe creates the rewrite rule
apply θ (TFun t1 t2) -> TFun (apply θ t1) (apply θ t2)
If I change the order of the equality to
TFun (apply θ t1) (apply θ t2) == apply θ (TFun t1 t2)
then Liquid Haskell will not auto prove it
-}
split_fun t1 t2 Emp
= trivial
split_fun t1 t2 (C su θ)
= split_fun t1 t2 θ -- &&& (applyOne su (TFun (apply θ t1) (apply θ t2)) *** QED) -- THIS
{-@ automatic-instances append_apply @-}
append_apply :: Substitution -> Substitution -> Term -> Proof
{-@ append_apply
:: θ1:Substitution
-> θ2:Substitution
-> t :Term
-> {apply θ1 (apply θ2 t) == apply (append θ1 θ2) t}
@-}
append_apply Emp θ2 t
= trivial
append_apply (C su θ) θ2 t
= append_apply θ θ2 t -- &&& append_len θ θ2
{-@ automatic-instances append_len @-}
{-@ append_len :: s1:Substitution -> s2:Substitution -> {llen (append s1 s2) == llen s1 + llen s2 } @-}
append_len :: Substitution -> Substitution -> Proof
append_len Emp _ = trivial
append_len (C _ s1) s2 = append_len s1 s2
{-@ automatic-instances append_len @-}
{-@ automatic-instances theoremVar @-}
{-@ theoremVar :: t:Term
-> i:{Int | not (Set_mem i (freeVars t)) }
-> {apply (C (P i t) Emp) (TVar i) == apply (C (P i t) Emp) t } @-}
theoremVar :: Term -> Int ->Proof
theoremVar t i
= theoremVarOne t i t
{-@ automatic-instances theoremVarOne @-}
{-@ theoremVarOne :: tiger:Term
-> i:{Int | not (Set_mem i (freeVars tiger)) }
-> ti:Term
-> { applyOne (P i ti) tiger == tiger } @-}
theoremVarOne :: Term -> Int -> Term -> Proof
theoremVarOne (TFun t1 t2) ink tonk
= theoremVarOne t1 ink tonk
-- | Helpers to lift Terms and Lists into logic...
-- | With some engineering all these can be automated...
-- | Lifting Terms into logic
{-@ measure tsize @-}
tsize :: Term -> Int
{-@ invariant {t:Term | tsize t >= 0 } @-}
-- NV TODO: something goes wrong with measure invariants
{-@ tsize :: Term -> Int @-}
tsize TBot = 0
tsize (TVar _) = 0
tsize (TFun t1 t2) = 1 + (tsize t1) + (tsize t2)
-- | List Helpers
{-@ axiomatize append @-}
{-@ append :: xs:L a -> ys:L a -> {v:L a | llen v == llen xs + llen ys } @-}
append :: L a -> L a -> L a
append Emp ys = ys
append (C x xs) ys = C x (append xs ys)
data L a = Emp | C a (L a)
{-@ data L [llen] a = Emp | C {lhd :: a, ltl :: L a} @-}
{-@ measure llen @-}
llen :: L a -> Int
{-@ llen :: L a -> Nat @-}
llen Emp = 0
llen (C _ xs) = 1 + llen xs