Tagged Questions
Lazy evaluation refers to a variety of concepts that seek to avoid evaluation of an expression unless its value is needed, and to share the results of evaluation of an expression among all uses of its, so that no expression need be evaluated more than once.
64
votes
7answers
3k 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 ...
38
votes
9answers
10k views
Lexical closures in Python
While I was investigating a problem I had with lexical closures in Javascript code, I came along this problem in Python:
flist = []
for i in xrange(3):
def func(x): return x * i
...
32
votes
2answers
3k views
What's the (hidden) cost of lazy val? (Scala)
One handy feature of Scala is lazy val, where the evaluation of a val is delayed until it's necessary (at first access).
Ofcourse a lazy val must have some overhead - somewhere Scala must keep track ...
27
votes
20answers
5k views
Why is lazy evaluation useful?
I have long been wondering why lazy evaluation is useful. I have yet to have anyone explain to me in a way that makes sense; mostly it ends up boiling down to "trust me".
Note: I do not mean ...
25
votes
5answers
1k views
Lazy Evaluation vs Macros
I'm used to lazy evaluation from Haskell, and find myself getting irritated with eager-by-default languages now that I've used lazy evaluation properly. This is actually quite damaging, as the other ...
24
votes
3answers
2k views
What does the exclamation mark mean in a Haskell declaration?
I came across the following definition as I try to learn Haskell using a real project to drive it. I don't understand what the exclamation mark in front of each argument means and my books didn't ...
22
votes
2answers
290 views
Algorithms that don't terminate in a lazy language
According to http://www.reddit.com/r/programming/comments/gwqa2/the_real_point_of_laziness/c1rslxk
Some algorithms don't terminate in an eager language, that do in a lazy one, and (a mild shocker ...
20
votes
5answers
453 views
Is everything in Haskell stored in thunks, even simple values?
What do the thunks for the following value/expression/function look like in the Haskell heap?
val = 5 -- is `val` a pointer to a box containing 5?
add x y = x + y
result = add ...
20
votes
3answers
694 views
Implementing lazy functional languages
When implementing a lazy functional language, it is necessary to store values as unevaluated thunks, to be evaluated only when needed.
One of the challenges of an efficient implementation, as ...
19
votes
19answers
858 views
Truly declarative language?
Does anyone know of a truly declarative language? The behaviour I'm looking for is kind of what Excel does, where I can define variables and formulas, and have the formula's result change when the ...
17
votes
4answers
382 views
Is performance of partial or curried functions well defined in Haskell?
In the following code:
ismaxl :: (Ord a) => [a] -> a -> Bool
ismaxl l x = x == maxel
where maxel = maximum l
main = do
let mylist = [1, 2, 3, 5]
let ismax = ismaxl mylist
...
17
votes
7answers
2k views
How to reduce memory usage in a Haskell app?
I am new to functional programming, and now learn Haskell. As an exercise I decided to implement the explicit Euler method for 1D linear diffusion equation. While the code below works correctly, I am ...
16
votes
3answers
529 views
What's so bad about Lazy I/O?
I've generally heard that production code should avoid using Lazy I/O. My question is, why? Is it ever OK to use Lazy I/O outside of just toying around? And what makes the alternatives (e.g. ...
16
votes
1answer
596 views
Reading large file in haskell?
i've been trying to read a large file in haskell.
I need to compress it using a custom algorithm for a university project. Everything works fine untill i start to compress big files.
I extracted ...
15
votes
2answers
589 views
How does seq force functions?
Background
This question arises from a challenge Brent Yorgey posed at OPLSS: write a function f :: (Int -> Int) -> Bool that distinguishes f undefined from f (\x -> undefined). All of our ...
15
votes
1answer
230 views
Binary Serialization for Lists of Undefined Length in Haskell
I've been using Data.Binary to serialize data to files. In my application I incrementally add items to these files. The two most popular serialization packages, binary and cereal, both serialize ...
15
votes
7answers
2k views
Haskell lazy I/O and closing files
I've written a small Haskell program to print the MD5 checksums of all files in the current directory (searched recursively). Basically a Haskell version of md5deep. All is fine and dandy except if ...
14
votes
3answers
335 views
How pure and lazy can Scala be?
This is just one of those "I was wondering..." questions.
Scala has immutable data structures and (optional) lazy vals etc.
How close can a Scala program be to one that is fully pure (in a ...
14
votes
4answers
589 views
Explanation of “Lose your head” in lazy sequences
In Clojure programming language, why this code passes with flying colors?
(let [r (range 1e9)] [(first r) (last r)])
While this one fails:
(let [r (range 1e9)] [(last r) (first r)])
I know it is ...
14
votes
3answers
685 views
Clojure: rest vs. next
I'm having a hard time understanding the difference between rest and next in Clojure. The official site's page on laziness indicates that the preference should probably be to use rest, but it doesn't ...
14
votes
4answers
766 views
foldl versus foldr behavior with infinite lists
The code for the myAny function in this question uses foldr. It stops processing an infinite list when the predicate is satisfied.
I rewrote it using foldl:
myAny :: (a -> Bool) -> [a] -> Bool
...
14
votes
3answers
518 views
Why does s ++ t not lead to a stack overflow for large s?
I'm wondering why
Prelude> head $ reverse $ [1..10000000] ++ [99]
99
does not lead to a stack overflow error. The ++ in the prelude seems straight forward and non-tail-recursive:
(++) :: [a] ...
14
votes
4answers
793 views
How is debugging achieved in a lazy functional programming language?
I'd like to know how debugging is achieved in a lazy functional language.
Can you use breakpoints, print statements and traditional techniques? Is this even a good idea?
It is my understanding that ...
14
votes
8answers
6k views
Lazy evaluation in C++
C++ does not have native support for lazy evaluation (as Haskell does).
I'm wondering if it is possible to implement lazy evaluation in C++ in a reasonable manner. If yes, how would you do it?
EDIT: ...
13
votes
2answers
616 views
Haskell Heap Issues with Parameter Passing Style
Here's a simple program that blows my heap to Kingdom Come:
intersect n k z s rs c
| c == 23 = rs
| x == y = intersect (n+1) (k+1) (z+1) (z+s) (f : rs) (c+1)
| x < y = intersect ...
13
votes
3answers
344 views
Understanding a recursively defined list (fibs in terms of zipWith)
I'm learning Haskell, and came across the following code:
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
which I'm having a bit of trouble parsing, in terms of how it works. It's very neat, I ...
13
votes
3answers
334 views
Disadvantage of unlifted type products?
In Haskell, lifted type products mean that there's a semantic difference between (a,b,c) and (a, (b, c)).
If all pattern matches of all products was always irrefutable, then there would be no ...
12
votes
3answers
284 views
How lazy is Haskell's `++`?
I'm curious how I should go about improving the performance of a Haskell routine that finds the lexicographically minimal cyclic rotation of a string.
import Data.List
swapAt n = f . splitAt n where ...
12
votes
1answer
341 views
Hard to understand Haskell memory allocation behaviour
First post on Stack-Overflow, so quickly for my background : I'm just interested in programming as a hobby among others ; coded a couple of high performance fluid dynamics simulations in C and Fortran ...
12
votes
3answers
626 views
How Are Lazy Sequences Implemented in Clojure?
I like Clojure. One thing that bothers me about the language is that I don't know how lazy sequences are implemented, or how they work.
I know that lazy sequences only evaluate the items in the ...
12
votes
20answers
1k views
What language is smart so that it could understand 'variable a = 0 , 20, …, 300'?
What language is smart so that it could understand 'variable a = 0 , 20, ..., 300' ? so you could easily create arrays with it giving step start var last var (or, better no last variable (a la ...
11
votes
3answers
225 views
How to optimize this short factorial function in scala? (Creating 50000 BigInts)
I've compaired the scala version
(BigInt(1) to BigInt(50000)).reduce(_ * _)
to the python version
reduce(lambda x,y: x*y, range(1,50000))
and it turns out, that the scala version took about 10 ...
11
votes
2answers
176 views
Is this a bug in Scala 2.9.1 lazy implementation or just an artifact of decompilation
I am considering using Scala on a pretty computationally intensive program. Profiling the C++ version of our code reveals that we could benefit significantly from Lazy evaluation. I have tried it ...
11
votes
2answers
218 views
Space leaks in Haskell
I have read it many times that lazy evaluation in Haskell may sometimes lead to space leaks. What kind of code can lead to space leaks? How to detect them? And what precautions can be taken on part of ...
11
votes
1answer
278 views
Writing a lazy, functional, interactive command line application in Clojure
I'm wondering: what is the best way to write a Clojure program that interacts with a user or another program thorough stdin and stdout?
Clearly it would be possible to write some kind of imperative ...
11
votes
1answer
378 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
...
11
votes
4answers
538 views
Space leak in list program
I am solving some problems of Project Euler in Haskell. I wrote a program for a riddle in it and it did not work as i expected.
When I looked in the task manager when running the program I saw that i ...
11
votes
3answers
526 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 ...
11
votes
2answers
694 views
Whats the point of lazy-seq in clojure?
I am looking through some example Fibonacci sequence clojure code:
(def fibs (lazy-cat [1 2] (map + fibs (rest fibs))))
I generally understand what is going on, but don't get the point of ...
11
votes
5answers
1k views
Stack overflow in OCaml and F# but not in Haskell
I've been comparing for fun different languages for speed in execution of the following program:
for i from 1 to 1000000 sum the product i*(sqrt i)
One of my implementations (not the only one) is ...
10
votes
2answers
262 views
the way merge-sort faster than insertion-sort puzzles me
Just got my feet wet in sorting algorithm with Haskell. I've implemented insertion-sort and merge-sort
insert_sort :: (Ord a, Show a) => [a] -> [a]
insert_sort keys = foldr f [] keys
...
10
votes
2answers
150 views
head and tail on difference lists in Haskell, à la LYAH
Learn You a Haskell mentions difference lists (search for this term on that page), where a list l is represented not directly but as a function (l++). This allows more efficient concatenation on both ...
10
votes
2answers
315 views
Non-Trivial Lazy Evaluation
I'm currently digesting the nice presentation Why learn Haskell? by Keegan McAllister. There he uses the snippet
minimum = head . sort
as an illustration of Haskell's lazy evaluation by stating ...
10
votes
1answer
154 views
Pattern matching and infinite streams
So, I'm working to teach myself Scala, and one of the things I've been playing with is the Stream class. I tried to use a naïve translation of the classic Haskell version of Dijkstra's solution to the ...
10
votes
5answers
235 views
infinite Datastructures in D
I found examples of lazy evaluation of function arguments in D http://www.digitalmars.com/d/2.0/lazy-evaluation.html
I´m wondering how to implement possible infinite Datastructures in D like it´s ...
10
votes
1answer
468 views
Force pre-computation of a constant
I have a constant declaration in Haskell -- can I force this to be evaluated ahead of time? I'm seeing some code that looks roughly like,
myList = [(a, b), (c, d)]
...
map (f . fst) myList
take ...
10
votes
2answers
203 views
What are the semantics of “strict returns”?
In the Haskell Performance Resource wiki-section, the not further explained recommendation is given to
Use strict returns (return $! ...) unless you absolutely need them lazy.
Why is that ...
10
votes
3answers
435 views
Haskell laziness - how do I force the IO to happen sooner?
I just started learning Haskell. Below is some code written in an imperative style that implements a simple server -- it prints out the HTTP request headers. Besides the fact that I need to rethink ...
10
votes
5answers
2k views
Efficient table for Dynamic Programming in Haskell
I've coded up the 0-1 Knapsack problem in Haskell. I'm fairly proud about the laziness and level of generality achieved so far.
I start by providing functions for creating and dealing with a lazy 2d ...
10
votes
3answers
703 views
Laziness and tail recursion in Haskell, why is this crashing?
I have this fairly simple function to compute the mean of elements of a big list, using two accumulators to hold the sum so far and the count so far:
mean = go 0 0
where
go s l [] = s / ...