bishbosh-0.0.0.1: Plays chess.

Safe HaskellNone
LanguageHaskell2010

BishBosh.Input.SearchOptions

Contents

Description

AUTHOR
Dr. Alistair Ward
DESCRIPTION
Defines configurable options related to the process of searching for the optimal move.

Synopsis

Types

Type-synonyms

type SearchDepth = NMoves Source #

The number of plies to search for the optimal move.

type PreferMovesTowardsCentre = Bool Source #

Whether to prefer moves which progress towards the centre of the board.

type SortOnStandardOpeningMoveFrequency = Bool Source #

Sort moves on the decreasing frequency of occurrence in standard openings.

type HammingDistance = Int Source #

The optional minimum Hamming-distance between the random numbers from which Zobrist-hashes are composed.

type MaybeRetireAfterNMoves = Maybe NMoves Source #

The number of full moves (one for each player) after which to retire killer moves.

type TrapRepeatedPositions = Bool Source #

Whether to short-circuit the fitness-evaluation of positions which have been visited before in the current game.

type MaybeUseTranspositions = Maybe (NMoves, SearchDepth) Source #

The number of full moves (one for each player) after which to retire transpositions & the search-depth beneath which they aren't recorded at all.

type Reader = Reader SearchOptions Source #

Self-documentation.

Data-types

Constants

tag :: String Source #

Used to qualify XML.

searchDepthTag :: String Source #

Used to qualify XML.

minimumSearchDepth :: SearchDepth Source #

The minimum permissible search-depth.

defaultSearchDepth :: SearchDepth Source #

  • The default search-depth.
  • CAVEAT: this is rather arbitrary.

Functions

Constructor

mkSearchOptions Source #

Arguments

:: PreferMovesTowardsCentre 
-> SortOnStandardOpeningMoveFrequency 
-> Maybe CaptureMoveSortAlgorithm 
-> Maybe HammingDistance

The optional lower bound on the Hamming-distance between the random numbers used to compose Zobrist hashes from positions.

-> MaybeRetireAfterNMoves

The number of full moves back from the current position, after which to retire killer-moves.

-> TrapRepeatedPositions 
-> UsePondering 
-> MaybeUseTranspositions

The number of full moves after which to retire transpositions, & the search-depth beneath which transpositions aren't recorded.

-> StandardOpeningOptions 
-> SearchDepthByLogicalColour 
-> SearchOptions 

Smart constructor.

Accessors

getSearchDepth :: SearchOptions -> SearchDepth Source #

Get either player's search-depth, using a default value when none are defined.

maybeMinimumTranspositionSearchDepth :: SearchOptions -> Maybe SearchDepth Source #

The search-depth beneath which transpositions aren't recorded.

Mutators

setSearchDepth :: SearchDepth -> Transformation Source #

Mutator.

swapSearchDepth :: Transformation Source #

Swap the logical colour associated with any searchDepth currently assigned.

Predicates

recordKillerMoves :: SearchOptions -> RecordKillerMoves Source #

Whether killer-moves are to be recorded.