Search found 206 matches
- Tue Dec 01, 2020 2:15 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Python chess engine
- Replies: 14
- Views: 2445
Re: Python chess engine
python too slow
- Mon Sep 28, 2020 8:14 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Re-activation Programmer Code of Honor
- Replies: 57
- Views: 12529
- Tue Sep 08, 2020 11:02 am
- Forum: Computer Chess Club: General Topics
- Topic: Official Release of Ethereal 12.50
- Replies: 23
- Views: 4755
Re: Official Release of Ethereal 12.50
Great work!AndrewGrant wrote: ↑Tue Sep 08, 2020 10:05 amHello all. Today we are officially releasing Ethereal 12.50.
- Tue Sep 08, 2020 9:08 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: I don't want to give up
- Replies: 70
- Views: 17307
Re: I don't want to give up
When did "giving up" become an option? :wink: I'm tired of explaining this but for those that have not heard it before. I was born with a learning disability. I guess more accurately a memory disability. I can't remember from one minute to the next what I am doing especially when I lose focus. And ...
- Tue Sep 08, 2020 6:20 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Is cloning a hobby?
- Replies: 79
- Views: 14265
Re: Is cloning a hobby?
"Taking ideas is not a vice, it is a virtue. We have another word for this. It is called learning. But sharing ideas is an even greater virtue. We have another word for this. It is called teaching." But sometimes it’s different. You make your own code, find some ideas on your own, think to yourself...
- Fri Aug 21, 2020 8:43 pm
- Forum: Computer Chess Club: General Topics
- Topic: Chess programming on YouTube: NOBODY CARES?
- Replies: 44
- Views: 9595
Re: Chess programming on YouTube: NOBODY CARES?
Главное что бы самому нравилось.
- Mon Aug 17, 2020 7:23 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Data structure choice for TT
- Replies: 35
- Views: 15108
- Tue Aug 11, 2020 9:12 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Using piece-square table score for move ordering
- Replies: 1
- Views: 1299
Re: Using piece-square table score for move ordering
Я в свое время пробовал по-разному, но лучшие результаты все равно были у обычной эвристики истории. Дело в том, что наибольшее значение в альфа-бета поиске имеет не сколько порядок силы ходов по убыванию, а вероятность как можно раньше найти самый сильный ход который вызовет отсечку по бете. Эврист...
- Tue Aug 11, 2020 7:40 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Data structure choice for TT
- Replies: 35
- Views: 15108
Re: Data structure choice for TT
PS: The 64 bit random generator: typedef unsigned long long u64; typedef unsigned long u32; typedef int Move; #define LOW16(x) ((x) & 0xFFFF) #define LOW32(x) ((x) & 0xFFFFFFFF) static u32 r_x = 30903, r_y = 30903, r_z = 30903, r_w = 30903, r_carry = 0; u32 _rand_32() { r_x = LOW32(r_x * 69069 + 1)...
- Wed Jul 01, 2020 3:35 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: knodes/s halved after improving eval
- Replies: 6
- Views: 1315