Custom Query (35 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 35)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#23 fixed Add array update operator (//) Ben Lippmeier
Description

From SO:

(//) :: Shape sh => Array sh a -> [(sh,a)] -> Array sh a
(//) arr us = fromFunction (extent arr) (\sh -> case lookup sh us of
                                                 Just a  -> a
                                                 Nothing -> index arr sh)
#24 fixed Unneeded Elt constraint in type of traverse functions Ben Lippmeier
Description

traverse2 has an Elt constraint for the element type of the result array, but plain traverse doesn't.

#27 fixed Use Rewrite rules to specialise map and zipWith to partitioned arrays Ben Lippmeier
Description

If we don't then we'll hammer the inRange function for the result of stencil computations, which will be slow.

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.