Generalized algebraic data types, GADTs, are a more powerful form of algebraic data types that support custom constructor types.
2
votes
0answers
117 views
How to solve logical formulas in haskell?
I am working on a haskell program that includes these data type definitions as part of it:
data Term t (deriving Eq) where
Con :: a -> Term a
And :: ...
13
votes
2answers
185 views
GADT's failed exhaustiveness checking
Consider the following code:
data (:+:) f g a = Inl (f a) | Inr (g a)
data A
data B
data Foo l where
Foo :: Foo A
data Bar l where
Bar :: Bar B
type Sig = Foo :+: Bar
fun :: Sig B -> Int
...
5
votes
1answer
94 views
Enumeration of GADTs in Haskell
Could you please tell me are there any extensions of Haskell deriving mechanism for Enum class? I mean there are a lot of reasonable situations besides ``nullary constructors'' case. Are there any ...
5
votes
1answer
130 views
Haskell Inaccessible code bug?
Say I have the following (erroneous) code.
data A a b where
APure :: (A a b)
AApply :: A (A b c) c
test :: (A a b) -> a -> b
test (APure) a = a
test AApply a = undefined
GHC will then ...
1
vote
1answer
84 views
Ambiguous type for polymorphic function members of driver GADT
I'm testing some code for a little experiment I'm doing but right at the beginning I've hit a roadblock that I don't see how to fix.
data DatabaseDriver a b where
DatabaseDriver :: (Table table, ...
8
votes
2answers
708 views
Transform a GADT without constraints to another GADT with constraints when such constraints hold
Can we transform a GADT without a given constraint on its constructors to a GADT that does have the said constraint? I want to do this because I want to get a deep-embedding of Arrows and do some ...
4
votes
1answer
68 views
How can I get GHC to generate instances of Data.Typeable for GADTs with Typeable in the context?
Suppose I have the following code:
{-# LANGUAGE GADTs, DeriveDataTypeable, StandaloneDeriving #-}
import Data.Typeable
class Eq t => OnlyEq t
class (Eq t, Typeable t) => BothEqAndTypeable t
...
2
votes
2answers
98 views
How can I model a tree data structure with restrictions on where each kind of node can appear?
In Haskell, its straightforward to create a datatype for for a recursive tree, like what we have with XML documents:
data XML =
Text String -- Text of text node
| Elem String [XML] -- ...
7
votes
1answer
126 views
When were GADTs introduced in GHC?
When were GADTs introduced in GHC? (version + date)
Also, are they still considered a language extension or are they now part of the Haskell standard proper?
3
votes
2answers
130 views
Recursive replace in a GADT
Say I have the following GADT AST:
data O a b c where
Add :: O a a a
Eq :: O a b Bool
--... more operations
data Tree a where
N :: (O a b c) -> Tree a -> Tree b -> Tree c
...
3
votes
3answers
102 views
Evaluation of an AST (as a GADT) with arrows as atomic values
The following program type-checks and compiles:
import Control.Arrow
data Ns = Na | Nb | Nc | Nd deriving Show
data Net a where
Uni :: a -> Net a
Serial :: Net a -> Net a -> Net a
...
4
votes
1answer
83 views
Cannot destruct transitive type
Say I have the following GADT:
data Stage a b where
Comb :: Stage a b -> Stage b c -> Stage a c
FMap :: (a -> b) -> Stage a b
I now want a function that works like this:
run (a ...
11
votes
4answers
284 views
Static Guarantee on Key/Value Relationships in Data.Map
I want to make a special smart constructor for Data.Map with a certain constraint on the types of key/value pair relationships. This is the constraint I tried to express:
{-# LANGUAGE ...
2
votes
2answers
165 views
Trouble with DataKinds
I have created a very simple example of a problem I'm having using GADTs and DataKinds. My real application is obviously more complicated but this captures the essence of my situation clearly. I'm ...
0
votes
2answers
108 views
How can I define a Lispy datatype in Haskell?
I'm programming a Lispy PDDL parser for the AI Planning class at Coursera.
How can I define a Lispy datatype in Haskell?
15
votes
2answers
268 views
Why GADT/existential data constructors cannot be used in lazy patterns?
Today, I got a compiler error when trying to use a lazy pattern when matching on an existential GADT constructor:
An existential or GADT data constructor cannot be used inside a lazy (~) pattern
...
0
votes
1answer
24 views
Why does GHC not terminate with this GADT template Haskell module?
I have a problem with generating GADTs with template Haskell. The problem is that I can't get the code to compile completely. GHCI does not terminate when loading the file and a ghc process uses much ...
6
votes
1answer
173 views
How to use functional dependencies and existential quantification to remove an unnecessary parameter to my type
In the HLearn library that I'm working on, I have some container data type that looks like this:
data (Model params model) => Container' params model = Container'
{ baseparams :: params
, ...
0
votes
2answers
170 views
How do I restrict the types in a heterogenous list?
I am currently trying to create a (sort of) typesafe xml like syntax embedded into Haskell. In the end I am hoping to achieve something like this:
tree = group [arg1 "str", arg2 42]
[item ...
2
votes
1answer
198 views
OCaml - GADT - Boolean expression
I wondered if there was some way of having this:
type binary_operator = And | Or;;
type canonical;;
type not_canonical;;
type 'canonical boolean_expression =
| Var : int -> not_canonical ...
1
vote
2answers
113 views
Converting enumerations to int-like types in haskell
I'm following the advice on this page: http://www.haskell.org/haskellwiki/Performance/Data_types to improve the performance of my code, but when I changed
data Color = Yellow | Red | Green | Blue | ...
2
votes
0answers
121 views
Using GADTs to build trees with different node types and parent-child relationship rules
I am trying to build an XML generator for a custom XML structure using the simple xml package. Here is a sample XML fragment:
<Response>
<Answer>Hello World</Answer>
<Play ...
1
vote
2answers
313 views
How to derive Eq for a GADT with a non-* kinded phantom type parameter
For example, trying to compile the following code
{-# LANGUAGE StandaloneDeriving, KindSignatures, DataKinds, GADTs#-}
data ExprTag = Tag1 | Tag2
data Expr (tag :: ExprTag) where
Con1 :: Int ...
2
votes
2answers
231 views
What's the closest thing to Haskell GADTs and typeclasses in F#?
F# is an ML with OOP. What's the closest it comes to Haskell generalized algebraic data types and typeclasses?
1
vote
1answer
157 views
How to parse string into GADT
I am trying trying to implement Combinatory Logic in Haskell, and I would like to write to parser for the language. I am having trouble getting a parser to work via Parsec. The basic problem is that I ...
2
votes
1answer
181 views
How can I derive a Data instance for a GADT in Haskell?
I have a GADT which is only ever used with two different parameters, ForwardPossible and ():
-- | Used when a forward definition is possible.
data ForwardPossible = ForwardPossible deriving (Eq, Ord, ...
1
vote
1answer
135 views
Encapsulation of GADT pattern matches
In this code there are repeated fragments:
insert x (AATree t) = case insert' x t of
Same t -> AATree t
Inc t -> AATree t
insertBlack :: (Ord a) => a -> AANode Black (Succ n) a ...
17
votes
2answers
520 views
How can I recover sharing in a GADT?
In Type-Safe Observable Sharing in Haskell Andy Gill shows how to recover sharing that existed on the Haskell level, in a DSL. His solution is implemented in the data-reify package. Can this approach ...
5
votes
1answer
130 views
Simulating existential quantification in function return types
Sometimes I come upon a need to return values of an existentially quantified type. This happens most often when I'm working with phantom types (for example representing the depth of a balanced tree). ...
6
votes
3answers
172 views
Strange type inference behaviour with GADT type (for fixed length vectors)
I have the following GADT
data Vec n a where
T :: Vec VZero a
(:.) :: (VNat n) => a -> (Vec n a) -> (Vec (VSucc n) a)
to model fixed length vectors, using the class
class VNat ...
12
votes
1answer
388 views
Haskell pattern matching on GADTs with Data Kinds
I have found that I really like combining GADTs with Data Kinds, as it gives me further type safety than before (for most uses, almost as good as Coq, Agda et al.). Sadly, pattern matching fails on ...
1
vote
2answers
100 views
Converting lists whose elements' types are paramertized their type-encoded indexes
I'm trying to implement a type-safe binomial heap. For this, I have two data types whose element types are parametrized by their type-encoded indexes:
data Zero
data Succ a = Succ
{-| A GADT ...
2
votes
2answers
117 views
How to express pattern matching for independent combinations of data values?
data Foo = Bar1
| Bar2 Foo Foo
| Bar3 Foo
| Bar4 Foo Foo Foo
Now, assume someone built a Foo tree and I want to check if the arguments of a Foo value are valid. The rules ...
4
votes
1answer
193 views
GADTs, TypeFamilies type inference failure when implementing “mixins”
I am trying to create complex data structures with composable logic. That is, the data structure has a generic format (essentially, a record with some fields whose type can change) and some generic ...
1
vote
2answers
155 views
How to use GADTs in Hugs
I'd like to write a Haskell program that uses GADTs interactively on a platform not supported by GHCi (namely, GNU/Linux on mipsel). The problem is, the construct that can be used to define a GADT in ...
3
votes
1answer
267 views
how to parse strings to syntax tree using GADTs
I was reading GADT introduction here and it I found the idea of restricting programmer to create only right type of syntax tree great, and I put this idea into my simple lambda calculus interpreter, ...
8
votes
2answers
439 views
GADTs vs. MultiParamTypeClasses
I'm trying to grasp GADTs, and I have looked at the GADTs example in GHC's manual. As far as I can tell, it is possible to do the same thing with MultiParamTypeClasses:
{-# LANGUAGE ...
5
votes
1answer
224 views
I can't get my GADT-based toy Dynamic type to work with parametric types
So in order to help me understand some of the more advanced Haskell/GHC features and concepts, I decided to take a working GADT-based implementation of dynamically typed data and extend it to cover ...
0
votes
2answers
122 views
Explanation of untyped terms
I have a continuation exercise from uni for my Haskell subject where I've been given the following:
data Expr = Con Value
| And Expr Expr
data Value = IntValue Int
| BoolValue ...
0
votes
2answers
201 views
haskell GADTs constructor
I have the following
data Expr = Condition v
| And Expr Expr
| Or Expr Expr
and I am asked to consider the follow untyped version in order to complete:
data Expr e where
I'm ...
0
votes
1answer
268 views
Check whether formula is correct in haskell
---- update 2 ----
At last, he told me that is Exists…
thank you all.
---- update ----
Okay, we call it Forsome
ex3: forsome x0::[False,True]. forsome x1::[0,1,2]. (x0 || (0 < x1))
(whom ...
3
votes
1answer
142 views
Congruence for heterogenous equality
I'm trying to use heterogenous equality to prove statements involving this indexed datatype:
data Counter : ℕ → Set where
cut : (i j : ℕ) → Counter (suc i + j)
I was able to write my proofs using ...
3
votes
1answer
111 views
Eliminating subst to prove equality
I'm trying to representat mod-n counters as a cut of the interval [0, ..., n-1] into two parts:
data Counter : ℕ → Set where
cut : (i j : ℕ) → Counter (suc (i + j))
Using this, defining the two ...
6
votes
1answer
417 views
Parametrized Inductive Types in Agda
I'm just reading Dependent Types at Work. In the introduction to parametrised types, the author mentions that in this declaration
data List (A : Set) : Set where
[] : List A
_::_ : A → List A → ...
4
votes
1answer
283 views
GADT for polymorphic list
I am parsing a few statements of the form
v1 = expression1
v2 = expression2
...
I am using the State Monad and my state should be a pair of (String, Expr a), I really insist on having the ...
0
votes
1answer
106 views
Parametrizing type in Java (GADT)
I need to have so sort of GADT in Java, like
interface Action<C, O> {
Collection<O> doAction(C<O> predicate)
}
so I can easily declare class like
class Selector<T> {
...
8
votes
2answers
227 views
Scala Type-Inference For Type Constructor
I have a question regarding type-inferencing on Scala's type-constructors. I'm running Scala 2.9.1...
Suppose I defined Tree:
sealed trait Tree[C[_], A]
case class Leaf[C[_], A](a: A) extends ...
18
votes
2answers
381 views
What does data … where mean in Haskell?
I saw this snippet at the devlog of omegagb:
data ExecutionAST result where
Return :: result -> ExecutionAST result
Bind :: (ExecutionAST oldres) -> (oldres -> ExecutionAST result) ->
...
1
vote
2answers
140 views
Lifted spine view
I tried to follow the program of the paper "Scrap your boilerpolate" Revolutions.
Unfortunately, I found the program in the section lifted spine view does not compile in my GHC,
could anybody point ...
4
votes
2answers
245 views
Can I statically reject different instantiations of an existential type?
First attempt
It's difficult to make this question pithy, but to provide a minimal example, suppose I have this type:
{-# LANGUAGE GADTs #-}
data Val where
Val :: Eq a => a -> Val
This ...


