jukebox-0.1: Jukebox/Form.hs
-- Formulae, inputs, terms and so on.
--
-- "Show" instances for several of these types are found in TPTP.Print.
{-# LANGUAGE DeriveDataTypeable, FlexibleContexts, Rank2Types, GADTs, TypeOperators, ScopedTypeVariables, BangPatterns, PatternGuards #-}
module Jukebox.Form where
import Prelude hiding (sequence, mapM)
import qualified Jukebox.Seq as S
import Jukebox.Seq(Seq)
import Data.Hashable
import qualified Jukebox.Map as Map
import Jukebox.NameMap(NameMap)
import qualified Jukebox.NameMap as NameMap
import Data.Ord
import qualified Data.ByteString.Char8 as BS
import Jukebox.Name
import Control.Monad.State.Strict hiding (sequence, mapM)
import Data.List hiding (nub)
import Jukebox.Utils
import Data.Typeable(Typeable)
import Data.Monoid
import Data.Traversable
-- Set to True to switch on some sanity checks
debugging :: Bool
debugging = False
----------------------------------------------------------------------
-- Types
data DomainSize = Finite Int | Infinite deriving (Eq, Ord, Show, Typeable)
data Type =
O
| Type {
tname :: {-# UNPACK #-} !Name,
-- type is monotone when domain size is >= tmonotone
tmonotone :: DomainSize,
-- if there is a model of size >= tsize then there is a model of size tsize
tsize :: DomainSize } deriving Typeable
data FunType = FunType { args :: [Type], res :: Type } deriving (Eq, Typeable)
-- Helper function for defining (Eq, Ord, Hashable) instances
typeMaybeName :: Type -> Maybe Name
typeMaybeName O = Nothing
typeMaybeName Type{tname = t} = Just t
instance Eq Type where
t1 == t2 = typeMaybeName t1 == typeMaybeName t2
instance Ord Type where
compare = comparing typeMaybeName
instance Hashable Type where
hashWithSalt s = hashWithSalt s . typeMaybeName
instance Named Type where
name O = nameO
name Type{tname = t} = t
-- Typeclass of "things that have a type"
class Typed a where
typ :: a -> Type
instance Typed Type where
typ = id
instance Typed FunType where
typ = res
instance Typed b => Typed (a ::: b) where
typ (_ ::: t) = typ t
----------------------------------------------------------------------
-- Terms
type Variable = Name ::: Type
type Function = Name ::: FunType
data Term = Var Variable | Function :@: [Term] deriving (Eq, Ord)
instance Hashable Term where
hashWithSalt s = hashWithSalt s . convert
where convert (Var x) = Left x
convert (f :@: ts) = Right (f, ts)
instance Named Term where
name (Var x) = name x
name (f :@: _) = name f
instance Typed Term where
typ (Var x) = typ x
typ (f :@: _) = typ f
newSymbol :: Named a => a -> b -> NameM (Name ::: b)
newSymbol x ty = fmap (::: ty) (newName x)
newFunction :: Named a => a -> [Type] -> Type -> NameM Function
newFunction x args res = newSymbol x (FunType args res)
newType :: Named a => a -> NameM Type
newType x = do
n <- newName x
return (Type n Infinite Infinite)
funArgs :: Function -> [Type]
funArgs (_ ::: ty) = args ty
arity :: Function -> Int
arity = length . funArgs
size :: Term -> Int
size Var{} = 1
size (f :@: xs) = 1 + sum (map size xs)
----------------------------------------------------------------------
-- Literals
infix 8 :=:
data Atomic = Term :=: Term | Tru Term
-- Helper for (Eq Atomic, Ord Atomic, Hashable Atomic) instances
normAtomic :: Atomic -> Either (Term, Term) Term
normAtomic (t1 :=: t2) | t1 > t2 = Left (t2, t1)
| otherwise = Left (t1, t2)
normAtomic (Tru p) = Right p
instance Eq Atomic where
t1 == t2 = normAtomic t1 == normAtomic t2
instance Ord Atomic where
compare = comparing normAtomic
instance Hashable Atomic where
hashWithSalt s = hashWithSalt s . normAtomic
data Signed a = Pos a | Neg a deriving (Show, Eq, Ord)
instance Hashable a => Hashable (Signed a) where
hashWithSalt s = hashWithSalt s . convert
where convert (Pos x) = Left x
convert (Neg x) = Right x
instance Functor Signed where
fmap f (Pos x) = Pos (f x)
fmap f (Neg x) = Neg (f x)
type Literal = Signed Atomic
neg :: Signed a -> Signed a
neg (Pos x) = Neg x
neg (Neg x) = Pos x
the :: Signed a -> a
the (Pos x) = x
the (Neg x) = x
pos :: Signed a -> Bool
pos (Pos _) = True
pos (Neg _) = False
signForm :: Signed a -> Form -> Form
signForm (Pos _) f = f
signForm (Neg _) f = Not f
----------------------------------------------------------------------
-- Formulae
-- Invariant: each name is bound only once on each path
-- i.e. nested quantification of the same variable twice is not allowed
-- Not OK: ![X]: (... ![X]: ...)
-- OK: (![X]: ...) & (![X]: ...)
-- Free variables must also not be bound inside subformulae
data Form
= Literal Literal
| Not Form
| And (Seq Form)
| Or (Seq Form)
| Equiv Form Form
| ForAll {-# UNPACK #-} !(Bind Form)
| Exists {-# UNPACK #-} !(Bind Form)
-- Just exists so that parsing followed by pretty-printing is
-- somewhat lossless; the simplify function will get rid of it
| Connective Connective Form Form
-- Miscellaneous connectives that exist in TPTP
data Connective = Implies | Follows | Xor | Nor | Nand
connective :: Connective -> Form -> Form -> Form
connective Implies t u = nt t \/ u
connective Follows t u = t \/ nt u
connective Xor t u = nt (t `Equiv` u)
connective Nor t u = nt (t \/ u)
connective Nand t u = nt (t /\ u)
data Bind a = Bind (NameMap Variable) a
true, false :: Form
true = And S.Nil
false = Or S.Nil
isTrue, isFalse :: Form -> Bool
isTrue (And S.Nil) = True
isTrue _ = False
isFalse (Or S.Nil) = True
isFalse _ = False
nt :: Form -> Form
nt (Not a) = a
nt a = Not a
(.=>.) :: Form -> Form -> Form
(.=>.) = connective Implies
(.=.) :: Term -> Term -> Form
t .=. u | typ t == O = Literal (Pos (Tru t)) `Equiv` Literal (Pos (Tru u))
| otherwise = Literal (Pos (t :=: u))
(/\), (\/) :: Form -> Form -> Form
And as /\ And bs = And (as `S.append` bs)
a /\ b | isFalse a || isFalse b = false
And as /\ b = And (b `S.cons` as)
a /\ And bs = And (a `S.cons` bs)
a /\ b = And (S.Unit a `S.append` S.Unit b)
Or as \/ Or bs = Or (as `S.append` bs)
a \/ b | isTrue a || isTrue b = true
Or as \/ b = Or (b `S.cons` as)
a \/ Or bs = Or (a `S.cons` bs)
a \/ b = Or (S.Unit a `S.append` S.Unit b)
closeForm :: Form -> Form
closeForm f | Map.null vars = f
| otherwise = ForAll (Bind vars f)
where vars = free f
conj, disj :: S.List f => f Form -> Form
conj = And . S.fromList
disj = Or . S.fromList
-- remove Not from the root of a problem
positive :: Form -> Form
positive (Not f) = notInwards f
-- Some connectives are fairly not-ish
positive (Connective c t u) = positive (connective c t u)
positive f = f
notInwards :: Form -> Form
notInwards (And as) = Or (fmap notInwards as)
notInwards (Or as) = And (fmap notInwards as)
notInwards (a `Equiv` b) = notInwards a `Equiv` b
notInwards (Not a) = positive a
notInwards (ForAll (Bind vs a)) = Exists (Bind vs (notInwards a))
notInwards (Exists (Bind vs a)) = ForAll (Bind vs (notInwards a))
notInwards (Literal l) = Literal (neg l)
notInwards (Connective c t u) = notInwards (connective c t u)
-- remove Exists and Or from the top level of a formula
simple :: Form -> Form
simple (Or as) = Not (And (fmap nt as))
simple (Exists (Bind vs a)) = Not (ForAll (Bind vs (nt a)))
simple (Connective c t u) = simple (connective c t u)
simple a = a
-- perform some easy algebraic simplifications
simplify t@Literal{} = t
simplify (Connective c t u) = simplify (connective c t u)
simplify (Not t) = simplify (notInwards t)
simplify (And ts) = S.fold (/\) id true (fmap simplify ts)
simplify (Or ts) = S.fold (\/) id false (fmap simplify ts)
simplify (Equiv t u) = equiv (simplify t) (simplify u)
where equiv t u | isTrue t = u
| isTrue u = t
| isFalse t = nt u
| isFalse u = nt t
| otherwise = Equiv t u
simplify (ForAll (Bind vs t)) = forAll vs (simplify t)
where forAll vs t | Map.null vs = t
forAll vs (ForAll (Bind vs' t)) = ForAll (Bind (Map.union vs vs') t)
forAll vs t = ForAll (Bind vs t)
simplify (Exists (Bind vs t)) = exists vs (simplify t)
where exists vs t | Map.null vs = t
exists vs (Exists (Bind vs' t)) = Exists (Bind (Map.union vs vs') t)
exists vs t = Exists (Bind vs t)
----------------------------------------------------------------------
-- Clauses
type CNF = Closed Obligs
data Obligs = Obligs {
axioms :: [Input Clause],
conjectures :: [[Input Clause]],
satisfiable :: String,
unsatisfiable :: String
}
toObligs :: [Input Clause] -> [[Input Clause]] -> Obligs
toObligs axioms [] = Obligs axioms [[]] "Satisfiable" "Unsatisfiable"
toObligs axioms [conjecture] = Obligs axioms [conjecture] "CounterSatisfiable" "Theorem"
toObligs axioms conjectures = Obligs axioms conjectures "GaveUp" "Theorem"
newtype Clause = Clause (Bind [Literal])
clause :: S.List f => f (Signed Atomic) -> Clause
clause xs = Clause (bind (S.toList xs))
toForm :: Clause -> Form
toForm (Clause (Bind vs ls)) = ForAll (Bind vs (Or (S.fromList (map Literal ls))))
toLiterals :: Clause -> [Literal]
toLiterals (Clause (Bind _ ls)) = ls
----------------------------------------------------------------------
-- Problems
type Tag = BS.ByteString
data Kind = Axiom | Conjecture | Question deriving (Eq, Ord)
data Answer = Satisfiable | Unsatisfiable | NoAnswer NoAnswerReason
deriving (Eq, Ord)
instance Show Answer where
show Satisfiable = "Satisfiable"
show Unsatisfiable = "Unsatisfiable"
show (NoAnswer x) = show x
data NoAnswerReason = GaveUp | Timeout deriving (Eq, Ord, Show)
data Input a = Input
{ tag :: Tag,
kind :: Kind,
what :: a }
type Problem a = Closed [Input a]
instance Functor Input where
fmap f x = x { what = f (what x) }
----------------------------------------------------------------------
-- Symbolic stuff
-- A universe of types with typecase
data TypeOf a where
Form :: TypeOf Form
Clause_ :: TypeOf Clause
Term :: TypeOf Term
Atomic :: TypeOf Atomic
Signed :: (Symbolic a, Symbolic (Signed a)) => TypeOf (Signed a)
Bind_ :: (Symbolic a, Symbolic (Bind a)) => TypeOf (Bind a)
List :: (Symbolic a, Symbolic [a]) => TypeOf [a]
Seq :: (Symbolic a, Symbolic (Seq a)) => TypeOf (Seq a)
Input_ :: (Symbolic a, Symbolic (Input a)) => TypeOf (Input a)
Obligs_ :: TypeOf Obligs
class Symbolic a where
typeOf :: a -> TypeOf a
instance Symbolic Form where typeOf _ = Form
instance Symbolic Clause where typeOf _ = Clause_
instance Symbolic Term where typeOf _ = Term
instance Symbolic Atomic where typeOf _ = Atomic
instance Symbolic a => Symbolic (Signed a) where typeOf _ = Signed
instance Symbolic a => Symbolic (Bind a) where typeOf _ = Bind_
instance Symbolic a => Symbolic [a] where typeOf _ = List
instance Symbolic a => Symbolic (Seq a) where typeOf _ = Seq
instance Symbolic a => Symbolic (Input a) where typeOf _ = Input_
instance Symbolic Obligs where typeOf _ = Obligs_
-- Generic representations of values.
data Rep a where
Const :: !a -> Rep a
Unary :: Symbolic a => (a -> b) -> a -> Rep b
Binary :: (Symbolic a, Symbolic b) => (a -> b -> c) -> a -> b -> Rep c
-- This inline declaration is crucial so that
-- pattern-matching on a rep degenerates into typecase.
{-# INLINE rep #-}
rep :: Symbolic a => a -> Rep a
rep x =
case typeOf x of
Form -> rep' x
Clause_ -> rep' x
Term -> rep' x
Atomic -> rep' x
Signed -> rep' x
Bind_ -> rep' x
List -> rep' x
Seq -> rep' x
Input_ -> rep' x
Obligs_ -> rep' x
-- Implementation of rep for all types
class Unpack a where
rep' :: a -> Rep a
instance Unpack Form where
rep' (Literal l) = Unary Literal l
rep' (Not t) = Unary Not t
rep' (And ts) = Unary And ts
rep' (Or ts) = Unary Or ts
rep' (Equiv t u) = Binary Equiv t u
rep' (ForAll b) = Unary ForAll b
rep' (Exists b) = Unary Exists b
rep' (Connective c t u) = Binary (Connective c) t u
instance Unpack Clause where
rep' (Clause ls) = Unary Clause ls
instance Unpack Term where
rep' t@Var{} = Const t
rep' (f :@: ts) = Unary (f :@:) ts
instance Unpack Atomic where
rep' (t :=: u) = Binary (:=:) t u
rep' (Tru p) = Unary Tru p
instance Symbolic a => Unpack (Signed a) where
rep' (Pos x) = Unary Pos x
rep' (Neg x) = Unary Neg x
instance Symbolic a => Unpack (Bind a) where
rep' (Bind vs x) = Unary (Bind vs) x
instance Symbolic a => Unpack [a] where
rep' [] = Const []
rep' (x:xs) = Binary (:) x xs
instance Symbolic a => Unpack (Seq a) where
rep' S.Nil = Const S.Nil
rep' (S.Unit x) = Unary S.Unit x
rep' (S.Append x y) = Binary S.Append x y
instance Symbolic a => Unpack (Input a) where
rep' (Input tag kind what) = Unary (Input tag kind) what
instance Unpack Obligs where
rep' (Obligs ax conj s1 s2) =
Binary (\ax' conj' -> Obligs ax' conj' s1 s2) ax conj
-- Little generic strategies
{-# INLINE recursively #-}
recursively :: Symbolic a => (forall a. Symbolic a => a -> a) -> a -> a
recursively h t =
case rep t of
Const x -> x
Unary f x -> f (h x)
Binary f x y -> f (h x) (h y)
{-# INLINE recursivelyM #-}
recursivelyM :: (Monad m, Symbolic a) => (forall a. Symbolic a => a -> m a) -> a -> m a
recursivelyM h t =
case rep t of
Const x -> return x
Unary f x -> liftM f (h x)
Binary f x y -> liftM2 f (h x) (h y)
{-# INLINE collect #-}
collect :: (Symbolic a, Monoid b) => (forall a. Symbolic a => a -> b) -> a -> b
collect h t =
case rep t of
Const x -> mempty
Unary f x -> h x
Binary f x y -> h x `mappend` h y
----------------------------------------------------------------------
-- Substitutions
type Subst = NameMap (Name ::: Term)
ids :: Subst
ids = Map.empty
(|=>) :: Named a => a -> Term -> Subst
v |=> x = NameMap.singleton (name v ::: x)
(|+|) :: Subst -> Subst -> Subst
(|+|) = Map.union
subst :: Symbolic a => Subst -> a -> a
subst s t =
case typeOf t of
Term -> term t
Bind_ -> bind t
_ -> generic t
where
term (Var x)
| Just u <- NameMap.lookup (name x) s = rhs u
term t = generic t
bind :: Symbolic a => Bind a -> Bind a
bind (Bind vs t) =
Bind vs (subst (checkBinder vs (s Map.\\ vs)) t)
generic :: Symbolic a => a -> a
generic t = recursively (subst s) t
----------------------------------------------------------------------
-- Functions operating on symbolic terms
free :: Symbolic a => a -> NameMap Variable
free t
| Term <- typeOf t,
Var x <- t = var x
| Bind_ <- typeOf t = bind t
| otherwise = collect free t
where
var :: Variable -> NameMap Variable
var x = NameMap.singleton x
bind :: Symbolic a => Bind a -> NameMap Variable
bind (Bind vs t) = free t Map.\\ vs
ground :: Symbolic a => a -> Bool
ground = Map.null . free
bind :: Symbolic a => a -> Bind a
bind x = Bind (free x) x
-- Helper function for collecting information from terms and binders.
termsAndBinders :: forall a b.
Symbolic a =>
(Term -> Seq b) ->
(forall a. Symbolic a => Bind a -> Seq b) ->
a -> Seq b
termsAndBinders term bind = aux where
aux :: Symbolic c => c -> Seq b
aux t =
collect aux t `S.append`
case typeOf t of
Term -> term t
Bind_ -> bind t
_ -> S.Nil
names :: Symbolic a => a -> [Name]
names = nub . termsAndBinders term bind where
term t = return (name t) `mappend` return (name (typ t))
bind :: Symbolic a => Bind a -> Seq Name
bind (Bind vs _) = S.fromList (map name (NameMap.toList vs))
types :: Symbolic a => a -> [Type]
types = nub . termsAndBinders term bind where
term t = return (typ t)
bind :: Symbolic a => Bind a -> Seq Type
bind (Bind vs _) = S.fromList (map typ (NameMap.toList vs))
types' :: Symbolic a => a -> [Type]
types' = filter (/= O) . types
terms :: Symbolic a => a -> [Term]
terms = nub . termsAndBinders term mempty where
term t = return t
vars :: Symbolic a => a -> [Variable]
vars = nub . termsAndBinders term bind where
term (Var x) = return x
term _ = mempty
bind :: Symbolic a => Bind a -> Seq Variable
bind (Bind vs _) = S.fromList (NameMap.toList vs)
functions :: Symbolic a => a -> [Function]
functions = nub . termsAndBinders term mempty where
term (f :@: _) = return f
term _ = mempty
isFof :: Symbolic a => a -> Bool
isFof f = length (types' f) <= 1
uniqueNames :: Symbolic a => a -> NameM a
uniqueNames t = evalStateT (aux Map.empty t) (free t)
where aux :: Symbolic a => Subst -> a -> StateT (NameMap Variable) NameM a
aux s t =
case typeOf t of
Term -> term s t
Bind_ -> bind s t
_ -> generic s t
term :: Subst -> Term -> StateT (NameMap Variable) NameM Term
term s t@(Var x) = do
case NameMap.lookup (name x) s of
Nothing -> return t
Just (_ ::: u) -> return u
term s t = generic s t
bind :: Symbolic a => Subst -> Bind a -> StateT (NameMap Variable) NameM (Bind a)
bind s (Bind vs x) = do
used <- get
let (stale, fresh) = partition (`NameMap.member` used) (NameMap.toList vs)
stale' <- sequence [ lift (newSymbol x t) | x ::: t <- stale ]
put (used `Map.union` NameMap.fromList fresh `Map.union` NameMap.fromList stale')
case stale of
[] -> fmap (Bind vs) (aux s x)
_ ->
do
let s' = NameMap.fromList [name x ::: Var y | (x, y) <- stale `zip` stale'] `Map.union` s
vs' = NameMap.fromList (stale' ++ fresh)
fmap (Bind vs') (aux s' x)
generic :: Symbolic a => Subst -> a -> StateT (NameMap Variable) NameM a
generic s t = recursivelyM (aux s) t
-- Force a value.
force :: Symbolic a => a -> a
force x = rnf x `seq` x
where rnf :: Symbolic a => a -> ()
rnf x =
case rep x of
Const !_ -> ()
Unary _ x -> rnf x
Binary _ x y -> rnf x `seq` rnf y
-- Check that there aren't two nested binders binding the same variable
check :: Symbolic a => a -> a
check x | not debugging = x
| check' (free x) x = x
| otherwise = error "Form.check: invariant broken"
where check' :: Symbolic a => NameMap Variable -> a -> Bool
check' vars t =
case typeOf t of
Term -> term vars t
Bind_ -> bind vars t
_ -> generic vars t
term :: NameMap Variable -> Term -> Bool
term vars (Var x) = x `NameMap.member` vars
term vars t = generic vars t
bind :: Symbolic a => NameMap Variable -> Bind a -> Bool
bind vars (Bind vs t) =
Map.null (vs `Map.intersection` vars) &&
check' (vs `Map.union` vars) t
generic :: Symbolic a => NameMap Variable -> a -> Bool
generic vars = getAll . collect (All . generic vars)
-- Check that a binder doesn't capture variables from a substitution.
checkBinder :: NameMap Variable -> Subst -> Subst
checkBinder vs s | not debugging = s
| Map.null (free [ t | _ ::: t <- NameMap.toList s ] `Map.intersection` vs) = s
| otherwise = error "Form.checkBinder: capturing substitution"
-- Reestablish sharing in a formula.
type ShareState = (NameMap Type, NameMap Variable, NameMap Function)
share :: Symbolic a => a -> a
share x = evalState (shareM x) initial
where initial :: ShareState
initial = (Map.empty, Map.empty, Map.empty)
shareM :: Symbolic a => a -> State ShareState a
shareM t =
case typeOf t of
Term -> term t
Bind_ -> bind t
_ -> recursivelyM shareM t
bind :: Symbolic a => Bind a -> State ShareState (Bind a)
bind (Bind vs x) =
liftM2 Bind (mapM var vs) (shareM x)
term :: Term -> State ShareState Term
term (Var x) = fmap Var (var x)
term (f :@: ts) = liftM2 (:@:) (fun f) (mapM term ts)
fun :: Function -> State ShareState Function
fun (f ::: FunType args res) = do
args' <- mapM type_ args
res' <- type_ res
memo funAccessor (f ::: FunType args' res')
var :: Variable -> State ShareState Variable
var (x ::: ty) = fmap (x :::) (type_ ty) >>= memo varAccessor
type_ :: Type -> State ShareState Type
type_ = memo typeAccessor
typeAccessor = (\(x, y, z) -> x, \x (_, y, z) -> (x, y, z))
varAccessor = (\(x, y, z) -> y, \y (x, _, z) -> (x, y, z))
funAccessor = (\(x, y, z) -> z, \z (x, y, _) -> (x, y, z))
memo :: Named a =>
(ShareState -> NameMap a,
NameMap a -> ShareState -> ShareState) ->
a -> State ShareState a
memo (get_, put_) x = do
m <- gets get_
case NameMap.lookup (name x) m of
Nothing -> do
modify (put_ (NameMap.insert x m))
return x
Just y ->
return y
-- Apply a function to each type, while preserving sharing.
mapType :: Symbolic a => (Type -> Type) -> a -> a
mapType f = share . mapType'
where mapType' :: Symbolic a => a -> a
mapType' t =
case typeOf t of
Term -> term t
Bind_ -> bind t
_ -> recursively mapType' t
bind :: Symbolic a => Bind a -> Bind a
bind (Bind vs t) = Bind (fmap var vs) (mapType' t)
term (f :@: ts) = fun f :@: map term ts
term (Var x) = Var (var x)
var (x ::: ty) = x ::: f ty
fun (x ::: FunType args res) = x ::: FunType (map f args) (f res)