The overlapping-instances tag has no wiki summary.
0
votes
2answers
81 views
Dirty hack for overlapping instances?
Module A imports modules B and C
Module B imports instance X
Module C imports instance Y
X and Y are instances of a common type class.
Instances X and Y are identical in type, that is, fully ...
2
votes
2answers
101 views
Illegal instance declaration / Overlapping instances
Given class X and Y, what's the most idiomatic approach to creating instances of each other's class? e.g. -
instance (X a) => Y a where ...
instance (Y a) => X a where ...
I'd like to avoid ...
0
votes
2answers
127 views
Num instance for Monad; overlapping instances only in the presence of seemingly unrelated code?
I have a bit of code that would be more cleanly written if I could treat Monads as Nums (where applicable, of course). Easily enough done:
{-# LANGUAGE FlexibleInstances #-}
import Control.Monad ...
2
votes
2answers
236 views
multiple git repositories cloned into the same directory
I've got a standard repository for my project
/home/repo/.git
this is the repository i clone to get the base code for new websites
i.e. i cloned this to
/var/www/site1
i also have several ...
0
votes
1answer
129 views
Using the Additive Class from the Numeric Prelude leads to Overlapping Instances
While trying to define some mathematical objects using the Numeric prelude I've run into a problem. The Additive typeclass defines an instance
instance Additive.C v => Additive.C [v]
Which I ...
1
vote
2answers
152 views
How to evaluate a dataset for class overlapping
I'm using Weka to develop a classifier for a medical problem. This dataset has a class imbalance situation and I want to know if there is also a problem of class overlapping. Each record has 30 ...
0
votes
4answers
116 views
How to share common context between classes?
Present Scenario :
I have a set of classes that all take a common argument context in constructor, and all the classes inherit from a common base.
class base:
def common_method(self):
...
8
votes
1answer
259 views
Are there any language extensions or language descendants of Haskell, that favor expressiveness, particularly in instance handling?
At times, I run into the "feature" that Haskell only matches instance heads, namely,
instance (a ~ NewDataTyp b) => C a
will now match any type whatsoever, i.e. writing another instance ...
3
votes
1answer
128 views
Help interpreting overlapping instances error message
I'm stumped on this overlapping instances error message. Sorry this is a nontrivial project, but the error should be local to the type signatures.
First, I declare f to be of a certain type,
let f = ...
5
votes
1answer
332 views
Haskell overlapping instances and type functions
I have the following typeclass which models a SQL-like query optimization:
class OptimizableQuery q where
type Optimized q :: *
optimize :: q -> Optimized q
instance Query q => ...