In the semantics of Haskell, strictness relates to whether evaluating an expression forces evaluation of a sub-expression.
4
votes
3answers
108 views
Type enforced “strict/imperitive” subset/version of Haskell
I quite like Haskell, however one of the main things that concerns me about Haskell the difficulty in reasoning about space usage. Basically the possibility of thunks and recursion seem to make some ...
3
votes
1answer
100 views
Stack space overflow (possibly related to mapM)
I'm writing a program that creates a shell script containing one command for each image file in a directory. There are 667,944 images in the directory, so I need to handle the strictness/laziness ...
5
votes
3answers
361 views
What's the meaning of strict version in haskell?
Follow <Real World Haskell> , it is said foldl' are strict version of foldl.
But it's hard for me to understand , what does strict mean??
foldl f z0 xs0 = lgo z0 xs0
where
...
6
votes
4answers
155 views
Does the existence rseq/seq break referential transparency? Are there some alternative approaches that don't?
I always thought that replacing an expression x :: () with () :: () would be one of the most basic optimizations during compiling Haskell programs. Since () has a single inhabitant, no matter what x ...
2
votes
3answers
95 views
Unsure of how to get the right evaluation order
I'm not sure what the difference between these two pieces of code is (with respect to x), but the first one completes:
$ foldr (\x y -> if x == 4 then x else x + y) 0 [1,2 .. ]
10
and the second ...
0
votes
1answer
80 views
Missing something with strictness
I have this code:
divisors n = 1:[y|y<-[2..(n `div` 2)], n `mod` y == 0]
writeList l = do print "Start"
print l
Then, i want to call the function with strict argument; i tried:
...
1
vote
1answer
105 views
How does the bind operator for Eval in Control.Parallel.Strategies evaluate its argument strictly?
The source code for Control.Parallel.Strategies ( http://hackage.haskell.org/packages/archive/parallel/3.1.0.1/doc/html/src/Control-Parallel-Strategies.html#Eval ) contains a type Eval defined as:
...
13
votes
4answers
619 views
Profiling a Haskell program
I have a piece of code that repeatedly samples from a probability distribution using sequence. Morally, it does something like this:
sampleMean :: MonadRandom m => Int -> m Float -> m Float
...
9
votes
1answer
233 views
Debugging unwanted strictness?
I have a problem that I don't know how to reason about. I was just about to ask if somebody could help me with the specific problem, but it dawned on me that I could ask a more general question and ...
8
votes
1answer
158 views
Strict fmap using only Functor, not Monad
One irritation with lazy IO caught to my attention recently
import System.IO
import Control.Applicative
main = withFile "test.txt" ReadMode getLines >>= mapM_ putStrLn
where getLines h = ...
12
votes
3answers
433 views
Advantages of strict fields in data types
This may now be a bit fuzzy, but I've been wondering that for a while. To my knowledge with !, one can make sure a parameter for a data constructor is being evaluated before the value is constructed:
...
16
votes
2answers
554 views
Is foldl ever preferable to its strict cousin, foldl'?
Haskell has two left fold functions for lists: foldl, and a "strict" version, foldl'. The problem with the non-strict foldl is that it builds a tower of thunks:
foldl (+) 0 [1..5]
--> ((((0 + ...
6
votes
3answers
770 views
Is operator && strict in Haskell?
For example, I have an operation fnB :: a -> Bool that does not sense until fnA :: Bool returns False. In C I may compose these two operations in one if block:
if( fnA && fnB(a) ){ ...
76
votes
7answers
4k views
What are Haskell's strictness points?
We all know (or should know) that Haskell is lazy by default. Nothing is evaluated until it must be evaluated. So when must something be evaluated? There are points where Haskell must be strict. I ...
5
votes
2answers
326 views
Why map does not force strictness whereas zipWith does?
There are two strict versions of zipWith function:
1) Really strict, elements of lists l1 and l2 get evaluated so their thunks do not eat all stack space (Don Stewart code)
zipWith' f l1 l2 = [ f e1 ...
2
votes
3answers
311 views
How to set strictness in list comprehension?
I'm bit stuck how to rewrite following strict-evaluated list comprehension to use seq instead of bang pattern:
zipWith' f l1 l2 = [ f e1 e2 | (!e1, !e2) <- zip l1 l2 ]
Any idea ?
I've tried
...
4
votes
2answers
803 views
How to make a table (Data.Map) strict in haskell?
For learning Haskell (nice language) I'm triying problems from Spoj.
I have a table with 19000 elements all known at compile-time.
How can I make the table strict with 'seq'?
Here a (strong) ...
9
votes
2answers
299 views
Forced strictness for lists in haskell
I made really time consuming algorithm which produces a short string as the result. When I try to print it (via putStrLn) it appears on the screen character by character. I did understand why that ...
3
votes
1answer
483 views
Strict evaluation techniques for concurrent channels in Haskell
I'm toying with Haskell threads, and I'm running into the problem of communicating lazily-evaluated values across a channel. For example, with N worker threads and 1 output thread, the workers ...
16
votes
3answers
992 views
What is the relationship between unboxed types and strictness?
Unboxed types, like Int#, and strict functions, like f (!x) = ..., are something different, but I see conceptual similarity - they disallow thunks/laziness in some way. If Haskell was a strict ...

