Difference between revisions of "Koivisto"

From Chessprogramming wiki
Jump to: navigation, search
(3 intermediate revisions by 2 users not shown)
Line 5: Line 5:
  
 
'''Koivisto''',<br/>
 
'''Koivisto''',<br/>
an [[UCI]] compliant [[:Category:Open Source|open source]] chess engine by [[Finn Eggers]] and [[Kim Kåhre]], written in [[Cpp|C++]],  
+
an [[UCI]] compliant [[:Category:Open Source|open source]] chess engine by [[Kim Kåhre]], [[Finn Eggers]] and [[Eugenio Bruno]], written in [[Cpp|C++]],  
 
and first released on [https://en.wikipedia.org/wiki/GitHub GitHub] in September 2020 under the [[Free Software Foundation#GPL|GPL v3.0]].
 
and first released on [https://en.wikipedia.org/wiki/GitHub GitHub] in September 2020 under the [[Free Software Foundation#GPL|GPL v3.0]].
 
The [[Bitboards|bitboard]] engine provides [[Automated Tuning|automated evaluation tuning]] by [[Automated Tuning#LogisticRegression|logistic regression]],
 
The [[Bitboards|bitboard]] engine provides [[Automated Tuning|automated evaluation tuning]] by [[Automated Tuning#LogisticRegression|logistic regression]],
Line 18: Line 18:
 
* [[Lazy SMP]] (2.0)
 
* [[Lazy SMP]] (2.0)
 
* [[Iterative Deepening]]
 
* [[Iterative Deepening]]
 +
* [[Aspiration Windows]] (3.0)
 
* [[Principal Variation Search]]
 
* [[Principal Variation Search]]
 
* [[Transposition Table]]
 
* [[Transposition Table]]
Line 57: Line 58:
 
** [[Isolated Pawn]]
 
** [[Isolated Pawn]]
 
** [[Passed Pawn]]
 
** [[Passed Pawn]]
 +
** [[Blockade of Stop]] (3.0)
 
** [[Backward Pawns (Bitboards)|Backward Pawns]]
 
** [[Backward Pawns (Bitboards)|Backward Pawns]]
 
** [[Open Pawns (Bitboards)|Open Pawns]]
 
** [[Open Pawns (Bitboards)|Open Pawns]]
Line 62: Line 64:
 
** [[King Safety#Attacking|Attacking King Zone]]
 
** [[King Safety#Attacking|Attacking King Zone]]
 
** [[King Safety#KingTropism|King Tropism]]
 
** [[King Safety#KingTropism|King Tropism]]
 +
** [[Castling Rights]] (3.0)
 +
* [[Tempo]] (3.0)
 +
* [[Draw Evaluation]] (3.0)
 
* [[Float]] [[SSE|SSE]] [https://en.wikipedia.org/wiki/Dot_product Dot products] <ref>[https://en.wikipedia.org/wiki/Dot_product Dot products] using [https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_mul_ps&expand=3928 _mm_mul_ps], [https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_add_ps&expand=3928,133 _mm_add_ps]</ref>
 
* [[Float]] [[SSE|SSE]] [https://en.wikipedia.org/wiki/Dot_product Dot products] <ref>[https://en.wikipedia.org/wiki/Dot_product Dot products] using [https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_mul_ps&expand=3928 _mm_mul_ps], [https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_add_ps&expand=3928,133 _mm_add_ps]</ref>
 
* [[Automated Tuning]] by [[Automated Tuning#LogisticRegression|Logistic Regression]]
 
* [[Automated Tuning]] by [[Automated Tuning#LogisticRegression|Logistic Regression]]
Line 73: Line 78:
 
: [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75001&start=4 Re: Koivisto] by [[Finn Eggers]], [[CCC]], September 04, 2020
 
: [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75001&start=4 Re: Koivisto] by [[Finn Eggers]], [[CCC]], September 04, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75052 Koivisto 2.0] by [[Finn Eggers]], [[CCC]], September 08, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75052 Koivisto 2.0] by [[Finn Eggers]], [[CCC]], September 08, 2020
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75423 Koivisto 3.0 (Including binaries)] by [[Kim Kåhre]], [[CCC]], October 17, 2020
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75742 Koivisto v4.0 release] by [[Eugenio Bruno]], [[CCC]], November 09, 2020
  
 
=External Links=
 
=External Links=
Line 93: Line 100:
 
[[Category:X64]]
 
[[Category:X64]]
 
[[Category:PC]]
 
[[Category:PC]]
 +
[[Category:OpenBench]]
 
[[Category:Plant]]
 
[[Category:Plant]]
 
[[Category:Hjalmar Munsterhjelm]]
 
[[Category:Hjalmar Munsterhjelm]]

Revision as of 11:32, 27 November 2020

Home * Engines * Koivisto

Hjalmar Munsterhjelm - Koivikko ja ruispelto [1]

Koivisto,
an UCI compliant open source chess engine by Kim Kåhre, Finn Eggers and Eugenio Bruno, written in C++, and first released on GitHub in September 2020 under the GPL v3.0. The bitboard engine provides automated evaluation tuning by logistic regression, either using stochastic gradient descent or AdaGrad. However, the current perceptron approach of the evaluation may soon be replaced by an own NNUE [2] [3].

Features

Board Representation

Search

Evaluation

Misc

Forum Posts

Re: New engine releases 2020 by Finn Eggers, CCC, September 03, 2020
Re: Koivisto by Finn Eggers, CCC, September 04, 2020

External Links

Chess Engine

Misc

koivikko - Wiktionary

References

Up one Level