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.