Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ library:
- hashable
- deepseq
- bytestring
- syb

tests:
pantomime-test:
Expand Down
1 change: 1 addition & 0 deletions pantomime.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ library
, microlens
, mtl
, primitive
, syb
, template-haskell
, text
, transformers
Expand Down
2 changes: 1 addition & 1 deletion src/Pantomime.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Pantomime
( plugin

, Theory (..)
, PluginAxioms (..)
, Embeddings (..)
, pantomime
, pantomimeMarker
, pantomimeNothing
Expand Down
4 changes: 2 additions & 2 deletions src/Pantomime/Annotation.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ module Pantomime.Annotation
) where

import Data.Data (Data)
import Pantomime.Axiom (PluginAxioms)
import Pantomime.Axiom (Embeddings)
import GHC.Utils.Outputable (Outputable (..), hang)

-- TODO: Not sure I like the name. This checks whether an expression whose
-- result is of type Bool is valid. That is, whether it will always return True.
data Theory where
Theory :: PluginAxioms -> Theory
Theory :: Embeddings -> Theory
deriving (Show, Data)

instance Outputable Theory where
Expand Down
Loading
Loading