-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
# Alligator.Solver | ||
The abstract core library of artificial intelligence for different two-player zero-sum games. | ||
|
||
[![Build status](https://ci.appveyor.com/api/projects/status/vm0rtqw2nk1pcv0p?svg=true)](https://ci.appveyor.com/project/boraaros/alligator-solver) | ||
[![NuGet](https://img.shields.io/nuget/v/Alligator.Solver.svg)](https://www.nuget.org/packages/Alligator.Solver) | ||
[![NuGet](https://img.shields.io/nuget/dt/Alligator.Solver.svg)](https://github.com/boraaros/Alligator.Solver) | ||
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/boraaros/Alligator.Solver/blob/master/LICENSE) | ||
|
||
### Algorithms and heuristics | ||
|
||
|name|status|name|status|name|status| | ||
|-----|:---:|-----|:---:|-----|:---:| | ||
|negamax algorithm| :white_check_mark: |history heuristic| :white_check_mark: |futility pruning| :x: | | ||
|alpha-beta pruning| :white_check_mark: |quiescence search| :white_check_mark: |tactical & counter moves| :x: | | ||
|iterative deepening search| :white_check_mark: |late move reduction| :x: |internal iterative deepening| :x: | | ||
|principal variation| :white_check_mark: |aspiration search| :x: |enhanced transposition cutoff| :x: | | ||
|transposition table| :white_check_mark: |null window search| :x: |probcut| :x: | | ||
|killer heuristic| :white_check_mark: |null move heuristic| :x: |parallel search tree| :x: | |