Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanjayankur31/odin
A simple zero-sum game
https://github.com/sanjayankur31/odin
Last synced: 13 days ago
JSON representation
A simple zero-sum game
- Host: GitHub
- URL: https://github.com/sanjayankur31/odin
- Owner: sanjayankur31
- License: gpl-3.0
- Created: 2010-08-24T03:50:11.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2020-10-12T09:31:37.000Z (about 4 years ago)
- Last Synced: 2024-11-29T03:15:12.888Z (27 days ago)
- Language: C
- Homepage:
- Size: 861 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
# Odin is a mini project that some of my class mates and me are doing
# as a part of our academic requirements.
#
# We are going to try and implement the MinMax and Alpha Beta Pruning techniques
# to create two AI opponents to play against each other
#
# We intend to collect data on the two opponents, such as time taken per move, to
# compare the two techniques.
#
# For more info, check synopsis.pdf in the root repository directory.
#
#The needed dependencies are:
- linux OS
- ncurses
- glib
- colour support on terminalThat's all you need to build and play it!
Install the deps,
on Fedora :
$ su -c 'yum install glib2-devel ncurses-devel'
./configure
make && make installmake install must be run as root.
To install it to the user dir, use the configure flags:
./configure --help
simplest is
mkdir ~/dump
./configure --prefix=~/dumpmake
make install