-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo
47 lines (36 loc) · 1008 Bytes
/
todo
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
- optparse
- endgames
- evaluation with count of cells to move
- memory leak (garbage collect board)
- analyze + analyze deeper with first 2-3 moves
- openings tests
- tests more
- tests for moves_to_consider
- test on sorting capture_moves
- test on repetitions
- format_move with double pieces
- 3 -> 4
- tests on max_deep_capture, ...
- preanalyze and then analyze deep with sorting
- tests on evaluation
- analyze 2 best moves then analyze them deeper
- analyze one move fast and then with evaluation other moves
- len(pieces) -> total evaluation
- better positions eval
- fast checks
- integer evaluation first
- dp
- two moves at once and then parallel
- better evaluation function but 3-2->3-1
- rook positional eval
- real evaluation function
- if no captures due to check
- kings evaluation from deep=3 forced checks
- material
- space
- activeness
- center
- kings position
- fix bug with board.evaluation break
- rooks connection with mask
- increase deep regarding to len(board_moves)