1

I am trying to find a source code for implementing Tic tac toe game using Minimax tree in parallel either in Java using Fork/Join or in C/C++ using pthread. I could find a lot of serial version of the game but not a parallel version.

I saw this question: How many threads are okay to use for tic-tac-toe using minimax? by @good_evening

but I couldn't find any source code. Any help is appreciated.

Community
  • 1
  • 1
Ehsan Fathi
  • 598
  • 5
  • 21

1 Answers1

0

I didn't find one in a quick search.

Here's a parallel minimax chess program. It is probably more instructive, because it is a much more "practical" example.

Ira Baxter
  • 93,541
  • 22
  • 172
  • 341