![]() |
|
|
#45 |
|
"Mark"
Apr 2003
Between here and the
11000110100102 Posts |
|
|
|
|
|
|
#46 |
|
Jun 2003
110001011102 Posts |
I have a set of numbers k*b^n+-1 where k,b,n have no particular pattern. PFGW is extremely slow to trial factor them before PRP testing.
Srsieve is much faster... but I was wondering if there was anything else that could be faster? |
|
|
|
|
|
#47 |
|
"Mark"
Apr 2003
Between here and the
18D216 Posts |
If you have fixed k, b, and c then sr2sieve. If fixed b, n, and c, then fbncsieve. If more than one vary, then you are somewhat out of luck unless there is a pattern.
|
|
|
|
|
|
#48 |
|
Jun 2003
2×7×113 Posts |
|
|
|
|
|
|
#49 | |
|
Jun 2003
117328 Posts |
Quote:
Hence rogue was suggesting that you combine all your candidates and sieve them in one go -- provide it is one of the forms that he suggested. If you have a range of k values and n values both, it might be doable with ppsieve. To reiterate, one at a time, bad, all at once, good. |
|
|
|
|
|
|
#50 |
|
"Mark"
Apr 2003
Between here and the
2·32·353 Posts |
|
|
|
|
|
|
#51 |
|
Dec 2011
After milion nines:)
1,451 Posts |
Can you compile it with all dll-s that program need? It is little problem to start program few times until you find and download dll files program need to start
Thanks |
|
|
|
|
|
#52 |
|
"Mark"
Apr 2003
Between here and the
2·32·353 Posts |
Possibly. Can you install the mingw64 runtime? You can probably do that before I have time to build an exe with static libraries.
|
|
|
|
|
|
#53 |
|
Einyen
Dec 2003
Denmark
2·1,579 Posts |
You should test the speed. srsieve was faster than newpgen for me when factoring 1*2^n-3 but that was for very few n values, so if it is a large range newpgen might be faster.
|
|
|
|
|
|
#54 |
|
Einyen
Dec 2003
Denmark
2×1,579 Posts |
When I use fnsieve to sieve a c-range of 10^9 it takes like 2min before it says "Beginning sieve at p=3." and even longer if I use a range of 4*10^9. It is on a slow laptop but still takes sometimes on my newest computer as well.
I'm just wondering what it is doing? Is it actually trial factoring with p=3 during that time even if it says beginning sieve afterwards? Last fiddled with by ATH on 2018-07-23 at 23:14 |
|
|
|
|
|
#55 | |
|
Jun 2003
10011110110102 Posts |
Quote:
|
|
|
|
|