We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some thought on types and kinds to use recent ghc features.
The text was updated successfully, but these errors were encountered:
{-# LANGUAGE TypeFamilies, DataKinds, GADTs, StandaloneDeriving, FlexibleInstances #-} module Clause where -- import Unsafe.Coerce data ClauseKind = OfNormal | NullCaluse | BinaryClause data Clause (a :: ClauseKind) where MkClause :: [Int] -> Clause 'OfNormal MkBinaryClause :: Int -> Clause 'BinaryClause instance Eq (Clause a) where (MkBinaryClause a) == (MkBinaryClause b) = a == b _ == _ = undefined instance Show (Clause a) where show (MkBinaryClause l) = "B{" ++ show l ++ "}" show (MkClause _) = show "Clause" -- data Clause (a :: ClauseKind) = Clause [Int] deriving (Eq, Show) c :: [Clause 'OfNormal] c = []
Sorry, something went wrong.
This is completely same with #28
No branches or pull requests
Some thought on types and kinds to use recent ghc features.
The text was updated successfully, but these errors were encountered: