[Haskell] QuickCheck

2004-10-02 Thread Dominic Steinitz
Can someone remind me how to change the number of tests that QuickCheck performs? I'm sure I knew how to do this but I can't find it in the documentation and a web search revealed no examples. Thanks, Dominic. ___ Haskell mailing list [EMAIL PROTECTED]

[Haskell] GHC / Hugs Disagree on Constraints

2004-10-02 Thread Dominic Steinitz
GHC accepts this with -fglasgow-exts instance (Ord a, Bits a, Bounded a, Integral a, LargeWord a, Bits b, Bounded b, Integral b, LargeWord b) => Bounded (LargeKey a b) where minBound = 0 maxBound = fromIntegral $ (1 + fromIntegral (maxBound::b))*