# whether to bound the search by depth, total states explored, both, or neither # valid settings are: # "depth" # "states" # "both" # "neither" (NOT recommended) depth-or-states: both # depth bound for the search (if depth is bounded by the first param) max-depth: 8 # maximum number of states to search (if states is bounded by the first param) max-states: 15000 # whether to use alpha-beta pruning (valid settings are "true" or "false") alpha-beta: true # how long to sleep between moves, in ms # (only if search is completed too soon) sleep: 400 # the size of the board board-size: 8