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.
0
votes
0answers
70 views
A way of achieving lazy evaluation in C++ [closed]
So I was answering a question about lazy evaluation (here, my answer is overkill for that case but the idea seems interesting) and it maid me think about how lazy evaluation might be done in C++. I ...
3
votes
3answers
48 views
Setup dictionary lazily
Let's say I have this dictionary in python, defined at the module level (mysettings.py):
settings = {
'expensive1' : expensive_to_compute(1),
'expensive2' : expensive_to_compute(2),
...
}
...
2
votes
3answers
212 views
Laziness in C++11
Do you know how to perform a lazy evaluation of string, like in this D snippet:
void log(lazy string msg) {
static if (fooBarCondition)
writefln(…) /* something with msg */
}
Actually, the ...
2
votes
1answer
119 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.
...
1
vote
1answer
34 views
How to use lazy with instance variable
given the code below
public class classA
{
int someid ;
public classA( int x ) { someid = x; }
Lazy<myType> lazymt1 = new Lazy<myType>(
return ...
2
votes
1answer
66 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 ...
1
vote
3answers
41 views
Can ViewModel have property of type IEnumerable<> instead of Array
I generally construct my ViewModel like this:
MyViewModel {
(...)
IEnumerable<MyClass> Items {get; set;}
}
Should I ever care (be afraid) that I am not passing an already evaluated values ...
1
vote
2answers
46 views
Lazy logic and temporary values to improve the reading of an expression
Sorry for the poor explanatory title, I'm not able to find a better one (yet).
I'm used to code boolean expressions adding some temporary variables to improve the reading of an expression, in other ...
2
votes
1answer
47 views
Different results when a function is evaluated in the REPL than in a program
I have a feeling the answer to my question is something to do with Clojure's lazy evaluation (which I am still fuzzy on...)
So I have a function:
(defn fix-str-old [string]
(let [words (->> ...
0
votes
0answers
102 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 ...
7
votes
2answers
74 views
First bracketed assignment is as time-consuming as full assignment?
Regarding this answer in:
What exactly is copy-on-modify semantics in R, and where is the canonical source?
We can see that, at the first time a vector is altered with '[<-', R copies the entire ...
4
votes
2answers
100 views
Building a lazy sequence out of IO data
I'm trying to get a grip on Clojure. As an exercise, I set out to build a function that returns a lazy sequence of a given subreddit's entries.
In order to make my aim clear, I put together the ...
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] ...
0
votes
1answer
58 views
Flattening Streams produced from multiple JDBC ResultSets, to prevent loading everything in memory
I am given List[String], that I need to group in chunks. For each chunk, I need to run a query (JDBC) that returns a List[String] as a result.
What I'm trying to get to is:
All the results from the ...
5
votes
1answer
65 views
How can I evaluate a lazy val using reflection?
Using the experimental Scala 2.10 reflection, when I try to call FieldMirror.get() on a field that is a lazy val, it returns null. Is there a way to evaluate the lazy val using reflection? The get() ...
1
vote
1answer
53 views
Is there any way to lazy evaluate function.func_name?
This question is not about my code
I just want to claim the reason why I need lazy evalution on function.func_name
I'm using a curry decorator in my code
I made it to show curried arguments by ...
1
vote
2answers
24 views
How to evaluate all expressions in a condition?
I know PHP uses lazy-evaluation / short-circuit operators. But say I wanted to evaluate all the expressions in a condition, for example:
$a = "Apple";
$b = "Banana";
$c = "Cherry";
function ...
4
votes
2answers
132 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
77 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 ...
3
votes
2answers
64 views
garbage collect objects after lazy values have been calculated
in my current project I am processing a quite big amount of data and the processing of the data should be both memory efficient and computationally performant.
Every item has some meta-data that can ...
1
vote
1answer
78 views
Scala for-loop ranges OutOfMemoryError
Why does for {i <- (1 to 1000000000)} println(i) gives me OutOfMemoryError but (1 to 1000000000) foreach println does not? What if I have to use the for-loop syntax, what should I do?
4
votes
2answers
105 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
119 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
...
1
vote
1answer
55 views
Non-intrusively replacing a custom type with an expression tree
I'm trying to introduce lazy evaluation into an existing code project. The project core basically consists of a large amount of calculations using a custom type (it acts like a double but does ...
3
votes
4answers
76 views
How to get distinct items from a Scala Iterable, maintaining laziness
I have a java.lang.Iterable which computes its values lazily. I am accessing it from Scala. Is there a core API way of returning only distinct values? For instance, imaging there was a filter method ...
6
votes
3answers
158 views
clojure lazy sequences in math.combinatorics results in OutOfMemory (OOM) Error
the documentation of math.combinatorics states that all functions return lazy sequences.
However if I try to run subsets with a lot of data
(last (combinatorics/subsets (range 20)))
...
0
votes
1answer
59 views
Dynatree initial load with children
I have a lazy loading DynaTree in the lastest version 1.2.4 and get the challange, to provide the path to the current selected node.
I do a loop over the root nodes to build the first level of the ...
2
votes
3answers
87 views
Lazy Shuffle Algorithms
I have a large list of elements that I want to iterate in random order. However, I cannot modify the list and I don't want to create a copy of it either, because 1) it is large and 2) it can be ...
0
votes
2answers
109 views
F# lazy recursion
I am have some problems with recursion in Lazy Computations. I need calculation the square root by Newton Raphson method. I do not know how to apply a lazy evaluation. This is my code:
let next x z = ...
8
votes
1answer
84 views
Explain a lazy evaluation quirk
I am reading Hadley Wickhams's book on Github, in particular this part on lazy evaluation. There he gives an example of consequences of lazy evaluation, in the part with add/adders functions. Let me ...
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
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
99 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 ...
2
votes
1answer
66 views
Why are there so many Scala collection view types?
I am new to Scala, so I am trying to understand why calls on views return instances of IndexedSeqViewS and similar classes. Why does there need to be a different class for each operation?
1
vote
1answer
40 views
Make an enumerable object lazy by default
I've started playing around with the Enumerable::Lazy functionality in Ruby 2.0 and it looks really useful.
I have an Enumerable collection that pages through a remote data source. Because of this, I ...
4
votes
3answers
186 views
Lazy, overloaded C++ && operator?
I'm trying to implement my own boolean class, but cannot replicate native semantics for &&. The following contrived code demonstrates the issue:
#include <iostream>>
class ...
1
vote
3answers
72 views
Consume http requests lazy
I'm trying to enrich data and the interface I have available for this is a web form.
Due to the very poorly quality of the data on the remote end, I run through a chain of different searches until I ...
3
votes
1answer
54 views
What's the best way to return an Enumerator::Lazy when your class doesn't define #each?
Enumerable#lazy relies on your enumerable providing an #each method. If your enumerable doesn't have an #each method you can't use #lazy. Now Kernel#enum_for and #to_enum provide the flexibility to ...
2
votes
2answers
85 views
why does Enumerator include Enumerable
Dig this, here is a cool Enumerator (lazy sequence) from 1 to (the biggest Float Ruby can represent):
1.9.3-p327 :014 > e = (1..Float::INFINITY).each
Look at how we can grab the front of the ...
1
vote
0answers
85 views
Lazy Loading images with threshold fails with more than one container (jQuery)
My site contains three horizontal divs (containers) which all have lazy-loading images within a list view (ul -> li).
They all load completely fine when 'threshold' is set to '0' and all the images ...
2
votes
1answer
82 views
How to define lazy AND
I have defined the following macros:
(defmacro ~lazy (expression)
`(lambda ()
,@expression))
(defgeneric force~ (value)
(:method (value)
value)
(:method ((value function))
...
1
vote
1answer
60 views
How to make reverse_lazy() lazy for arguments too?
Introduction
For a particular need (django-jqgrid), I define a class (representing a Grid) where I have to provide an url attribute. Since I use only reversed URLs (nothing statically defined), I use ...
0
votes
1answer
61 views
How do I use django @lazy decorator?
First try with the django.utils.functional.lazy decorator. My function returns two lists, so I'm decorating it with @lazy(list, list). It's a plain jane function, not a method/property on a class.
...
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 ...
1
vote
1answer
33 views
IQueryable Evaluation
I'm new to EF/Linq-To-SQL. I read on SO previously that IQueryable is beneficial over IEnumerable in that it does lazy evaluation. Concerning the following simple example:
var records = ...
1
vote
1answer
153 views
dropbox sdk- Get all file metadata lazily in android client
I am integrating dropbox in my android application. The requirement is to get all file metadata. I have downloaded dropbox sdk and I am able to authenticate user's credentials as well.
I am unable to ...
3
votes
2answers
198 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?
2
votes
1answer
43 views
How to build a reinitializable lazy property in Groovy?
This is what I'd like to do:
class MyObject {
@Lazy volatile String test = {
//initalize with network access
}()
}
def my = new MyObject()
println my.test
//Should clear the ...
8
votes
2answers
96 views
How to set a private lazy<T> with reflection for testing purposes in C#?
The problem description
We have a pretty big system, that used to eager load data into properies with private setters.
For using testing specific scenarios, I used to write data in those properties ...
2
votes
2answers
110 views
Scala lazy collection growth
This question is a bit more theoretical.
I have an object which holds a private mutable list or map, whose growth is append only. I believe I could argue that the object itself is functional, being ...


