Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement engine parameters UCI_Variant and Threads #6

Merged
merged 6 commits into from
Jan 3, 2018

Commits on Dec 30, 2017

  1. Configuration menu
    Copy the full SHA
    1e8cd9b View commit details
    Browse the repository at this point in the history
  2. Update README

    ddugovic committed Dec 30, 2017
    Configuration menu
    Copy the full SHA
    b7359cf View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2018

  1. Add engine uci options setting for chess960 games

    Ryan Delaney committed Jan 3, 2018
    Configuration menu
    Copy the full SHA
    80a3725 View commit details
    Browse the repository at this point in the history
  2. Fix a bug with variant parameters passed to UCI

    The board().uci_variant object is always populated, because in non-
    variant games the uci_variant is "chess". Therefore, we should check
    that the uci_variant is not "chess" before passing UCI_Variant options
    to the engine.
    Ryan Delaney committed Jan 3, 2018
    Configuration menu
    Copy the full SHA
    b1b18b0 View commit details
    Browse the repository at this point in the history
  3. Fix a bug in chess960 variant detection

    board().variant will be "chess" if the game is 960, so a separate
    check is required for 960 games.
    Ryan Delaney committed Jan 3, 2018
    Configuration menu
    Copy the full SHA
    6c77892 View commit details
    Browse the repository at this point in the history
  4. Skip opening classification in variant games

    We don't have anything like ECO for variant games, so an ECO
    classification of a variant game is very likely to be meaningless.
    Ryan Delaney committed Jan 3, 2018
    Configuration menu
    Copy the full SHA
    64de296 View commit details
    Browse the repository at this point in the history