-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathREADME
61 lines (53 loc) · 1.5 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Thanks
------
- Stockfish authors
- Crafty authors
Version 1.0
-----------
- Rewrote move generation for a big speed-up
- Pure material evaluation
- Null-move + Razoring + LMR in main search
- Hash table
Version 2.0
-----------
- Mobility evaluation (thanks Fruit)
- Bishop pair
- Rep-draw detection
- Better null-move pruning (thanks Stockfish)
- Better LMR (and again, thanks Stockfish)
- Bugfix with using hash move
- Some speed optimizations
Version 3.0
-----------
- 604.5/1000 or ~70 ELO better than previous version
- Killer moves
- Tuned PSQ tables/mobility
- Better king eval in endgame (won't stay on back row)
- Show '#' for checkmate
- Improved UI (new game, switch black/white, choose time/move)
- Fixed crashes from using invalid hash moves
- Other small bug fixes
- Speed optimizations
Version 4.0
-----------
- 594.5/1000 %:59.45 or 66 Elo better than previous
- SEE added (QSearch pruning, losing captures in main search)
- No nullmove in pawn endgames
- Fixed hashtable bugs (RNG was bad)
- Fixed starting position when playing black
- Added ability to analyze position for browsers that support it
- Added support for pasting FEN positions
Version 5.0
-----------
- Added checks in first ply of q-search (+15)
Version 5.1
-----------
- Bugfix to hashtable storing (no elo change, but big help in endgames)
Version 6.0
-----------
- Bonuses for knight attacking pieces (+20)
- Bonus for bishop pins (+40)
TODO:
-----
- Only extend checks with SEE > 0?
- Single reply to check should be marked as dangerous.