Should be
r3rbk1/1q1b1ppp/3ppB2/1p6/p3P3/PB2R1Q1/1PP2PPP/4R1K1 w
Search found 2184 matches
- Sat Dec 06, 2008 10:45 am
- Forum: Computer Chess Club: General Topics
- Topic: Gosu 0.16 v Thor's Hammer 2.28 (queen sac)
- Replies: 3
- Views: 898
- Fri Dec 05, 2008 6:36 pm
- Forum: Computer Chess Club: General Topics
- Topic: Denis, Norman, JAblett- Can you help me with Grapefruit?
- Replies: 16
- Views: 3057
Re: Denis, Norman, JAblett- Can you help me with Grapefruit?
Written by France's Fabien Letouzey in object-oriented C++ Actually the Fruit code is not object oriented by the common definition of that term (not a single class is used). Furthermore it uses only very few features of C++ and might as well have been written in C. I tend to think of the Fruit sour...
- Fri Dec 05, 2008 12:09 pm
- Forum: Computer Chess Club: General Topics
- Topic: An Infinitely Bad Experience
- Replies: 3
- Views: 1017
Re: An Infinitely Bad Experience
I wonder why it was necessary to design a new protocol for this server. FICS works fine and is well tested. Furthermore it is cross platform and supported by many clients both closed and open source ones. What is the advantage of a new protocol for which there is only a proprietary windows client? M...
- Wed Dec 03, 2008 5:00 pm
- Forum: Computer Chess Club: General Topics
- Topic: Denis, Norman, JAblett- Can you help me with Grapefruit?
- Replies: 16
- Views: 3057
Re: Denis, Norman, JAblett- Can you help me with Grapefruit?
Linux version of 1.0a3 seems to work fine on dual core 64bit
I only tried a gcc compile.

I only tried a gcc compile.
- Wed Dec 03, 2008 3:38 pm
- Forum: Computer Chess Club: General Topics
- Topic: Grape Fruit
- Replies: 18
- Views: 4902
Re: Grape Fruit
In polyglot you can set UCI options.with winboard/polyglot on a core2 duo, there's no way to prevent grapefruit from using both cores.
- Wed Dec 03, 2008 10:30 am
- Forum: Computer Chess Club: General Topics
- Topic: Hello again ComputerChess !
- Replies: 10
- Views: 2417
Re: Hello again ComputerChess !
About Polyglot book format:i dont have any idea,i will think about it.
Well if you think about it I am curious to learn about practical obstacles. I am fairly ignorant about testing myself.
Best regards,
Michel
- Wed Dec 03, 2008 7:27 am
- Forum: Computer Chess Club: General Topics
- Topic: Hello again ComputerChess !
- Replies: 10
- Views: 2417
Re: Hello again ComputerChess !
Hi Sedat, Are your tournaments only open to ctg books? I am asking since some people are trying to promote the completely free and open Polyglot book format. This format is easy to implement and is already understood by a number of programs (most recently Hamsters). There are a number of publicly av...
- Mon Nov 17, 2008 7:12 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: UCI protocol and SMP
- Replies: 46
- Views: 13452
Re: UCI protocol and SMP
BTW running way more threads than processors is not a good way to debug. You burn 90% of the total time spinning on locks which is a total waste We all know that running more active threads than processes costs performance. But we are talking about testing here. Running an engine with debug code en...
- Sat Nov 15, 2008 2:03 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: UCI protocol and SMP
- Replies: 46
- Views: 13452
Re: UCI protocol and SMP
I do not agree. This is very useful for testing.But you will _never_ with any chess program run more processes than you have processors. And I do mean _never_.
- Fri Nov 14, 2008 7:27 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: UCI protocol and SMP
- Replies: 46
- Views: 13452
Re: UCI protocol and SMP
Threads doesn't work, not all programs use threads I know you'd say that :) But processes and threads are basically the same thing. On Linux threads are created by the clone call which is a sort of fork except that all memory is (or can be) shared. Internally everything is managed by the scheduler....