Skip to content

Commit 02cc46b

Browse files
Removed accidentally added binaries and updated README
1 parent 9a5705b commit 02cc46b

File tree

11 files changed

+4
-1
lines changed

11 files changed

+4
-1
lines changed

README

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Parallel Combinatorial Game Solver that supports MCTS as a strategy
2+
3+
Currently Supported Games Connect 4

app/bin/main/javagamesolver/App.class

-2.18 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-526 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
-4.26 KB
Binary file not shown.
-711 Bytes
Binary file not shown.

app/src/main/java/javagamesolver/strategies/MCTS.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public Game make_move(Game game) {
3535
Map<String, Object> best_game_and_score = possible_games.parallelStream()
3636
.map(possible_game -> {
3737
int score = IntStream.range(0, 100000).parallel()
38-
.map(_indice -> calculate_score(game, player))
38+
.map(_indice -> calculate_score(possible_game, player))
3939
.sum();
4040
return Map.of("score", score, "game", possible_game);
4141
}).reduce(Map.of("score", Integer.MIN_VALUE), (a, b) -> {

0 commit comments

Comments
 (0)