bishbosh-0.1.1.0: Plays chess.
Safe HaskellNone
LanguageHaskell2010

BishBosh.Search.Search

Description

AUTHOR
Dr. Alistair Ward
DESCRIPTION
Searches for the optimal move from those currently available.
Synopsis

Types

Data-types

data Result x y positionHash Source #

The type returned by search.

Instances

Instances details
NFData (Result x y positionHash) Source # 
Instance details

Defined in BishBosh.Search.Search

Methods

rnf :: Result x y positionHash -> () #

(Enum x, Enum y) => ShowNotationFloat (Result x y positionHash) Source # 
Instance details

Defined in BishBosh.Search.Search

Methods

showsNotationFloat :: MoveNotation -> (Double -> ShowS) -> Result x y positionHash -> ShowS Source #

Constants

showsSeparator :: ShowS Source #

Used to format output.

Functions

search Source #

Arguments

:: (Enum x, Enum y, Ord positionHash, Ord x, Ord y, Show x, Show y) 
=> NPlies

How deep down the tree to search.

-> SearchState x y positionHash 
-> Reader (Result x y positionHash) 

Initiates the recursive function negaMax, then unpacks the results.

Constructor