At how many games at what time control?slobo wrote:It seems Bright is a little stronger than Belka.
1 game doesn't prove anything.
Moderator: Ras
At how many games at what time control?slobo wrote:It seems Bright is a little stronger than Belka.
Bright seems ok unless we have missed something. It was looked at by those who could a long time before now.Ovyron wrote:At how many games at what time control?slobo wrote:It seems Bright is a little stronger than Belka.
1 game doesn't prove anything.
You didn't see it's re-written Fruit, others did see it... I have not to convince anybody. You programmers are seeing different things looking at the same source. It is at least weird, I would say...Uri Blass wrote:All will see?
I saw strelka's code and I do not see that it is rewritten fruit.
If it is released then you will need to explain also how you got the conclusion that it is rewritten fruit to convince programmers about it.
What is your idea about how has to look a re-written Fruit if not the way you just described in your post ?Uri Blass wrote: The fact that there is similiarity in evaluation components does not mean that it is rewritten fruit.
Ideas are free to use and using fruit's evaluation rules with different weights in a different structure that is clearly not copy and past from fruit is clearly allowed.
Uri
GenoM wrote:You didn't see it's re-written Fruit, others did see it... I have not to convince anybody. You programmers are seeing different things looking at the same source. It is at least weird, I would say...Uri Blass wrote:All will see?
I saw strelka's code and I do not see that it is rewritten fruit.
If it is released then you will need to explain also how you got the conclusion that it is rewritten fruit to convince programmers about it.
What is your idea about how has to look a re-written Fruit if not the way you just described in your post ?Uri Blass wrote: The fact that there is similiarity in evaluation components does not mean that it is rewritten fruit.
Ideas are free to use and using fruit's evaluation rules with different weights in a different structure that is clearly not copy and past from fruit is clearly allowed.
Uri
Regards,
Geno
Code: Select all
Belka 1.8.20 - Bright-0.2c 20.0 - 10.0 +14/-4/=12 66.67%
GenoM wrote:You didn't see it's re-written Fruit, others did see it... I have not to convince anybody. You programmers are seeing different things looking at the same source. It is at least weird, I would say...Uri Blass wrote:All will see?
I saw strelka's code and I do not see that it is rewritten fruit.
If it is released then you will need to explain also how you got the conclusion that it is rewritten fruit to convince programmers about it.
What is your idea about how has to look a re-written Fruit if not the way you just described in your post ?Uri Blass wrote: The fact that there is similiarity in evaluation components does not mean that it is rewritten fruit.
Ideas are free to use and using fruit's evaluation rules with different weights in a different structure that is clearly not copy and past from fruit is clearly allowed.
Uri
Regards,
Geno
I don't quite understand this. We know the guy used Fruit as its base and then put disassembled evaluation values from Rybka 1.0 Beta in there.Orlov wrote:examples from kasparovchess:
from strelka
struct entry_t {
unsigned int lock;
unsigned __int16 move;
char depth;
unsigned char date;
__int16 min_value;
__int16 max_value;
char move_depth;
unsigned char flags;
char min_depth;
char max_depth;
};
from fruit
struct entry_t {
uint32 lock;
uint16 move;
sint8 depth;
uint8 date;
sint8 move_depth;
uint8 flags;
sint8 min_depth;
sint8 max_depth;
sint16 min_value;
sint16 max_value;
};
from strelka
if (moves != NULL) moves[-1] = 0; // Das ist UCI
from fruit
if (moves != NULL) { // "moves" present
ASSERT(moves>fen);
moves[-1] = '\0'; // dirty, but so is UCI
}
Christopher Conkie wrote: Bright seems ok unless we have missed something. It was looked at by those who could a long time before now.
The only strange thing we found was in an early version which had some UCI commands in there. Bright was a winboard engine back then iirc. You can see now its UCI. Maybe he was implementing UCI at the time.
Christopher