Re: [Haskell-cafe] Trouble finding exception source

2008-02-27 Thread Denis Bueno
On Wed, Feb 27, 2008 at 2:01 AM, Judah Jacobson [EMAIL PROTECTED] wrote: Hi Denis, I was unable to run your program; it looks like there's a missing module 'Properties'. To include it in the sdist you probably need to add it under the other-modules field in the .cabal file. Sorry about

Re: [Haskell-cafe] Trouble finding exception source

2008-02-27 Thread Denis Bueno
On Wed, Feb 27, 2008 at 12:06 AM, [EMAIL PROTECTED] wrote: Fortuitously, I recently came across a bunch of bioinformatics software in Haskell. One of the libraries was called 'interlude', and it claims to be able to give line locations for errors in the Prelude. I was intending to upload

[Haskell-cafe] Trouble finding exception source

2008-02-26 Thread Denis Bueno
Hi all, I've got some code crashing with Prelude.foldr1: empty list. In GHCi, the code uses too much memory (I kill it after it consumes 1GB) to be able to use :trace and :history, but I just found out about the -xc RTS option. I tried that, and I get the following: GHC.List.CAFdsat:

Re: [Haskell-cafe] Trouble finding exception source

2008-02-26 Thread gwern0
On 2008.02.26 23:13:59 -0500, Denis Bueno [EMAIL PROTECTED] scribbled 7.4K characters: Hi all, I've got some code crashing with Prelude.foldr1: empty list. In GHCi, the code uses too much memory (I kill it after it consumes 1GB) to be able to use :trace and :history, but I just found out

Re: [Haskell-cafe] Trouble finding exception source

2008-02-26 Thread Judah Jacobson
Hi Denis, I was unable to run your program; it looks like there's a missing module 'Properties'. To include it in the sdist you probably need to add it under the other-modules field in the .cabal file. -Judah 2008/2/26 Denis Bueno [EMAIL PROTECTED]: Hi all, I've got some code crashing