Difference between revisions of "Xiphos"

From Chessprogramming wiki
Jump to: navigation, search
Line 61: Line 61:
  
 
=Forum Posts=
 
=Forum Posts=
 +
==2018==
 
* [http://www.talkchess.com/forum/viewtopic.php?t=66709 New engine: Xiphos] by [[Milos Tatarevic]], [[CCC]], February 28, 2018
 
* [http://www.talkchess.com/forum/viewtopic.php?t=66709 New engine: Xiphos] by [[Milos Tatarevic]], [[CCC]], February 28, 2018
 
* [http://www.talkchess.com/forum/viewtopic.php?t=67105 Xiphos 0.2] by [[Milos Tatarevic]], [[CCC]], April 14, 2018  
 
* [http://www.talkchess.com/forum/viewtopic.php?t=67105 Xiphos 0.2] by [[Milos Tatarevic]], [[CCC]], April 14, 2018  
Line 67: Line 68:
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=68508 Xiphos 0.4] by [[Milos Tatarevic]], [[CCC]], September 24, 2018
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=68508 Xiphos 0.4] by [[Milos Tatarevic]], [[CCC]], September 24, 2018
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=68842 The Xiphos Material Evaluator] by  [[Dennis Sceviour]], [[CCC]], November 05, 2018 » [[Material]]
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=68842 The Xiphos Material Evaluator] by  [[Dennis Sceviour]], [[CCC]], November 05, 2018 » [[Material]]
 +
==2019==
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=70172 Xiphos 0.5] by [[Milos Tatarevic]], [[CCC]], March 11, 2019
  
 
=External Links=
 
=External Links=
 
==Chess Engine==
 
==Chess Engine==
 
* [https://github.com/milostatarevic/xiphos GitHub - milostatarevic/xiphos: UCI chess engine]
 
* [https://github.com/milostatarevic/xiphos GitHub - milostatarevic/xiphos: UCI chess engine]
 +
* [http://ccrl.chessdom.com/ccrl/4040/cgi/compare_engines.cgi?family=Xiphos&print=Rating+list&print=Results+table&print=LOS+table&print=Ponder+hit+table&print=Eval+difference+table&print=Comopp+gamenum+table&print=Overlap+table&print=Score+with+common+opponents Xiphos] in [[CCRL|CCRL 40/40]]
 
==Misc==
 
==Misc==
 
* [https://en.wikipedia.org/wiki/Xiphos Xiphos from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Xiphos Xiphos from Wikipedia]

Revision as of 23:29, 16 March 2019

Home * Engines * Xiphos

Xiphos and Makhaira [1]

Xiphos,
an UCI compliant open source chess engine by Milos Tatarevic, written in C, licensed under the GNU General Public License v3.0, first released on February 28, 2018. Xiphos utilizes bitboards with BERLEF mapping (a1=56, a8=63, h1=0, h8=7) [2]. Sliding piece attacks are determined by either magic bitboards, or if compiled for BMI2 capable x86-64 processors, by PEXT bitboards. Xiphos executables are available to run under Linux, Mac OS and Windows. Still work in progress with a relatively simple evaluation function, the first Xiphos release should already be on par with engines rated around 3000 Elo on CCRL 40/4 scale [3].

Acknowledgements

Milos Tatarevic was inspired by Garry Kasparov's book Deep Thinking: Where Machine Intelligence Ends and Human Creativity Begins [4] [5], which evoked his childhood passion computer chess, wondering how hard it could be to develop an engine strong enough to suppress the legendary Deep Blue - giving it a try. The CPW (Thank You) and following open source engines were mentioned as further inspiration in the author's acknowledgements [6]:

Selected Features

Search

[7]

Shared Hash Table
Countermove Heuristic
History Heuristic
Internal Iterative Deepening
Killer Heuristic
MVV/LVA
SEE
Futility Pruning
Late Move Pruning
Null Move Pruning
ProbCut
Late Move Reductions
Razoring

Evaluation

[8]

Bishop Pair
Pawn Hash Table
Doubled Pawn
Isolated Pawn
Passed Pawn

Misc

Forum Posts

2018

2019

External Links

Chess Engine

Misc

References

Up one Level