Search the web
Sign In
New User? Sign Up
openpfgw · Co-ordination of the OpenPFGW project
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1673 - 1702 of 2064   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1673
Hi Jim, Sorry it took so long to get back to you on this. The problem with decimal.o rears its head again: make[1]: *** No rule to make target `decimal.o',...
gchil0
Offline Send Email
Feb 4, 2005
2:51 am
1674
Yes, decimal.o has been removed. It has not been used since original primeform days. I simply removed it, but must have fergot to rip it out of the pfglue's...
jim_fougeron
Offline Send Email
Feb 4, 2005
12:20 pm
1675
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the openpfgw group. File :...
openpfgw@yahoogroups....
Send Email
Feb 4, 2005
1:13 pm
1676
ABC2 (137*2^$a-1)/3 a: from 27151 to 28101 step 2 The ABC2 file above gave a 476/476 failure rate, running PFGW Version 20041129.Win_Stable (v1.2 RC1d) [FFT...
David Broadhurst
djbroadhurst
Offline Send Email
Feb 7, 2005
6:57 am
1677
... PFGW's suboptimal for such types anyway, so I wouldn't use it for them if I were you: phil@nonospaz:GCN$ time ./glprov.athlon -q '(137*2^28101-1)/3' ...
Phil Carmody
thefatphil
Offline Send Email
Feb 7, 2005
8:46 am
1678
There is more than one way to skin a cat with PFGW (sometimes). Yes, the expressions (x*2^n-1)/3 are not optimal in PFGW. However, with the script file: ...
Jim Fougeron
jim_fougeron
Offline Send Email
Feb 7, 2005
12:41 pm
1679
The alpha does not behave "better". However, it is different numbers that are failing, for the most part. ----- Original Message ----- From: David...
Jim Fougeron
jim_fougeron
Offline Send Email
Feb 7, 2005
12:43 pm
1680
... Ah, I see, thanks, Jim. More generally, for N = (k*2^n +/- 1)/D use SCRIPT to compute Mod(b,N)^(N-1) = Mod(Mod(b,D*N)^(N-1),N) and then POWMOD gets to use...
David Broadhurst
djbroadhurst
Offline Send Email
Feb 7, 2005
7:50 pm
1681
... Even more general: N = (some_optimized_form)/D then SCRIPT Mod(b,N)^(N-1) = Mod(Mod(b,D*N)^(N-1),N) Keep in mind, that the "some_optimized_form" can be a...
jim_fougeron
Offline Send Email
Feb 7, 2005
8:29 pm
1682
SCRIPT DIM xr,137*2^74-1 DIMS st SET MINF,3 SET MAXF,200000 FACTORIZE xr SETS st,%d;FACTORFOUND PRINT st END PFGW Version 20041216.Win_Dev (Alpha/IBDWT 'caveat...
David Broadhurst
djbroadhurst
Offline Send Email
Feb 7, 2005
11:22 pm
1683
Yes, MAXF was "mis" spelled MAFX and MINF was MINX, so neither worked. I have been looking for a good place to send a new (win32 only) build. I guess now is a...
jim_fougeron
Offline Send Email
Feb 8, 2005
12:46 am
1684
A new version has been uploaded. WARNING!!!!! This version is highly experemental. I would NOT recommend using this for proving numbers, without using an...
jim_fougeron
Offline Send Email
Feb 8, 2005
3:18 am
1685
... Thanks. It's now factorizing OK and otherwise behaving. David...
David Broadhurst
djbroadhurst
Offline Send Email
Feb 8, 2005
4:43 am
1686
I've been using the 20041216 alpha version for about three weeks and have been able to write script files using the POWMOD function to make use of the new...
Phil Moore
philmoore2003
Offline Send Email
Feb 8, 2005
7:26 pm
1687
Several things, 1. The problem with the LEN(x[,y]) function, is that the mpz_sizeinbase() function in GMP will give the correct result, or one larger than the...
jim_fougeron
Offline Send Email
Feb 8, 2005
8:58 pm
1688
... checking ... pfgw -f0 -d -od -qlen(2^^200000033-1,2) PFGW Version 20050207.Win_Dev (Alpha/IBDWT 'caveat utilitor') Using v24fft.DLL, version FFTVer=24.9,...
jim_fougeron
Offline Send Email
Feb 8, 2005
10:17 pm
1689
... Now: pfgw -qsqrt(99) sqrt(99) trivially factors as: 3^2 pfgw -qsqrt(100) sqrt(100) trivially factors as: 2*5 pfgw -qsqrt(101) sqrt(101) trivially factors...
jim_fougeron
Offline Send Email
Feb 8, 2005
10:40 pm
1690
... plus 2 minutes of documentation?...
David Broadhurst
djbroadhurst
Offline Send Email
Feb 9, 2005
12:21 am
1691
less ;) but it IS there, in both pfgwdoc.txt and scriptfileformat.txt (at least there on my system ;) ----- Original Message ----- From: David...
Jim Fougeron
jim_fougeron
Offline Send Email
Feb 9, 2005
12:33 am
1692
... It appears mpz_sizeinbase() only looks at the number of bits. An exact result in base b can be found like this: First find the leading bits (e.g. 32 bits)...
Jens Kruse Andersen
jkand71
Offline Send Email
Feb 9, 2005
2:34 am
1693
I think your alternate solution is much better than we have now. It would not cause much overhead memory wise, as all we are doing is putting anouther Integer...
Jim Fougeron
jim_fougeron
Offline Send Email
Feb 9, 2005
3:27 am
1694
By simply using: len=mpz_sizeinbase(*(N->gmp()),base); if(len>1) { Integer I; I.Ipow(base,len-1); if (*N<I) --len; } I get: pfgw -d -od -f0 -qlen(10^^6000000) ...
Jim Fougeron
jim_fougeron
Offline Send Email
Feb 9, 2005
4:57 am
1695
Thanks, I'm sure the sqrt function will be useful. ... for ... version of GMP". ... little ... guess? ... I should add that I actually got a message that the...
Phil Moore
philmoore2003
Offline Send Email
Feb 9, 2005
7:35 pm
1696
In a message dated 09/02/2005 19:44:28 GMT Standard Time, moorep@... writes: ... for ... version of GMP". ... little ... guess? ... This is the same...
mikeoakes2@...
mikeoakes2
Offline Send Email
Feb 9, 2005
9:10 pm
1697
... moorep@l... ... data ... adequately, ... error ... alloca ... The error message is actually just a "generic" message. There is a try .. catch exception...
jim_fougeron
Offline Send Email
Feb 9, 2005
9:27 pm
1698
... Does that mean this problem can be fixed in the next version? Or should I try for some kind of work-around? Phil...
Phil Moore
philmoore2003
Offline Send Email
Feb 9, 2005
10:23 pm
1699
The problem has been (almost) fixed. the len function is 100% accurate, and quick with no additional memory allocation for base 2,4,8,16,32. For length of a...
jim_fougeron
Offline Send Email
Feb 9, 2005
10:40 pm
1700
... The last line makes no sense. "-1" disappeared in the expression. len(10^6000000) is 6000001. "trivially factors as" shouldn't be there with -f0, and...
Jens Kruse Andersen
jkand71
Offline Send Email
Feb 10, 2005
3:48 am
1701
I have a small request (or at least I think it is small). Could WinPFGW put the current line, PRP count/prime count, and PRP status into the tool tip text on...
Mark Rodenkirch
mgrogue
Offline Send Email
Feb 10, 2005
2:13 pm
1702
Good simple request. The format (while running, and not in "stealth" mode), will look like: "WinPFGW - line %d, %0.2f%% of %s (%d prps)" or "WinPFGW - line...
jim_fougeron
Offline Send Email
Feb 10, 2005
3:31 pm
Messages 1673 - 1702 of 2064   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help