Computer Chess Club Archives


Search

Terms

Messages

Subject: Re: Depth vs Time

Author: Andrew Williams

Date: 11:15:23 06/24/02

Go up one level in this thread


On June 24, 2002 at 13:47:24, Gian-Carlo Pascutto wrote:

>On June 24, 2002 at 07:38:07, Andrew Williams wrote:
>
>>IIRC Junior measures depth differently to all other commercial programs.
>
>I don't remember who first said this, but:
>
>Amateur:
>
>printf("depth: %d", depth);
>
>Professional:
>
>printf("depth: %d", depth+2);
>
>Junior:
>
>printf("depth: %d", depth*2);
>
>--
>GCP

:-)

I've just added a "positional mode" to my program:

if(positionalMode) {
	fprintf(logFile, "NODES PER SECOND: %d", nps/2);
} else {
	fprintf(logFile, "NODES PER SECOND: %d", nps);
}

Andrew



This page took 0 seconds to execute

Last modified: Thu, 15 Apr 21 08:11:13 -0700

Current Computer Chess Club Forums at Talkchess. This site by Sean Mintz.