Skip to content

gabtar/aconcagua

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aconcagua

Chess engine in go - WIP

Setup:

git clone https://github.com/gabtar/aconcagua
cd aconcagua
go build .

Builds an aconcagua executable, a uci compatible engine that can be used with a gui like arena gui or pychess

TODO:

Move generation:

  • Try to improve make and unmake move
  • Add an specific function to get only captures/checks moves for quiescent
  • Use a move list/array, so as to get rid of 'appends' in moves(it should improve search performance)

Evaluation:

  • Refactor to use PeSTO evaluation function(tapered eval)

Search:

  • Aspiration windows
  • Principal variation search
  • Quiescent search
  • Limit quiescent search (needs further work!)
  • Add checkmate detection
  • Null move pruning
  • Improve move ordering
    • Killer moves
    • History heruistic
    • Improve MVV-LVA
  • Detect threefold repetition - use zobrist hash
  • Refactor Transposition table

Engine

  • Create an engine struct with main parameters(current best move, depth, etc) - Add search state
  • Add Search as method to engine
  • Improve error handling in uci commands (eg. invalid fen, etc)
  • Add/improve remaining uci commands

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published