Search found 3 matches

by MathAddict
Mon Dec 28, 2015 1:08 am
Forum: Programming and Technical Discussions
Topic: Hashhit Percentage?
Replies: 0
Views: 2772

Hashhit Percentage?

My engine has a pretty low hashhit % (3.12%). I was wondering is this normal or is there something wrong with my Transposition Table.
I'm calculating the % as (hashhits/nodes)*100.
by MathAddict
Sun Dec 06, 2015 6:12 am
Forum: Programming and Technical Discussions
Topic: Little-Endian or Big-Endian?
Replies: 2
Views: 2481

Little-Endian or Big-Endian?

I was wondering if it is better to have little-endian representation of squares(a1=0,h8=63) or big-endian(h1=0,a8=63).
Currently I am using big-endian but I see that engines like Stockfish use little-endian so I was wondering if little-endian can be optimized to be faster.
by MathAddict
Mon Oct 26, 2015 2:30 pm
Forum: Programming and Technical Discussions
Topic: To shift or not to shift
Replies: 14
Views: 8275

Re: To shift or not to shift

On a side note, are addition and multiplication operators faster than array lookups?