Tagged Questions
2
votes
1answer
101 views
Why does `take` with a large number return [] even though the list is infinite?
I have a doubt on why Haskell couldn't handle the following line
Prelude> take 1000000000000 $ repeat ' '
That line of code will return:
""
Which is obviously not 1,000,000,000,000 spaces.
...
2
votes
1answer
63 views
haskell hFlush isn't working the way Im expecting
I'm trying to get a program to read an entire file using hFlush, in order to avoid an issue I'm having which has to do with the lazy IO.
readHandle <- openFile fileName ReadMode
hSetBuffering ...
0
votes
0answers
101 views
Haskell: Problems with lazy evaluation and file creation
My problem is the following: My program has to generate a file and then send a shell call to another program that has to compute such file. However, due to lazy evaluation, the file isn't generated in ...
1
vote
2answers
115 views
Create infinite list with fibonacci numbers
I make my next homework =)
My task is to create infinite list with fibonacci numbers [0,1,1,2,3,5,8..]
I can use any function from Prelude.
My try:
fibs2 :: [Integer]
fibs2 = reverse $ foldr f [1,0] ...
4
votes
2answers
130 views
Why wouldn't my sieve terminate when I rewrote it as a foldl?
What's the specific problem with my foldl that prevents it from terminating or producing output?
First I achieved a sieve for primes. It's not the best, but it works just fine as (for example) take ...
4
votes
2answers
75 views
Lazy generation of pairs of adjacent elements in a “circular list”
To check for ray-triangle collisions, we can first see if the ray collides with the triangle's plane. If it does, we then check if the intersection point is on the same side for all triangle sides. If ...
4
votes
2answers
103 views
Create lazy IO list from a non-IO list
I have a lazy list of filenames created by find. I'd like to be able to load the metadata of these files lazily too. That means, that if i take 10 elements from metadata, it should only search the ...
2
votes
1answer
118 views
GHCI not so lazy on Windows?
Typing following into GHCI on Windows:
foldl (+) 0 $ take 100000000 $ map sqrt [1..]
gives:
<interactive>: out of memory
while compiling (with GHC) and running this program:
main = do
...
5
votes
1answer
96 views
Lazy binary get
Why is Data.Binary.Get isn't lazy as it says? Or am I doing something wrong here?
import Data.ByteString.Lazy (pack)
import Data.Binary.Get (runGet, isEmpty, getWord8)
getWords = do
empty <- ...
4
votes
3answers
106 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
98 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 ...
4
votes
1answer
110 views
Confirming lazy evaluation
I accidentally deleted my post, but I'm reposting this question for clarification.
If I have a function:
const x = 1
If I ask Haskell:
const (1/0)
It will return 1 because lazy evaluation doesn't ...
3
votes
2answers
196 views
how to generate a series representing the binary expansion of 'e'
I'm trying to find the first 100,000 binary digits in the expansion of 'e'. Is there an algorithm to generate the binary digits of 'e' as a infinite list?
1
vote
1answer
125 views
Stack space overflow with the ST monad
The following short haskell program is intended to count a list of items from a file. The version using foldl' works fine, but the version using the ST Monad gives a stack space overflow message. ...
2
votes
3answers
220 views
haskell foldl' poor performance with (++)
I have this code:
import Data.List
newList_bad lst = foldl' (\acc x -> acc ++ [x*2]) [] lst
newList_good lst = foldl' (\acc x -> x*2 : acc) [] lst
This functions return list with each ...
3
votes
3answers
126 views
Lazy IO in haskell: How to return a lazy list that is generated by some blocked IO?
getText = do
c <- getChar
s <- getText
return (c : s)
main = do
s <- getText
putStr s
What I expect to see is that the input line being echoed each time after I press ...
19
votes
2answers
467 views
Least-strict (*)
Is it possible to implement (*) with least-strict semantics in Haskell (standardized Haskell preferred, but extensions are OK. Using compiler internals is cheating)? For example, such a definition ...
2
votes
1answer
93 views
lazy list reconstructed based on concreteness of its type?
I wrote a simple (and unserious) prime number generator in Haskell, with mutually-recursive definitions for generating the primes and for determining the primeness of a number:
primes :: (Integral a) ...
2
votes
2answers
126 views
Is there a stricter Data.Sequence?
The following example shows a problem that we have with Data.Sequence:
{-# LANGUAGE BangPatterns #-}
module Main where
import qualified Data.Sequence as S
import Data.Sequence ((|>), ViewL(..))
...
15
votes
2answers
268 views
Why GADT/existential data constructors cannot be used in lazy patterns?
Today, I got a compiler error when trying to use a lazy pattern when matching on an existential GADT constructor:
An existential or GADT data constructor cannot be used inside a lazy (~) pattern
...
3
votes
3answers
169 views
Why the Haskell sequence function can't be lazy or why recursive monadic funtions can't be lazy
With the question Listing all the contents of a directory by breadth-first order results in low efficiencyI learned that the low efficiency is due to a strange behavior of the recursive monad ...
4
votes
4answers
210 views
Listing all the contents of a directory by breadth-first order results in low efficiency
I writed a Haskell module to list all the contents of a directory by breadth-first order. The below is the source code.
module DirElements (dirElem) where
import System.Directory ...
7
votes
1answer
201 views
Haskell: partially drop lazy evaluated results
I have a very large decision tree. It is used as follows:
-- once per application start
t :: Tree
t = buildDecisionTree
-- done several times
makeDecision :: Something -> Decision
makeDecision ...
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
3answers
247 views
Streaming recursive descent of a directory in Haskell
I am trying to do a recursive descent of a directory structure using Haskell. I would like to only retrieve the child directories and files as needed (lazily).
I wrote the following code, but when I ...
5
votes
2answers
407 views
How to force evaluation in Haskell?
I am relatively new to Haskell and I am trying to learn how different actions can be executed in sequence using the do notation.
In particular, I am writing a program to benchmark an algorithm (a ...
2
votes
2answers
210 views
Haskell — Get multiple values from infinite list without starting the list over
I'm currently working on an implementation of Project Euler problem 40 and am trying to figure out how to take multiple items from a list in Haskell without starting the list over.
Currently, I have ...
14
votes
2answers
289 views
Modeling time as lazy numbers
I am trying to write an interactive, realtime audio-synthesis thing in Haskell,
and I'm in dire need of "lazy numbers" to represent time.
Here's the thing: my program is based on a notion of ...
26
votes
2answers
522 views
How much memory does a thunk use?
Let's say I have a very large number (millions/billions+) of these simple Foo data structures:
data Foo = Foo
{ a :: {-# UNPACK #-}!Int
, b :: Int
}
With so many of these floating ...
4
votes
2answers
198 views
Do Haskell files close automatically after readFile?
I want to use the Haskell function
readFile :: FilePath -> IO String
to read the content of a file into a string. In the documentation I have read that "The file is read lazily, on demand, as ...
2
votes
4answers
257 views
Does this Haskell example effectively demonstrate laziness?
I'm new to Haskell, and I'm writing a paper on it for my Programming Languages class. I want to to demonstrate Haskell's laziness with some sample code, but I'm not sure if what I'm seeing is actually ...
9
votes
1answer
135 views
Is `evaluate` safe compared to `seq`?
As shown in this answer, seq combined with undefined does very strange things when it comes to equational reasoning, for example it can make any monad fail. Another example is in this question.
...
7
votes
1answer
95 views
What is the WHNF of a newtype and how does rseq work on a newtype?
Since newtypes are effectively removed during compilation, they don't have thunks, just values. So what happens if I ask for its WHNF using rseq? For example in
Sum (lengthyComputation :: Int) ...
11
votes
2answers
239 views
Laziness/strictness between data and newtype
I'm struggling to understand why these two snippets produce different results under the so-called "poor man's strictness analysis".
The first example uses data (assuming a correct Applicative ...
6
votes
2answers
231 views
Haskell - strict vs non-strict with foldl
I have a question concerning the definition of strict vs non-strict. The Haskell wiki-book for Laziness (http://en.wikibooks.org/wiki/Haskell/Laziness), under the section "Black-box strictness ...
1
vote
2answers
133 views
Why Isnt This Function Consuming Lazily?
I have two functions similar to filter and takeWhile.
filterAcc, takeWhileAcc :: ([a] -> Bool) -> [a] -> [a]
filterAcc p xs = go xs []
where go [] acc = acc
go (x:xs) acc
...
1
vote
1answer
127 views
Lazy Evaluation implementation
I have a function fromRange which takes a filter function and an interval and returns a set with all elements in the interval that satisfy the filter function.
I implemented it using list ...
4
votes
2answers
114 views
How to use Haskells laziness when finding right triangles
I'm following the (excellent) Haskell tutorial at http://learnyouahaskell.com/starting-out and am trying out the right triangle example:
> let triangles = [(a,b,c) | c <- [1..10], b <- ...
9
votes
1answer
154 views
When does GHC use sharing?
A beginner's question. I am a bit confused about the following: I read that GHC's (Haskell's?) lazy evaluation method includes the use of sharing, so for example evaluating the expression
(1+1)*(1+1)
...
8
votes
1answer
200 views
In Haskell, what's the difference between using takeWhile or using a “regular” inequality in this list comprehension?
I'm trying to learn me a Haskell (for great good), and one of the many different things I'm doing is trying to tackle some Project Euler problems as I'm going along to test my mettle.
In doing some ...
5
votes
3answers
316 views
When is unsafeInterleaveIO unsafe?
Unlike other unsafe* operations, the documentation for unsafeInterleaveIO is not very clear about its possible pitfalls. So exactly when is it unsafe? I would like to know the condition for both ...
1
vote
0answers
128 views
Applying seq to improve execution time in Haskell
I have the following:
data Node = Node { position::Int
, zombies::Float
, connections::[Int]
}
moveZombie :: [Node] -> Node -> Node
...
7
votes
1answer
166 views
Difference between Haskell's Lazy and Strict monads (or transformers)
When browsing Hackage, most of the monads have a Lazy and a Strict version. What is the difference exactly? Can you highlight it with some examples for the common monads (State, Reader, Writer)?
7
votes
1answer
184 views
Why does this Haskell filter terminate?
I don't understand why the following Haskell code terminates under GHCi:
let thereExists f lst = (filter (==True) (map f lst)) /= []
thereExists (\x -> True) [1..]
I did not expect the call to ...
4
votes
1answer
87 views
Error reading and writing same file simultaneously in Haskell
I need to modify a file in-place. So I planned to read file contents, process them, then write the output to the same file:
main = do
input <- readFile "file.txt"
let output = (map toUpper ...
2
votes
1answer
107 views
Haskell lazy unloading
I need to have a large list of data that when referenced at a specific location calculates (loads from a file, and/or generates it if it hasn't been generated yet) and keeps it for future use. This is ...
3
votes
3answers
187 views
Lack of understanding infinite lists and seq operator
The code below retains, for a given integer n, the first n items from a list, drops the following n items, keeps the following n and so on. It works correctly for any finite list.
In order to make it ...
12
votes
1answer
562 views
Reasoning laziness
I have the following snippet:
import qualified Data.Vector as V
import qualified Data.ByteString.Lazy as BL
import System.Environment
import Data.Word
import qualified Data.List.Stream as S
...
12
votes
3answers
1k views
Is Haskell's mapM not lazy?
UPDATE: Okay this question becomes potentially very straightforward.
q <- mapM return [1..]
Why does this never return?
Does mapM not lazily deal with infinite lists?
The code below hangs. ...
7
votes
2answers
462 views
How do laziness and I/O work together in Haskell?
I'm trying to get a deeper understanding of laziness in Haskell.
I was imagining the following snippet today:
data Image = Image { name :: String, pixels :: String }
image :: String -> IO Image
...


