crisp_chess_engine 0.8.0
crisp_chess_engine: ^0.8.0 copied to clipboard
A pure-Dart chess engine — alpha-beta search with null-move pruning, PVS, quiescence and a transposition table. No native code; runs everywhere Dart does.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add crisp_chess_engineWith Flutter:
$ flutter pub add crisp_chess_engineThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
crisp_chess_engine: ^0.8.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:crisp_chess_engine/crisp_chess_engine.dart';