https://github.com/apachecn-archive/edax-reversi

https://github.com/apachecn-archive/edax-reversi

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.7%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: apachecn-archive
  • License: gpl-3.0
  • Language: C
  • Default Branch: master
  • Size: 402 KB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 3 years ago · Last pushed about 3 years ago
Metadata Files
Readme License

README.md

Edax

Edax is a very strong othello program. Its main features are: - fast bitboard based & multithreaded engine. - accurate midgame-evaluation function. - opening book learning capability. - text based rich interface. - multi-protocol support to connect to graphical interfaces or play on Internet (GGS). - multi-OS support to run under MS-Windows, Linux and Mac OS X.

Installation

From the release section of github, you must 7unzip both an executable of your favorite OS, and the evaluation weights (data/eval.dat) in the same directory. Only 64 bit executable with popcount support are provided.

Run

local

```sh mkdir -p bin cd src

e.g. OS X sample

make build ARCH=x64 COMP=gcc OS=osx cd .. ./bin/mEdax ```

docker

```sh docker build . -t edax docker run --name "edax" -v "$(pwd)/:/home/edax/" -it edax

cd /home/edax/ mkdir -p bin cd src make build ARCH=x64 COMP=gcc OS=linux

cd .. curl -OL https://github.com/abulmo/edax-reversi/releases/download/v4.4/eval.7z # e.g. use v4.4 eval.dat 7z x eval.7z

./bin/lEdax-x64 ```

Document

sh cd src doxygen open ../doc/html/index.html

Owner

  • Name: ApacheCN 归档
  • Login: apachecn-archive
  • Kind: organization
  • Email: wizard.z@qq.com

防止重要项目丢失而设立的归档

GitHub Events

Total
Last Year

Dependencies

.github/workflows/build.yaml actions
  • actions/checkout v2 composite
  • actions/upload-artifact v2 composite
Dockerfile docker
  • gcc 4.9 build