cpsa-2.5.3: src/CPSA/SAS/SAS.hs
-- Converts a solution to a problem into a coherent logic formula
-- Copyright (c) 2011 The MITRE Corporation
--
-- This program is free software: you can redistribute it and/or
-- modify it under the terms of the BSD License as published by the
-- University of California.
module CPSA.SAS.SAS (Prot, Preskel, State, sas) where
import Control.Monad (foldM)
import qualified Data.List as L
import qualified Data.Map as M
import CPSA.Lib.CPSA
{--
import System.IO.Unsafe
z :: Show a => a -> b -> b
z x y = unsafePerformIO (print x >> return y)
--}
-- The root used for generated node names.
root :: String
root = "z"
type State t g c = ([Prot t g c], [Preskel t g c])
sas :: (Algebra t p g s e c, Monad m) => String -> g ->
State t g c -> Maybe (SExpr Pos) ->
m (State t g c, Maybe (SExpr ()))
sas _ _ (ps, ks) Nothing = -- Nothing signifies end-of-file
displayFormula ps (reverse ks)
sas name gen (ps, []) (Just sexpr) = -- Looking for POV skeleton
loadPOV name gen ps sexpr
sas name gen (ps, ks) (Just sexpr) = -- Looking for shapes
loadOtherPreskel name gen ps ks sexpr
loadPOV :: (Algebra t p g s e c, Monad m) => String -> g ->
[Prot t g c] -> SExpr Pos ->
m (State t g c, Maybe (SExpr ()))
loadPOV name origin ps (L pos (S _ "defprotocol" : xs)) =
do
p <- loadProt name origin pos xs
return ((p : ps, []), Nothing)
loadPOV _ _ ps (L pos (S _ "defskeleton" : xs)) =
do
p <- findProt pos ps xs
k <- loadPreskel pos p (pgen p) xs
case (isSkeleton k, isShape k) of
(True, False) ->
return ((ps, [k]), Nothing) -- Found POV
_ -> return ((ps, []), Nothing) -- Not POV
loadPOV _ _ ps _ = return ((ps, []), Nothing)
loadOtherPreskel :: (Algebra t p g s e c, Monad m) => String -> g ->
[Prot t g c] -> [Preskel t g c] ->
SExpr Pos -> m (State t g c, Maybe (SExpr ()))
loadOtherPreskel name origin ps ks (L pos (S _ "defprotocol" : xs)) =
do -- Found next protocol. Print this formula
p <- loadProt name origin pos xs
displayFormula (p : ps) (reverse ks)
loadOtherPreskel _ _ ps ks (L pos (S _ "defskeleton" : xs)) =
do
p <- findProt pos ps xs
let g = kgen (last ks) -- Make sure vars in skeleton are
k <- loadPreskel pos p g xs -- distinct from the ones in the POV
case isShape k of
True -> return ((ps, k : ks), Nothing) -- Found shape
False -> return ((ps, ks), Nothing) -- Found intermediate skeleton
loadOtherPreskel _ _ ps ks _ = return ((ps, ks), Nothing)
-- Load a protocol
-- The Prot record contains information extraced from protocols for
-- use when processing preskeletons. A protocol includes a role for
-- all listeners.
data Prot t g c = Prot
{ pname :: String, -- Protocol name
pgen :: g, -- Generator for preskeletons
roles :: [Role t c] }
deriving Show
-- The Role record contains information extraced from roles for use
-- when processing preskeletons.
data Role t c = Role
{ rname :: String, -- Role name
vars :: [t],
ctx :: c }
deriving Show
-- Load a protocol. On success, returns a Prot record.
loadProt :: (Algebra t p g s e c, Monad m) => String -> g ->
Pos -> [SExpr Pos] -> m (Prot t g c)
loadProt nom origin pos (S _ name : S _ alg : x : xs)
| alg /= nom =
fail (shows pos $ "Expecting terms in algebra " ++ nom)
| otherwise =
do
(gen, rs) <- loadRoles origin (x : xs)
(gen', r) <- makeListenerRole pos gen
return (Prot { pname = name, pgen = gen', roles = r : rs })
loadProt _ _ pos _ =
fail (shows pos "Malformed protocol")
-- A generator is threaded thoughout the protocol loading process so
-- as to ensure no variable occurs in two roles. It also ensures that
-- every variable that occurs in a preskeleton never occurs in one of
-- its roles.
loadRoles :: (Algebra t p g s e c, Monad m) => g ->
[SExpr Pos] -> m (g, [Role t c])
loadRoles origin xs =
mapAccumLM loadRole origin $ stripComments xs
stripComments :: [SExpr Pos] -> [SExpr Pos]
stripComments xs =
filter pred xs
where
pred (L _ (S _ sym : _)) = sym == "defrole"
pred _ = True -- Catch bad entries
-- A monad version of map accumulation from the left
mapAccumLM :: Monad m => (a -> b -> m (a, c)) -> a -> [b] -> m (a, [c])
mapAccumLM _ z [] =
return (z, [])
mapAccumLM f z (x : xs) =
do
(z', y) <- f z x
(z'', ys) <- mapAccumLM f z' xs
return (z'', y : ys)
loadRole :: (Algebra t p g s e c, Monad m) => g ->
SExpr Pos -> m (g, Role t c)
loadRole gen (L _ (S _ "defrole" :
S _ name :
L _ (S _ "vars" : vars) :
L _ (S _ "trace" : _ : _) :
_)) =
do
(gen, vars) <- loadVars gen vars
let ctx = addToContext emptyContext vars
let r = Role { rname = name, vars = vars, ctx = ctx }
return (gen, r)
loadRole _ x =
fail (shows (annotation x) "Malformed role")
-- A protocol's listener role
listenerName :: String
listenerName = ""
makeListenerRole :: (Algebra t p g s e c, Monad m) => Pos -> g ->
m (g, Role t c)
makeListenerRole pos gen =
do
(gen', t) <- makeVar pos gen "x"
let vars = [t]
let ctx = addToContext emptyContext vars
let r = Role { rname = listenerName, vars = vars, ctx = ctx }
return (gen', r)
makeVar :: (Algebra t p g s e c, Monad m) => Pos -> g -> String -> m (g, t)
makeVar pos gen name =
do
(gen', ts) <- loadVars gen [L pos [S pos name, S pos "mesg"]]
case ts of
[t] -> return (gen', t)
_ -> fail (shows pos "Bad variable generation")
-- Node to variable maps
-- A variable map maps nodes to variables
type VM t = M.Map Node t
-- A generator and a variable map
type GVM g t = (g, VM t)
-- Add a variable for a node if the mapping does not already exist.
addVar :: (Algebra t p g s e c, Monad m) =>
Pos -> GVM g t -> Node -> m (GVM g t)
addVar pos (gen, vm) n =
case M.lookup n vm of
Just _ -> return (gen, vm)
Nothing ->
do
(gen, t) <- makeVar pos gen root -- Make the variable
return (gen, M.insert n t vm)
-- Node lookup assumes a node will always be found.
nlookup :: Node -> VM t -> t
nlookup n vm =
case M.lookup n vm of
Just t -> t
Nothing -> error ("SAS.lookup: cannot find " ++ show n)
-- Find a protocol
findProt :: (Algebra t p g s e c, Monad m) => Pos ->
[Prot t g c] -> [SExpr Pos] -> m (Prot t g c)
findProt pos ps (S _ name : _) =
case L.find (\p -> name == pname p) ps of
Nothing -> fail (shows pos $ "Protocol " ++ name ++ " unknown")
Just p -> return p
findProt pos _ _ = fail (shows pos "Malformed skeleton")
-- Load a preskeleton
data Instance t c = Instance
{ pos :: Pos, -- Instance position
role :: Role t c, -- Role from which this was instantiated
env :: [(t, t)], -- The environment
height :: Int } -- Height of the instance
deriving Show
type Strands = [Int] -- [Strand height]
type Node = (Int, Int) -- (Strand, Position)
type Pair = (Node, Node) -- Precedes relation
data Preskel t g c = Preskel
{ protocol :: Prot t g c,
kgen :: g, -- Final generator
kvars :: [t], -- Algebra variables
knodes :: [t], -- Node variables
insts :: [Instance t c],
strands :: [t], -- A node for each instance
orderings :: [(t, t)],
succs :: [(t, t)],
nons :: [t],
pnons :: [t],
uniqs :: [t],
origs :: [(t, t)],
isSkeleton :: Bool,
isShape :: !Bool, -- Always looked at, so make it strict
homomorphisms :: [SExpr Pos], -- Loaded later
varmap :: VM t }
loadPreskel :: (Algebra t p g s e c, Monad m) => Pos -> Prot t g c ->
g -> [SExpr Pos] -> m (Preskel t g c)
loadPreskel pos prot gen (S _ _ : L _ (S _ "vars" : vars) : xs) =
do
(gen, kvars) <- loadVars gen vars
insts <- loadInsts prot kvars [] xs
let heights = map height insts
orderings <- loadOrderings heights (assoc precedesKey xs)
nons <- loadBaseTerms kvars (assoc nonOrigKey xs)
pnons <- loadBaseTerms kvars (assoc pnonOrigKey xs)
uniqs <- loadBaseTerms kvars (assoc uniqOrigKey xs)
origs <- loadOrigs kvars heights (assoc origsKey xs)
let strands = map (\(s, h) -> (s, h - 1)) (zip [0..] heights)
(gen, varmap) <- makeVarmap pos gen strands orderings origs
let f (n0, n1) = (nlookup n0 varmap, nlookup n1 varmap)
let g (t, n) = (t, nlookup n varmap)
return (Preskel { protocol = prot,
kgen = gen,
kvars = kvars,
knodes = M.elems varmap,
insts = insts,
strands = map (flip nlookup varmap) strands,
orderings = map f orderings,
succs = loadSuccs varmap,
nons = nons,
pnons = pnons,
uniqs = uniqs,
origs = map g origs,
isSkeleton = not $ hasKey preskeletonKey xs,
isShape = hasKey shapeKey xs,
homomorphisms = assoc mapsKey xs,
varmap = varmap})
loadPreskel pos _ _ _ = fail (shows pos "Malformed skeleton")
loadInsts :: (Algebra t p g s e c, Monad m) => Prot t g c ->
[t] -> [Instance t c] -> [SExpr Pos] -> m [Instance t c]
loadInsts prot kvars insts (L pos (S _ "defstrand" : x) : xs) =
case x of
S _ role : N _ height : env ->
do
i <- loadInst pos prot kvars role height env
loadInsts prot kvars (i : insts) xs
_ ->
fail (shows pos "Malformed defstrand")
loadInsts prot kvars insts (L pos (S _ "deflistener" : x) : xs) =
case x of
[term] ->
do
i <- loadListener pos prot kvars term
loadInsts prot kvars (i : insts) xs
_ ->
fail (shows pos "Malformed deflistener")
loadInsts _ _ insts _ =
return (reverse insts)
loadInst :: (Algebra t p g s e c, Monad m) => Pos -> Prot t g c ->
[t] -> String -> Int -> [SExpr Pos] -> m (Instance t c)
loadInst pos prot kvars role height env =
do
r <- lookupRole pos prot role
env <- mapM (loadMaplet kvars (vars r)) env
return (Instance { pos = pos, role = r,
env = env, height = height })
lookupRole :: (Algebra t p g s e c, Monad m) => Pos ->
Prot t g c -> String -> m (Role t c)
lookupRole pos prot role =
case L.find (\r -> role == rname r) (roles prot) of
Nothing ->
fail (shows pos $ "Role " ++ role ++ " not found in " ++ pname prot)
Just r -> return r
loadMaplet :: (Algebra t p g s e c, Monad m) =>
[t] -> [t] -> SExpr Pos -> m (t, t)
loadMaplet kvars vars (L _ [domain, range]) =
do
t <- loadTerm vars domain
t' <- loadTerm kvars range
return (t, t')
loadMaplet _ _ x = fail (shows (annotation x) "Malformed maplet")
loadListener :: (Algebra t p g s e c, Monad m) => Pos ->
Prot t g c -> [t] -> SExpr Pos -> m (Instance t c)
loadListener pos prot kvars x =
do
r <- lookupRole pos prot listenerName
t <- loadTerm kvars x
return (Instance { pos = pos, role = r,
env = [(head $ vars r, t)], height = 2 })
-- Load the node orderings
loadOrderings :: Monad m => Strands -> [SExpr Pos] -> m [Pair]
loadOrderings _ [] = return []
loadOrderings strands (x : xs) =
do
np <- loadPair strands x
nps <- loadOrderings strands xs
return (adjoin np nps)
loadPair :: Monad m => [Int] -> SExpr Pos -> m Pair
loadPair heights (L pos [x0, x1]) =
do
n0 <- loadNode heights x0
n1 <- loadNode heights x1
case sameStrands n0 n1 of -- Same strand
True -> fail (shows pos "Malformed pair -- nodes in same strand")
False -> return (n0, n1)
where
sameStrands (s0, _) (s1, _) = s0 == s1
loadPair _ x = fail (shows (annotation x) "Malformed pair")
loadNode :: Monad m => [Int] -> SExpr Pos -> m Node
loadNode heights (L pos [N _ s, N _ p])
| s < 0 = fail (shows pos "Negative strand in node")
| p < 0 = fail (shows pos "Negative position in node")
| otherwise =
case height heights s of
Nothing -> fail (shows pos "Bad strand in node")
Just h | p < h -> return (s, p)
_ -> fail (shows pos "Bad position in node")
where
height [] _ = Nothing
height (x: xs) s -- Assume s non-negative
| s == 0 = Just x
| otherwise = height xs (s - 1)
loadNode _ x = fail (shows (annotation x) "Malformed node")
loadBaseTerms :: (Algebra t p g s e c, Monad m) => [t] -> [SExpr Pos] -> m [t]
loadBaseTerms _ [] = return []
loadBaseTerms vars (x : xs) =
do
t <- loadBaseTerm vars x
ts <- loadBaseTerms vars xs
return (adjoin t ts)
loadBaseTerm :: (Algebra t p g s e c, Monad m) => [t] -> SExpr Pos -> m t
loadBaseTerm vars x =
do
t <- loadTerm vars x
case isAtom t of
True -> return t
False -> fail (shows (annotation x) "Expecting an atom")
-- Creates the atomic formulas used to describe the strand node orderings
-- Must compute the transitive reduction of the within strand orderings
loadSuccs :: Algebra t p g s e c => VM t -> [(t, t)]
loadSuccs varmap =
concatMap f idx
where
ns = M.keys varmap -- The set of nodes
ss = L.sort $ L.nub $ map fst ns -- The ordered set of strands
idx = [(s, is) | s <- ss, -- The per strand indices
let is = L.sort [i | (s', i) <- ns, s' == s]]
f (_, []) = error "SAS.loadSuccs: Bad index entry"
f (_, [_]) = []
f (s, i:i':is) =
(nlookup (s, i) varmap, nlookup (s, i') varmap):f(s, i':is)
loadOrigs :: (Algebra t p g s e c, Monad m) => [t] -> Strands ->
[SExpr Pos] -> m [(t, Node)]
loadOrigs _ _ [] = return []
loadOrigs vars heights (x : xs) =
do
o <- loadOrig vars heights x
os <- loadOrigs vars heights xs
return (adjoin o os)
loadOrig :: (Algebra t p g s e c, Monad m) => [t] -> Strands ->
SExpr Pos -> m (t, Node)
loadOrig vars heights (L _ [x, y]) =
do
t <- loadTerm vars x
n <- loadNode heights y
return (t, n)
loadOrig _ _ x =
fail (shows (annotation x) "Malformed origination")
-- Homomorphisms
-- The maps entry in a preskeleton contains a list of homomorphisms.
-- A homomorphism is a list of length two, a strand map as a list of
-- natural numbers, and a substition.
type Homo t = ([(t, t)], [(t, t)])
loadMaps :: (Algebra t p g s e c, Monad m) => Preskel t g c ->
Preskel t g c -> [SExpr Pos] -> m [Homo t]
loadMaps pov k maps =
mapM (loadMap pov k) maps
loadMap :: (Algebra t p g s e c, Monad m) => Preskel t g c ->
Preskel t g c -> SExpr Pos -> m (Homo t)
loadMap pov k (L _ [L _ strandMap, L _ algebraMap]) =
do
perm <- mapM loadPerm strandMap -- Load the strand map
let nh = map (loadNodeEq k perm) (M.assocs $ varmap pov)
-- Load the algebra part of the homomorphism
ah <- mapM (loadMaplet (kvars k) (kvars pov)) algebraMap
return (nh, ah)
loadMap _ _ x = fail (shows (annotation x) "Malformed map")
loadPerm :: Monad m => SExpr Pos -> m Int
loadPerm (N _ n) | n >= 0 = return n
loadPerm x = fail (shows (annotation x) "Expecting a natural number")
-- Applies a strand permutation to a node.
-- Hope the strand map is valid, or !! will blow up.
loadNodeEq :: Algebra t p g s e c => Preskel t g c ->
[Int] -> (Node, t) -> (t, t)
loadNodeEq k perm ((s, i), v) =
(v, nlookup (perm !! s, i) (varmap k))
-- Collect all the relevant nodes and make a variable for each one.
makeVarmap :: (Algebra t p g s e c, Monad m) => Pos ->
g -> [Node] -> [Pair] -> [(t, Node)] -> m (GVM g t)
makeVarmap pos g strands orderings origs =
do
gvm <- foldM fht (g, M.empty) strands
gvm <- foldM fodr gvm orderings
foldM forg gvm origs
where
fht gvm n = addVar pos gvm n
fodr gvm (n0, n1) =
do
gvm <- addVar pos gvm n0
addVar pos gvm n1
forg gvm (_, n) = addVar pos gvm n
-- Association lists
-- Lookup value in alist, appending values with the same key
assoc :: String -> [SExpr a] -> [SExpr a]
assoc key alist =
concat [ rest | L _ (S _ head : rest) <- alist, key == head ]
keyPred :: String -> SExpr a -> Bool
keyPred key (L _ (S _ head : _)) = key == head
keyPred _ _ = False
hasKey :: String -> [SExpr a] -> Bool
hasKey key alist = any (keyPred key) alist
-- The key used to identify a non-skeleton
preskeletonKey :: String
preskeletonKey = "preskeleton"
-- The key used to identify a shape
shapeKey :: String
shapeKey = "shape"
-- The key used to extract the list of homomorphisms
mapsKey :: String
mapsKey = "maps"
-- The key used in preskeletons for communication orderings
precedesKey :: String
precedesKey = "precedes"
-- The key used in preskeletons for non-originating atoms
nonOrigKey :: String
nonOrigKey = "non-orig"
-- The key used in preskeletons for penetrator non-originating atoms
pnonOrigKey :: String
pnonOrigKey = "pen-non-orig"
-- The key used in preskeletons for uniquely originating atoms
uniqOrigKey :: String
uniqOrigKey = "uniq-orig"
-- The key used to extract the nodes of origination
origsKey :: String
origsKey = "origs"
type Analysis t g c = (Preskel t g c, [(Homo t, Preskel t g c)])
loadAnalysis :: (Algebra t p g s e c, Monad m) => Preskel t g c ->
[Preskel t g c] -> m (Analysis t g c)
loadAnalysis pov ks =
do
shapes <- mapM f ks
return (pov, concat shapes)
where
f k =
case null $ homomorphisms k of
True -> fail "No homomorphism for shape"
False ->
do
hs <- loadMaps pov k (homomorphisms k)
return [(h, k) | h <- hs]
-- Eliminate trivial homomorphisms by substituting for the equality
-- throughout the analysis.
reduce :: Algebra t p g s e c => Analysis t g c -> Analysis t g c
reduce (pov, shapes) =
(pov, map (reduceShape pov) shapes)
reduceShape :: Algebra t p g s e c => Preskel t g c ->
(Homo t, Preskel t g c) -> (Homo t, Preskel t g c)
reduceShape pov (homo, k) =
(mapHomo env homo, mapSkel env pov k)
where
env = snd $head $ homoEnv (kgen k) homo
-- Compute a substition for equalities that equate two variables
-- of the same sort.
homoEnv :: Algebra t p g s e c => g -> Homo t -> [(g, e)]
homoEnv g (a, n) = matchEqs (a ++ n) (g, emptyEnv)
matchEqs :: Algebra t p g s e c => [(t, t)] -> (g, e) -> [(g, e)]
matchEqs [] env = [env]
matchEqs (eq:eqs) env =
do
e <- matchEq eq env
matchEqs eqs e
matchEq :: Algebra t p g s e c => (t, t) -> (g, e) -> [(g, e)]
matchEq (t, p) env
| isVar p = -- Match fails if there
case match p t env of -- a sort mismatch
[] -> [env]
e -> e
| otherwise = [env] -- Fail if p is not a variable
-- Apply substitution and remove trival equations.
mapHomo :: Algebra t p g s e c => e -> Homo t -> Homo t
mapHomo env (a, n) =
(f a, f n)
where
f eqs = [(p, t1) |
(p, t0) <- eqs,
let t1 = instantiate env t0,
p /= t1]
mapInst :: Algebra t p g s e c => e -> Instance t c -> Instance t c
mapInst e inst =
inst { env = map f (env inst) }
where
f (p, x) = (p, instantiate e x)
mapSkel :: Algebra t p g s e c => e -> Preskel t g c ->
Preskel t g c -> Preskel t g c
mapSkel env pov k =
k { kvars = vs L.\\ kvars pov, -- Delete redundant POV variables
knodes = ns L.\\ knodes pov,
insts = map (mapInst env) (insts k),
strands = map (instantiate env) (strands k),
orderings = mapPair (instantiate env) (orderings k),
succs = mapPair (instantiate env) (succs k),
nons = map (instantiate env) (nons k),
pnons = map (instantiate env) (pnons k),
uniqs = map (instantiate env) (uniqs k),
origs = mapPair (instantiate env) (origs k),
varmap = M.map (instantiate env) (varmap k) }
where
vs = map (instantiate env) (kvars k)
ns = map (instantiate env) (knodes k)
mapPair f l = map (\(a,b) -> (f a, f b)) l
-- Formula printing
displayFormula :: (Algebra t p g s e c, Monad m) =>
[Prot t g c] -> [Preskel t g c] ->
m (State t g c, Maybe (SExpr ()))
displayFormula ps [] =
return ((ps, []), Nothing)
displayFormula ps (k : ks) =
do
analysis <- loadAnalysis k ks
return ((ps, []), Just $ form $ reduce analysis)
form :: Algebra t p g s e c => Analysis t g c -> SExpr ()
form (pov, shapes) =
let (c, vars, conj) = skel emptyContext pov in
let disj = map (shape c conj) shapes in
L () [S () "defgoal", S () (pname $ protocol pov), -- Name of protocol
quantify "forall" vars (imply (conjoin conj) (disjoin disj))]
-- Convert one skeleton into a declaration and a conjunction. The
-- declaration is used as the bound variables in a quantifier. The
-- context is extended so it can be used as input for another
-- skeleton.
skel :: Algebra t p g s e c => c -> Preskel t g c ->
(c, [SExpr ()], [SExpr ()])
skel ctx k =
let vars = kvars k ++ knodes k in
let kctx = addToContext ctx vars in
let nodes = displayVars kctx (knodes k) in
(kctx,
displayVars kctx (kvars k) ++ listMap node nodes,
map (nodeForm kctx k) (M.assocs (varmap k)) ++
map (strandForm kctx) (zip (strands k) $ insts k) ++
map (precForm kctx) (orderings k) ++
map (sprecForm kctx) (succs k) ++
map (unary "non" kctx) (nons k) ++
map (unary "pnon" kctx) (pnons k) ++
map (unary "uniq" kctx) (noOrigUniqs k) ++
map (uniqAtForm kctx) (origs k))
-- map through lists in an S-Expression.
listMap :: ([SExpr ()] -> [SExpr ()]) -> [SExpr ()] -> [SExpr ()]
listMap _ [] = []
listMap f (L () xs : ys) = L () (f xs) : listMap f ys
listMap f (y : ys) = y : listMap f ys
-- Replace "mesg" as the sort in the list with "node"
node :: [SExpr ()] -> [SExpr ()]
node [] = error "SAS.node: empty list as argument"
node [_] = [S () "node"]
node (v : vs) = v : node vs
-- Creates the atomic formulas used to describe an instance of a role
nodeForm :: Algebra t p g s e c => c -> Preskel t g c ->
(Node, t) -> SExpr ()
nodeForm c k ((s, i), n) =
L () [S () "p",
Q () $ rname $ role inst, -- Name of the role
N () $ i,
displayTerm c n]
where
inst = insts k !! s
quote :: SExpr () -> SExpr ()
quote (S () str) = Q () str
quote x = x
-- Creates the atomic formulas used to describe an instance of a role
strandForm :: Algebra t p g s e c => c -> (t, Instance t c) -> SExpr ()
strandForm c (s, inst) =
conjoin (map f (env inst))
where
f (x, t) =
L () [S () "p",
Q () $ rname $ role inst, -- Name of the role
quote $ displayTerm (ctx $ role inst) x,
displayTerm c s,
displayTerm c t]
-- Creates the atomic formula used to describe a node ordering relation
precForm :: Algebra t p g s e c => c -> (t, t) -> SExpr ()
precForm = binary "prec"
-- Creates the atomic formula used to describe a strand node ordering
sprecForm :: Algebra t p g s e c => c -> (t, t) -> SExpr ()
sprecForm = binary "str-prec"
uniqAtForm :: Algebra t p g s e c => c -> (t, t) -> SExpr ()
uniqAtForm = binary "uniq-at"
-- Returns the uniqs that do not originate in k.
noOrigUniqs :: Algebra t p g s e c => Preskel t g c -> [t]
noOrigUniqs k =
[ t | t <- uniqs k, all (f t) (origs k) ]
where
f t (t', _) = t /= t'
-- Creates a formula associated with a shape. It is a disjunction of
-- existentially quantified formulas that describe the homomorphism
-- and the shape as a skeleton.
shape :: Algebra t p g s e c => c -> [SExpr ()] ->
(Homo t, Preskel t g c) -> SExpr ()
shape c pov ((nh, ah), shape) =
let (ctx, vars, conj) = skel c shape in
let n = map (displayEq ctx) nh in
let a = map (displayEq ctx) ah in
quantify "exists" vars (conjoin (n ++ a ++ (conj L.\\ pov)))
displayEq :: Algebra t p g s e c => c -> (t, t) -> SExpr ()
displayEq = binary "="
-- Formula primitives
unary :: Algebra t p g s e c => String -> c -> t -> SExpr ()
unary pred ctx t =
L () [S () pred, displayTerm ctx t]
binary :: Algebra t p g s e c => String -> c -> (t, t) -> SExpr ()
binary pred ctx (t0, t1) =
L () [S () pred, displayTerm ctx t0, displayTerm ctx t1]
quantify :: String -> [SExpr ()] -> SExpr () -> SExpr ()
quantify _ [] form = form
quantify name vars form =
L () [S () name, L () vars, form]
conjoin :: [SExpr ()] -> SExpr ()
conjoin conjuncts =
case concatMap f conjuncts of
[x] -> x
xs -> L () (S () "and" : xs)
where
f (L () (S () "and" : xs)) = xs
f x = [x]
disjoin :: [SExpr ()] -> SExpr ()
disjoin conjuncts =
case concatMap f conjuncts of
[x] -> x
xs -> L () (S () "or" : xs)
where
f (L () (S () "or" : xs)) = xs
f x = [x]
imply :: SExpr () -> SExpr () -> SExpr ()
imply (L () [S () "and"]) consequence = consequence
imply antecedent consequence =
L () [S () "implies", antecedent, consequence]