Tagged Questions
The sieve tag has no wiki summary.
12
votes
2answers
309 views
Question about the ~ and @ operators in Haskell
What exactly do they do? I know one possible use of @ (assigning a name at the start of a pattern match), but haven't been able to find anything on ~.
I found them in the following code snippet, ...
7
votes
3answers
714 views
Haskell --> F#: Turner's Sieve
I was reading on different sieving algorithms when I stumbled upon a kind of improved version of the Sieve of Eratosthenes called Euler's Sieve. According to Wikipedia there is an implementation of an ...
6
votes
2answers
498 views
Memory leaks with jQuery in IE 7/8/9 and FF 4
I have been struggling with some memory leaks using jQuery in all major browsers, and am looking for some help. I've read many articles on memory leaks, references, circular references, closures, ...
2
votes
2answers
144 views
Good design pattern for running a process on a collection of data?
Best explained with code I think, this is just a simple example:
public class MyPOJO {
public String name;
public int age;
public MyPOJO(String name, int age) {
this.name = ...
2
votes
5answers
2k views
Is there a way to find the approximate value of the nth prime?
Is there a function which will return the approximate value of the n th prime? I think this would be something like an approximate inverse prime counting function. For example, if I gave this function ...
1
vote
2answers
78 views
2-3-5-7 wheel factorization seems to skip prime number 331
When following the procedure on wikipedia for wheel factorization, I seem to have stumbled into a problem where the prime number 331 is treated as a composite number if I try to build a 2-3-5-7 wheel.
...
1
vote
1answer
98 views
Sieve of Eratosthenes
I read up on the sieve of Eratosthenes while solving a question on Project Euler. I'm sure you guys know which question im talking about...
So here's the thing. My code manages to show all the primes ...
1
vote
5answers
168 views
Dynamic Sieve Algorithms for Prime Generation
I'm implementing the Sieve of Eratosthenes, for an explanation of this see http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes. However I would like to adapt it to generate M primes, not the primes 1 ...
0
votes
0answers
25 views
Inserting ajax requested table using JQuery causes DOM count to increase when replacing previous contents
I've been using JQuery and Javascript for 8 months now and I'm pretty familiar with it. However, I've recently noticed my table rows (requested by ajax and created on the webserver by DJango) cause my ...
0
votes
1answer
82 views
Is there a good library for handling sieve mail filters in python?
I'm currently writing a module for a customer to handle a user's sieve mail filter files. I am required to use python and much to my disappointment I could not find a nice library/package for handling ...
0
votes
0answers
20 views
Using pythonic style lists and variable in Sieve mail filtering scripts
I want to use such a list and use every element of this list in Sieve filtering.
MY_List = ["a", "aa", "abc"]
for element in MY_List; do
if allof (
header :contains ["List-Id"] ...
0
votes
1answer
232 views
How can I link against the PostgreSQL libs when I compile Cyrus's seiveshell?
I maintain a software stack consisting of Perl and Cyrus IMAP among other things.
Perl seems to be working fine and Cyrus cyradm (a perl script) works fine too. However, sieveshell will not execute ...
0
votes
9answers
2k views
Finding composite numbers
I have a range of random numbers. The range is actually determined by the user but it will be up to 1000 integers. They are placed in this:
vector<int> n
and the values are inserted like ...