Skip to content

Commit

Permalink
Version 2.0.0 (#239)
Browse files Browse the repository at this point in the history
* update README

* bump version
  • Loading branch information
knguy22 committed Mar 26, 2024
1 parent cbd03b6 commit 8928061
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.16)
project(Blocky VERSION 1.0)
project(Blocky VERSION 2.0.0)
set(CMAKE_CXX_STANDARD 20)
add_executable(Blocky src/main.cpp)

Expand Down
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,27 @@ Blocky is a UCI-compliant chess engine. It has implemented the following techniq
* Principle Variation Search
* Quiescent Search
* Null Move Pruning
* Reverse Futility Pruning
* Internal Iterative Reductions
* Late Move Reductions
* Late Move Pruning
* Transposition Tables Cutoffs
* Evaluation:
* Piece-Square Tables
* Tapered Evaluation
* Mop Up Evaluation
* Pieces
* Mobility (Bishop, Knight, Rook)
* Bishop Pair
* Pawns
* Passed Pawns
* Doubled Pawns
* Chained Pawns
* Phalanx Pawns
* Move Ordering:
* Transposition Table Moves
* MVV-LVA
* Killer Move Heuristic
* Butterfly History Heuristic
* Staged Move Generation
* Other Techniques:
* Magic Bitboards and Attack Tables
Expand Down
2 changes: 1 addition & 1 deletion src/uci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void printEngineInfo() {
std::getline(std::cin, input);
}

std::cout << "id name Blocky V1.0\n";
std::cout << "id name Blocky V2.0\n";
std::cout << "id author knguy22/intermittence, aqiu04\n";

std::cout << "option name maxDepth type spin default 100 min 1 max 200\n";
Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.16)
project(BLOCKY-CHESS-ENGINE)
project(Blocky VERSION 2.0.0)

# GoogleTest requires at least C++14
set(CMAKE_CXX_STANDARD 20)
Expand Down
2 changes: 1 addition & 1 deletion tools/tune/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.16)
project(Blocky VERSION 1.0)
project(Blocky VERSION 2.0.0)
set(CMAKE_CXX_STANDARD 20)
add_executable(extract extract.cpp)

Expand Down

0 comments on commit 8928061

Please sign in to comment.