Difference between revisions of "MadChess"

From Chessprogramming wiki
Jump to: navigation, search
Line 17: Line 17:
  
 
=See also=
 
=See also=
* [[:Category:Disease|Disease]]
 
 
* [[Madness Schach]]
 
* [[Madness Schach]]
 
* [[Matchess]]
 
* [[Matchess]]
Line 25: Line 24:
 
==2012==
 
==2012==
 
* [http://www.talkchess.com/forum/viewtopic.php?t=45723 MadChess 1.0 Released (C# .NET Engine)] by [[Erik Madsen]], [[CCC]], October 25, 2012
 
* [http://www.talkchess.com/forum/viewtopic.php?t=45723 MadChess 1.0 Released (C# .NET Engine)] by [[Erik Madsen]], [[CCC]], October 25, 2012
* [http://www.talkchess.com/forum/viewtopic.php?t=45795 Score Inaccuracy: An Engine Weakening Algorithm] by [[Erik Madsen]], [[CCC]], October 31, 2012
+
* [http://www.talkchess.com/forum/viewtopic.php?t=45795 Score Inaccuracy: An Engine Weakening Algorithm] by [[Erik Madsen]], [[CCC]], October 31, 2012 » [[Playing Strength]]
 
==2013==
 
==2013==
 
* [http://www.talkchess.com/forum/viewtopic.php?t=46790 MadChess 1.1 Released] by [[Erik Madsen]], [[CCC]], January 06, 2013
 
* [http://www.talkchess.com/forum/viewtopic.php?t=46790 MadChess 1.1 Released] by [[Erik Madsen]], [[CCC]], January 06, 2013
Line 31: Line 30:
 
* [http://www.talkchess.com/forum/viewtopic.php?t=49497 MadChess 1.3 Released] by [[Erik Madsen]], [[CCC]], September 28, 2013
 
* [http://www.talkchess.com/forum/viewtopic.php?t=49497 MadChess 1.3 Released] by [[Erik Madsen]], [[CCC]], September 28, 2013
 
==2014==
 
==2014==
* [http://www.talkchess.com/forum/viewtopic.php?t=51973 MadChess UCI_LimitStrength Algorithm] by [[Erik Madsen]], [[CCC]], April 12, 2014
+
* [http://www.talkchess.com/forum/viewtopic.php?t=51973 MadChess UCI_LimitStrength Algorithm] by [[Erik Madsen]], [[CCC]], April 12, 2014 » [[UCI]], [[Playing Strength]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=51974 MadChess 1.4 Released] by [[Erik Madsen]], [[CCC]], April 12, 2014
 
* [http://www.talkchess.com/forum/viewtopic.php?t=51974 MadChess 1.4 Released] by [[Erik Madsen]], [[CCC]], April 12, 2014
 
* [http://www.talkchess.com/forum/viewtopic.php?t=53654 MadChess With Odds Versus Elite Engines] by [[Erik Madsen]], [[CCC]], September 11, 2014
 
* [http://www.talkchess.com/forum/viewtopic.php?t=53654 MadChess With Odds Versus Elite Engines] by [[Erik Madsen]], [[CCC]], September 11, 2014

Revision as of 13:22, 25 November 2018

Home * Engines * MadChess

Me Worry? [1]

MadChess,
an UCI compliant open source chess engine by Erik Madsen, written in C# to run under the Windows .NET framework. It was first released under the GNU General Public License Version 3 as successor of Erik's former C# engine RumbleMinze in October 2012 [2], and features adjustable playing strength with improved algorithms since MadChess 1.4 [3] [4]. MadChess 2.1, released in February 2017 is using .NET Core, Microsoft’s cross-platform free and open-source managed software framework to support not only Windows, but Linux, and Mac [5] [6].

Description

Move Generation

MadChess applies an incremental move generation, using the C# yield statement [7] [8] [9] [10] [11] using incrementally updated list of attackers for any rank, file, diagonal, or anti-diagonal.

Search

MadChess performs a principal variation search along with transposition table, killer and history heuristic, null move pruning and late move reductions inside an iterative deepening framework with aspiration. It eliminates all reductions and lazy evaluation along the principal variation.

Evaluation

The evaluation might be lazy with respect to bounds, and otherwise uses a tapered evaluation on game phase between speculative computed middlegame and endgame scores, considering piece-square tables, mobility, pawn structure, and king safety and various piece evaluation terms.

See also

Forum Posts

2012

2013

2014

2015 ...

External Links

Chess Engine

MadChess - User Guide

Misc

References

Up one level