[Haskell-cafe] Transpose using array comprehension

2007-04-18 Thread Chris Witte
I just started playing around with GHC.PArr and array comprehension and I was wondering if there is a way to define the transpose of a matrix using array comprehension? Cheers Chris ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Fwd: [Haskell-cafe] Transpose using array comprehension

2007-04-18 Thread Chris Witte
to do it because i couldn't define transpose. On 4/18/07, Henning Thielemann [EMAIL PROTECTED] wrote: On Wed, 18 Apr 2007, Chris Witte wrote: I just started playing around with GHC.PArr and array comprehension and I was wondering if there is a way to define the transpose of a matrix using array

Re: [Haskell-cafe] Compiling GHC

2007-04-12 Thread Chris Witte
/configure.library.build.base] Error 1 make[1]: Leaving directory `/c/cwitte/source/ghc/libraries' make: *** [stage1] Error 2 I wonder what has changed between then and now to cause this. On 4/12/07, Andrew Appleyard [EMAIL PROTECTED] wrote: On 11/04/2007, at 7:52 pm, Chris Witte wrote: I made

Re: [Haskell-cafe] Compiling GHC

2007-04-11 Thread Chris Witte
On 4/11/07, Andrew Appleyard [EMAIL PROTECTED] wrote: The source paths for these copies are derived from the path of the gcc binary ($GccDir). Did you call configure with '--with-gcc=C:/ Mingw/bin/gcc.exe'? I received those errors when I forgot to do that. Yep that fixed that. Thanks. I

Re: [Haskell-cafe] Compiling GHC

2007-04-10 Thread Chris Witte
HAVE_GETTIMEOFDAY is defined. I wrote a quick c program to check and I can use gettimeofday fine. I can't work out why ghc can't find it. How can I work out where ghc is searching to find it? Chris. On 3/30/07, Ian Lynagh [EMAIL PROTECTED] wrote: On Fri, Mar 30, 2007 at 04:36:32PM +1000, Chris

[Haskell-cafe] Function Composition

2007-02-06 Thread Chris Witte
Animation :t (Shape.Polygon) Polygon :: [Vertex] - Shape Animation :t ((Shape).Polygon) Shape . Polygon :: [Vertex] - Region Animation :t Shape.(Polygon) Shape . Polygon :: [Vertex] - Region Cheers Chris Witte ___ Haskell-Cafe mailing list Haskell-Cafe