Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
RSTT.Tope
Contents
Synopsis
- data Tope
- data Shape = Shape {
- shapePoint :: (Var, Cube)
- shapeTope :: Tope
- type TopeContext = [Tope]
- ppTopeContext :: TopeContext -> String
- ppShape :: Shape -> String
- ppTope :: Tope -> String
- ppTopePrec :: Int -> Tope -> String
- replacePointInTope :: Point -> Point -> Tope -> Tope
- replacePoint :: Point -> Point -> Point -> Point
- subPointOf :: Point -> Point -> Bool
Documentation
A tope expression.
Constructors
TopeTop | Top tope: ⊤. |
TopeBottom | Bottom tope: ⊥. |
TopeAnd Tope Tope | AND tope: ϕ∧ψ. |
TopeOr Tope Tope | OR tope: ϕ∨ψ. |
TopeEQ Point Point | Point equality tope: t≡s. |
TopeVar Var | A tope variable. |
TopeImplies Tope Tope | IMPLIES tope: ϕ⇒ψ. NOTE: this tope is added to internalise known tope judgements and simplify proof search. |
TopeCon Label [Point] | User-defined tope constructor (fully applied to some points). |
A shape is a tope in a cube context (with just one cube point variable): {t:I∣ϕ}.
type TopeContext = [Tope] Source #
A tope context consists of a set of topes.
Pretty-printing
ppTopeContext :: TopeContext -> String Source #
Pretty-print a TopeContext
.
ppTopePrec :: Int -> Tope -> String Source #
Pretty-print a Tope
expression in a given precedence environment.
replacePointInTope :: Point -> Point -> Tope -> Tope Source #
Replace a point subterm everywhere in a tope term.