mersenneforum.org  

Go Back   mersenneforum.org > Great Internet Mersenne Prime Search > PrimeNet

Reply
 
Thread Tools
Old 2006-12-29, 15:25   #1
S485122
 
S485122's Avatar
 
Sep 2006
Brussels, Belgium

2·3·281 Posts
Default worktodo.ini format

If I read all the different sources of information well the following are the different formats of the workunits in worktodo.ini :

Test=exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

Factor=exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

Dblchk=exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

Pfactor=k,b,n,c,how_far_factored,ll_tests_saved_if_factor_found
(New style)

Pminus1=k,b,n,c,B1,B2[,B2_start]
(New style) Tests numbers of the form k*b^n+c.

ECM2=k,b,n,c,B1,B2,curves_to_do[,specific_sigma,B2_start]
(New style) Tests numbers of the form k*b^n+c.

AdvancedFactor=start_exponent,end_exponent,b1,b2
You can factor a range of exponents for certain factors between b1 and b2 bits inclusive. This feature is likely to be deleted in a future release. AdvancedFactor uses the file p0000000 as the name of the continuation file. This causes problems if you try to run two prime95s doing Advanced/Factoring on a dual-CPU machine from the same directory. Add this line to prime.ini to use a different Advanced/Factor continuation file name:
AdvFacFileName=filename
In AdvancedFactor, a start exponent of 8888 forces reading of a file called factors. The program then tries to refind each factor using the factoring code. This is not an efficient way to verify factors as it goes through the entire sieving process and trial factoring many potential factors.

Pfactor=exponent,how_far_factored,double_check_flag
(Old style)

Pminus1=exp,B1,B2,(-1/+1)[,B2_start]
(Old style) The first value is the exponent. The second value is bound #1. The third value is bound #2. The fourth value is 0 for 2^N-1 factoring, 1 for 2^N+1 factoring. The fifth value is no longer used.

ECM=exponent,B1,B2,curves_to_do,unused[,specific_sigma,plus1,B2_start]
(Old style) ECM=exp,B1,0,curves,0,curve to test,(-1/+1),0
The first value is the exponent. The second value is bound #1. The third value is bound #2 - leave it as zero. The fourth value is the number of curves to test. The fifth value is no longer used. The sixth value is the specific curve to test - it is only used in debugging. The seventh value is 0 for 2^N-1 factoring, 1 for 2^N+1 factoring. The eighth value is no longer used.
S485122 is offline   Reply With Quote
Old 2008-11-02, 19:36   #2
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23·3·5·72 Posts
Default

sorry to resurect an ancient thread
could someone post an updated version for v25.7
henryzz is offline   Reply With Quote
Old 2008-11-03, 02:17   #3
Uncwilly
6809 > 6502
 
Uncwilly's Avatar
 
"""""""""""""""""""
Aug 2003
101×103 Posts

100110001110102 Posts
Default

And mersennewiki it, too.
Uncwilly is online now   Reply With Quote
Old 2008-11-03, 06:38   #4
S485122
 
S485122's Avatar
 
Sep 2006
Brussels, Belgium

2·3·281 Posts
Default

Basically, and at a first glance nothing has changed. Except

"Dblchk" changed to "DoubleCheck".

All PrimeNet assignmens have an Assignment Identification (AID) between the "=" sign and the exponent :

Test=AID,exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

Factor=AID,exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

DoubleCheck=AID,exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

I suppose the same goes for PrimeNet ECM work...

I think the old style lines do not work anymore (you could test it :-)

Jacob

(You could also have looked at your worktodo.txt and the documentation, do a few tests and respond yourself ;-)
S485122 is offline   Reply With Quote
Old 2008-11-03, 06:49   #5
ckdo
 
ckdo's Avatar
 
Dec 2007
Cleves, Germany

2×5×53 Posts
Default

Quote:
Originally Posted by S485122 View Post
Factor=AID,exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)
It is actually "Factor=[AID,]exponent,how_far_factored,how_far_to_factor"...

P-1 makes no sense in this context ;)

how_far_to_factor *may* be optional, not sure - factoring one additional bit and factoring to the suggested level both seem plausible if it is allowed.
ckdo is offline   Reply With Quote
Old 2008-11-03, 14:54   #6
mdettweiler
A Sunny Moo
 
mdettweiler's Avatar
 
Aug 2007
USA (GMT-5)

141518 Posts
Default

Quote:
Originally Posted by S485122 View Post
Basically, and at a first glance nothing has changed. Except

"Dblchk" changed to "DoubleCheck".

All PrimeNet assignmens have an Assignment Identification (AID) between the "=" sign and the exponent :

Test=AID,exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

Factor=AID,exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

DoubleCheck=AID,exponent,how_far_factored,P-1 done
(P-1 done is equal to 0 if no P-& factorising has been done ; 1 otherwise)

I suppose the same goes for PrimeNet ECM work...

I think the old style lines do not work anymore (you could test it :-)

Jacob

(You could also have looked at your worktodo.txt and the documentation, do a few tests and respond yourself ;-)
You forgot this one :

PRP=k,b,n,c[,how_far_factored,tests_saved][,known_factors]
mdettweiler is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting CWI format to ggnfs format xilman Msieve 2 2015-11-27 09:54
CWI format --> GGNFS format R.D. Silverman Msieve 25 2013-04-17 07:40
Format for .alq files schickel Aliquot Sequences 5 2009-04-02 12:44
Date format Mini-Geek Lounge 21 2007-03-17 01:36
What is the format of worktodo.ini for a^n+/-b^n jasong Factoring 1 2006-04-18 02:11

All times are UTC. The time now is 01:03.


Sat Jul 17 01:03:34 UTC 2021 up 49 days, 22:50, 1 user, load averages: 1.77, 1.59, 1.45

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.