mersenneforum.org  

Go Back   mersenneforum.org > Prime Search Projects > Conjectures 'R Us

Reply
 
Thread Tools
Old 2009-06-04, 06:37   #155
Svenie25
 
Svenie25's Avatar
 
Aug 2008
Good old Germany

8D16 Posts
Default

Done bothe. The email to you with success and switched off the authentication without.
Svenie25 is offline   Reply With Quote
Old 2009-06-20, 18:13   #156
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24×397 Posts
Default PRPNet 2.2.1 Released

Here are changes from 2.2.0:
  • Server: Add ability to expire tests (see prpserver.delay for information).
  • Server: Check for pending tests before removing candidates from the server.
  • Server: Add support for Twin Prime searches.
  • Server: Remove candidates after a successful test if there is no double-ckecking.
  • Client: Check for existence of workunit on server before sending rest of message.
  • Client: Add support for Twin Prime searches.
  • Client: Modularized code for the handling of helper programs.
  • Client: Do not return immediately when a prime/prp is found so that no tests are abandoned.
  • Client: Use -k feature added in PFGW 1.3.

and from 2.2.1
  • Server: More changes to prpserver.delay to remove first test checks. The server will no longer send the same test to two clients unless one of the client's has missed the expiration deadline.
  • Client: Fix a segfault if communication with the server is broken while sending workunits back.
  • Client: Fixed issue with counting of completed and current work units.
  • Client: The client will drop tests that are not known on the server.

You can d/l it from here.

BTW, the 2.2.x client will only work with a 2.2.x server. 2.1.x clients will work a 2.2.x server.

Last fiddled with by rogue on 2009-06-20 at 18:14
rogue is offline   Reply With Quote
Old 2009-06-24, 09:08   #157
Svenie25
 
Svenie25's Avatar
 
Aug 2008
Good old Germany

100011012 Posts
Default

Quote:
Server: Add support for Twin Prime searches.
Is there a special header needed for the candidatesfiles for twins?
Svenie25 is offline   Reply With Quote
Old 2009-06-24, 12:24   #158
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24×397 Posts
Default

Quote:
Originally Posted by Svenie25 View Post
Is there a special header needed for the candidatesfiles for twins?
The twin prime search is only for k*b^2+/-1 numbers. The candidates file should contain that +1 form. The client will test the +1 form. If that is PRP or prime, then the client will also test the -1 form. If the +1 form is composite then a test for the -1 form is not required.
rogue is offline   Reply With Quote
Old 2009-06-24, 12:33   #159
Mini-Geek
Account Deleted
 
Mini-Geek's Avatar
 
"Tim Sorbera"
Aug 2006
San Antonio, TX USA

17·251 Posts
Default

Quote:
Originally Posted by rogue View Post
The twin prime search is only for k*b^2+/-1 numbers.
I think you mean n. Or maybe k*2^n+/-1.
Quote:
Originally Posted by rogue View Post
The candidates file should contain that +1 form. The client will test the +1 form. If that is PRP or prime, then the client will also test the -1 form. If the +1 form is composite then a test for the -1 form is not required.
Isn't it faster (at least with b=2) to check the -1 form? It would save time to check the -1 form first, then only check the +1 form if the -1 is PRP/prime. I know that LLR checks the -1 first, at least for b=2.

Last fiddled with by Mini-Geek on 2009-06-24 at 12:39
Mini-Geek is offline   Reply With Quote
Old 2009-06-24, 15:17   #160
mdettweiler
A Sunny Moo
 
mdettweiler's Avatar
 
Aug 2007
USA (GMT-5)

3×2,083 Posts
Default

Quote:
Originally Posted by Mini-Geek View Post
Isn't it faster (at least with b=2) to check the -1 form? It would save time to check the -1 form first, then only check the +1 form if the -1 is PRP/prime. I know that LLR checks the -1 first, at least for b=2.
Actually, there is no speed difference between testing the -1 and +1 sides; thus, on a file sieved for a twin search (i.e. with factors removed from both sides), either side can be searched arbitrarily with no speed penalty.
mdettweiler is offline   Reply With Quote
Old 2009-06-25, 09:58   #161
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

101×103 Posts
Default

Quote:
Originally Posted by mdettweiler View Post
Actually, there is no speed difference between testing the -1 and +1 sides; thus, on a file sieved for a twin search (i.e. with factors removed from both sides), either side can be searched arbitrarily with no speed penalty.
Where have you gotten that info. from? Have you tested a Riesel and a Proth prime of the same size?

It has been my experience with LLR that Riesel's test faster than Proth's.

Or are you referring to Phrot in this case?
gd_barnes is online now   Reply With Quote
Old 2009-06-25, 11:55   #162
Mini-Geek
Account Deleted
 
Mini-Geek's Avatar
 
"Tim Sorbera"
Aug 2006
San Antonio, TX USA

17·251 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
Where have you gotten that info. from? Have you tested a Riesel and a Proth prime of the same size?

It has been my experience with LLR that Riesel's test faster than Proth's.

Or are you referring to Phrot in this case?
After he posted the info I tested it on the largest known twin prime pair, (ran both in LLR and compared times) and it's correct.
Code:
2003663613*2^195000-1 is prime!  Time : 130.578 sec.
2003663613*2^195000+1 is prime!  Time : 130.273 sec.
Mini-Geek is offline   Reply With Quote
Old 2009-06-25, 12:51   #163
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

18D016 Posts
Default PRPNet 2.2.2 Released

This is patch release to 2.2.1. The only changes are to the client:
  • Fixed issue with restarting client where it would not handle some start options correctly.
  • Modified to log messages on the client when the server refuses the workunit. In these cases the client will drop the workunit so that it can continue doing other work for the server.

You can d/l it from here.
rogue is offline   Reply With Quote
Old 2009-06-25, 15:55   #164
mdettweiler
A Sunny Moo
 
mdettweiler's Avatar
 
Aug 2007
USA (GMT-5)

186916 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
Where have you gotten that info. from? Have you tested a Riesel and a Proth prime of the same size?

It has been my experience with LLR that Riesel's test faster than Proth's.

Or are you referring to Phrot in this case?
I haven't done any actual testing, though I've heard this in a number of places. And, Mini-Geek's testing seems to bear out this theory.
mdettweiler is offline   Reply With Quote
Old 2009-07-17, 13:08   #165
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24·397 Posts
Default PRPNet 2.2.3 Released

Here is a list of changes:
  • prpserver: Add client ID to log files.
  • prpserver: Remove support for 1.x clients.
  • prpclient: Pass correct flag to PFGW for Primorial/Factorial primality tests.
  • prpclient: Set residue to PRIME when PFGW does primality test and number is prime.
  • prpclient: Delete save file if there are no work units.
  • prpclient: Use PFGW for non-base 2 numbers as v3.1 is faster than LLR and phrot.

You can d/l it from here.
rogue is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
PRPNet 5.4.3 Released rogue Software 178 2021-06-24 11:56
PSP goes prpnet ltd Prime Sierpinski Project 86 2012-06-06 02:30
PRPNet 4.0.0 Released rogue Software 84 2011-11-16 21:20
PRPNet 4.0.1 Released Joe O Sierpinski/Riesel Base 5 1 2010-10-22 20:11
PRPNet 3.0.0 Released rogue Conjectures 'R Us 220 2010-10-12 20:48

All times are UTC. The time now is 09:44.


Tue Jul 27 09:44:51 UTC 2021 up 4 days, 4:13, 0 users, load averages: 2.41, 2.15, 1.96

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.