I know what I am saying and writing.
Have a good conversation and try not to choke on your enormous absolute knowledge, unattainable by all the rest of humankind.

Blissful ignorance...
Code: Select all
//Check if file signature is matching
auto check_signature = [&]() -> bool
{
if (signature.empty())
return true;
//If inpout length is less than the signature length then it can't be a match!
if (inputLength < signature.length())
return false;
//Start from the beginning of the file
input.seekg(ios::beg);
//Allocate memory for signature
char* sigBuffer = (char*)malloc(signature.length());
if (!sigBuffer)
{
sync_cout << "info string Failed to allocate " << signature.length() << " bytes for experience signature verification" << sync_endl;
return false;
}
if (!input.read(sigBuffer, signature.length()))
{
free(sigBuffer);
sync_cout << "info string Failed to read " << signature.length() << " bytes for experience signature verification" << sync_endl;
return false;
}
bool signatureMatching = memcmp(sigBuffer, signature.c_str(), signature.length()) == 0;
//Free memory
free(sigBuffer);
return signatureMatching;
};
Hello Marco,Amos 4ever wrote: ↑Thu Jun 29, 2023 10:20 am
Hi Sedat,
just a clarification about me..
All version 2 experience files are based on SugaR's signature including Eman.
Best regards
People don't need to harm your prestige, you do it perfectly yourself, evidence :Sedat Canbaz wrote: ↑Thu Jun 29, 2023 7:05 amOn other hand,
I see also that you tried everything about damaging
my prestige! but as usual, all without success..!!
Because, honesty is the best policy!
Sedat Canbaz wrote: ↑Thu Jun 29, 2023 7:05 am...I realized to re-name it because the target was that StockfishMZ eng to use it as default...
...So I see that here there is nothing wrong with that!...
Sedat Canbaz wrote: ↑Thu Jun 29, 2023 10:36 pm...I am not a exp programmer, so no much idea about the based percentages...
This has already been established by people far more knowledgeable than you in learning engines :
Hey botunnet = Deedsbotunnet wrote: ↑Fri Jun 30, 2023 11:21 am
People don't need to harm your prestige, you do it perfectly yourself, evidence :
Sedat Canbaz wrote: ↑Thu Jun 29, 2023 10:36 pm...I am not a exp programmer, so no much idea about the based percentages...
SFMZ was polluted for at least 99.5% (=100 * (326-1.5) / 326) of your unfair tourney
...
https://banksiagui.com/forums/viewtopic.php?p=130#p130Sedat Canbaz wrote: ↑Fri Jun 30, 2023 5:29 pm...So do you have the original link of ProteusSF RBE 008b?...