Page 1 of 1

<HT> in Crafty thinking output?

Posted: Sat Jan 31, 2009 10:07 am
by cyberfish
What does "<HT>" in Crafty thinking output mean?

I have Googled and Ctrl-F'ed Crafty documentation but couldn't find any reference to it.

Re: <HT> in Crafty thinking output?

Posted: Sat Jan 31, 2009 11:12 am
by zullil
cyberfish wrote:What does "<HT>" in Crafty thinking output mean?
I assume it means that the search reached a position already stored in a Hash Table.

Re: <HT> in Crafty thinking output?

Posted: Sat Jan 31, 2009 11:16 am
by Guenther
cyberfish wrote:What does "<HT>" in Crafty thinking output mean?

I have Googled and Ctrl-F'ed Crafty documentation but couldn't find any reference to it.
It means the line is extracted from the hashtables.

Guenther

Re: <HT> in Crafty thinking output?

Posted: Sat Jan 31, 2009 11:23 am
by Denis P. Mendoza
Guenther wrote:
cyberfish wrote:What does "<HT>" in Crafty thinking output mean?

I have Googled and Ctrl-F'ed Crafty documentation but couldn't find any reference to it.
It means the line is extracted from the hashtables.

Guenther
That's right. Bob also explained it in the Crafty code:

Code: Select all

.....Change to hashing code so that we *
 *           can now determine that a hash entry came from the EGTB so that    *
 *           PVs are displayed with <EGTB> when appropriate, not <EGTB> if it  *
 *           originally came from the EGTB but later <HT> when it was picked   *
 *           up from the hash table instead. .....

Re: <HT> in Crafty thinking output?

Posted: Sat Jan 31, 2009 7:56 pm
by cyberfish
Ah okay, thanks!