Computer Chess Club Archives


Search

Terms

Messages

Subject: Re: Questions about Lazy Eval.

Author: Volker Böhm

Date: 09:44:07 04/11/05

Go up one level in this thread


Hi,

best thing to do is test the Lazy-Eval decision and look at the cutted fen:

int Val;

Val = EvalPart1();

bool LeaveEval = FarOutOfWindow(Alpha, Beta, Val);
int LazyVal = Val;

Val += EvalPart2();

if (LeaveEval && IsInWindow(Val))
{
   LazyEvalError++;
   PrintFenAndCutInfo(LazyVal, Val);
}

Greetings Volker



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.