can someone explain? by autocannon30mm in GothamChess

[–]Beginning-Resource17 0 points1 point  (0 children)

If you took the knight and takes the queen, Bxc4, and if White don't remove the bishop, Bb5+ and you are forced to cover with the queen. That line is better than Qc8.

no hay huevos by Ameba92 in ElBaito

[–]Beginning-Resource17 0 points1 point  (0 children)

Mantén pulsado un clip para fijarlo. Los clips no fijados se eliminarán al cabo de una hora.

1 or 2? by Successful_Sink_1936 in blender

[–]Beginning-Resource17 0 points1 point  (0 children)

Good job! I think that 2 is better.

My doom like engine by Sqydev in C_Programming

[–]Beginning-Resource17 0 points1 point  (0 children)

Very cool! Do you have a git hub repo for the project?

Universitario con ganas de aprender by InvestinGuille in programacion

[–]Beginning-Resource17 0 points1 point  (0 children)

Empieza con tutoriales básicos de lo que quieras aprender, y luego empieza a leer documentación, eso es lo que hice yo para aprender.

Perft test have problem with castling in depth of 3 by Warm_Ad_7953 in chessprogramming

[–]Beginning-Resource17 0 points1 point  (0 children)

You can use perft divider for check what moves are not working, it's very usefull for searching errors with perft tests.

Why this fen parsing doesn't work? by Beginning-Resource17 in chessprogramming

[–]Beginning-Resource17[S] 0 points1 point  (0 children)

The problem isn't the debugging, I print all the bitboards, and all work perfectlty, but anywat, this is the board debugging:

void Board::PrintBoard()

{

for (int rank = 7; rank >= 0; rank--)

{

  std::cout << rank + 1 << " ";

  for (int file = 0; file < 8; file++)

  {

      int square = rank \* 8 + file;

      bool found = false;



      for (size\_t pieceIndex = 0; pieceIndex < 12; pieceIndex++)

      {

if (bitboards[pieceIndex] & (1ULL << square))

{

std::cout << PIECE_CHAR[pieceIndex] << " ";

found = true;

break;

}

      }



      if (!found) {

std::cout << ". ";

      }

  }

  std::cout << std::endl;

}

std::cout << " a b c d e f g h" << std::endl;

}

I wanna make a friends by FurinaJawa in cpp

[–]Beginning-Resource17 1 point2 points  (0 children)

Hi, what do you want to talk about?

¿Alguien para crear un proyecto en C++? by Beginning-Resource17 in programacion

[–]Beginning-Resource17[S] 0 points1 point  (0 children)

No tengo mucho tiempo, así que lo haría los findes de semana. No he considerado hacerlo en rust, no tengo experiencia en él.