misc improvements

This commit is contained in:
k
2025-06-19 19:40:11 -04:00
parent eaaa0ca24d
commit e1fe8ee603
4 changed files with 13 additions and 29 deletions

View File

@@ -12,7 +12,7 @@
#define QUEEN_VALUE 900
#define KING_VALUE 20000
#define INF 9000000
#define MAX_DEPTH 3 // Adjustable depth
#define MAX_DEPTH 3
int evaluateBoard(game *game);
void makeMove(game *g, move* m);
@@ -63,7 +63,6 @@ int evaluateBoard(game *game) {
}
void makeMove(game *g, move* m) {
//should replace inside of PlayMoves but im lazy
long long from_bit = 1LL << m->From;
long long to_bit = 1LL << m->To;