Tic Tac Toe Solver
Types
Link copied to clipboard
object AlphaBetaAdvanced
Uses the Alpha-Beta Pruning algorithm to play a move in a game of Tic Tac Toe but includes depth in the evaluation function.
Link copied to clipboard
class Board
Represents the Tic Tac Toe board. Modified version of LazoCoder's Tic-Tac-Toe Java Implementation, GPLv3 License.
Functions
Link copied to clipboard
Adds all settings in the input to the settings field of the module. This is required for saving and loading these settings to / from a file. Keep in mind, that these settings are passed by reference, which will get lost if the original setting is reassigned.
Link copied to clipboard
Link copied to clipboard
Triggers the module initialization.
Link copied to clipboard
Loads self registering elements of the module such as hud elements.
Link copied to clipboard
This method will be run on the FMLLoadCompleteEvent on game startup after the config is loaded.
Link copied to clipboard
Link copied to clipboard
Initiates the scan for secrets in range
Solve the board.
Link copied to clipboard