Bryan Hofmann wrote:YvesLejeail wrote:Thanks for these wise answers !
I don't use EGTB. But, the important points seem to programme it by yourself, as for the other algorithmes. For example, you know that Alpha_Beta algorithm exists, you have seen some pseudo-C algorithms on the web, but you have to practically programme it by yourself. There are plenty of tips, tricks, traps, that are related to the programmation of the algorithm. It is the same for the Quiescence, the SEE, ... If you study the sources of an other programme, and just "copy" the code for example in changing the variable names, you should not think it is your creation, at the end.
From a practical point of view, we could imagine to have different categories in the computer chess competitions like :
- programmed from scratch
- programmes started from sources with elo <1800 (TSCP for instance)
It is a big mistake to start with TSCP. It is a fine program to get a quick understanding of how a chess program works. But it will be a lot harder to turn into a powerhouse than if you literally started from scratch.
I know a lot of people who have started with a simple program and tried to write a killer chess program from it. You can eventually get there, but it is a tough road.
The global variables in TSCP make it particularly onerous for going to multiple threads.
- programmes started from sources with elo <2200 (there may be some)
- etc...
Thus, the merit of the programmer could be measured to the progress he has made to the original engine. But all that is pure dream, since it is not possible to verify the declarations of authors.
The cloning problem in chess programming looks like drugs problem in sport. But in sport they have installed drug controls. We have not the equivalent in chess competitions; we could have that especially for the big competitions (controls of sources). It is an other irrealistic dream.
Yves
My reply about the EGTB was a bit of tounge and cheek in that the EGTB code is so large it would almost always be more then 10% of the chess engine code. As for trying to define what a clone is, I believe it is mission impossible as everyone has their own ideas and they all differ.
Bryan
I think that a clone definition should be divided into two categories:
1. Legal clones
2. Illegal clones
If I had my way, beginners would be writing programs with the strength of Scorpio. And why not? It's not much more complicated than TSCP.
There are a lot of people who have struggled mightily to get a working chess program going and they are extremely miffed when someone starts with a working program. I guess that if they tried the same path, they would see that it is really not much of an advantage.
I do agree that one could start with Fruit or Glaurung and write a strong program quickly. If you followed the GPL license, there is nothing wrong with that.
I guess that this path also will be a mistake. When a chess engine gets refined with lots of features, it becomes much more difficult to fully comprehend. Now, you might take some powerful engine and spin a few knobs and turn out a stronger engine. But because you do not fully understand the complete machine, you will be overtaken by the original author (if he cares to keep moving forward). It would be a better idea (I think) to take a well designed skeleton like Viper and move forward with that. Then all of your innovations will be completely understood and you can continue to advance rapidly.
It does not take a giant pile of code to make a strong engine quickly (look at thinker, for example). It is much more important to code the fundamental algorithms with sure correctness. Then, your progress will be rapid.
So I am saying that it is a mistake to clone a really strong engine in the long run.
Cloning of source code is not a bad thing (in general) it is a good thing. Otherwise, we would all have to reinvent the wheel instead of simply using source code libraries and things of that nature. The correct place to draw the line of what is acceptable and what is unacceptable is when people violate legal agreements. This is criminial activity and cannot be tolerated by any respectable group or body. Legal use of code should not be frowned upon, but independent bodies can make their own decisions if they want to allow people who have legal forks of projects to compete in contests or not.
For things like CCRL or CEGT, I see no harm at running legal clones. It's really the only way for us to find out the the person who made the fork had a good idea or not. Now, as far as world championship events, I think that the engine should be largely original (and nobody on earth can claim more than that).