Update README

This commit is contained in:
Mattia Giambirtone 2024-05-15 16:26:10 +02:00
parent 946905293d
commit 46be23dbb7
No known key found for this signature in database
GPG Key ID: 37B83AB6C3BE6514
1 changed files with 57 additions and 0 deletions

View File

@ -16,3 +16,60 @@ Just run `nimble install`
# Testing
Just run `nimble test`: sit back, relax, get yourself a cup of coffee and wait for it to finish :)
# General info
Estimated elo: ~2100
## Feature list
### Search
- [X] Null move pruning
- [X] Late move reductions
- [X] Quiescent search
- [ ] Aspiration windows
- [ ] Futility pruning
- [ ] Late move pruning
- [X] Move reordering
- [X] Alpha-beta pruning
- [X] Check extensions
- [X] QSEE pruning
- [X] Reverse futility pruning
- [X] Principal variation search
- [X] Iterative deepening
- [X] Transposition table
- [X] Cutoffs
- [X] Move ordering
- [X] MVV-LVA
- [X] Static exchange evaluation
- [X] History heuristic
- [X] History gravity
- [ ] History malus
- [X] Killer heuristic
- [X] Null-window search
- [ ] Capture history
- [ ] Continuation history
- [X] Parallel search (lazy SMP)
- [X] Pondering
### Eval
- [X] Piece-square tables
- [X] Tempo
- [ ] King safety
- [ ] Mobility
- [ ] Minor piece outpost
- [ ] Bishop pair
- [ ] Rook/Queen on (semi-)open file
- [ ] Major piece on 7th rank
- [ ] Pawn structure
- [ ] Isolated pawns
- [ ] Weak pawns
- [ ] Strong pawns
- [ ] Doubled pawns
- [ ] Passed pawns
- [ ] Frozen pawns (blocked by an enemy pawn)