packages feed

tak-ai-0.1.0.1: tak-ai.cabal

name:                tak-ai
version:             0.1.0.1
synopsis:            AI(s) for playing Tak on playtak.com
description:
    Takky is a simple bot, using a modest lookahead of 4 plies, and a heuristic
    based purely on territory owned. It hangs around on playtak.com, providing a
    moderate challenge to new and intermediate players.
homepage:            http://bitbucket.org/sffubs/tak
license:             BSD2
license-file:        LICENSE
author:              Henry Bucklow
maintainer:          henry@elsie.org.uk
-- copyright:           
category:            Game
build-type:          Simple
cabal-version:       >=1.8

executable takky
  main-is:              takky.hs
  other-modules:        Negamax, TakkyCore
  hs-source-dirs: src
  ghc-options:          -O2 -threaded "-with-rtsopts=-N"
  build-depends:        base < 5, tak, random-shuffle

test-suite takky-tests
  hs-source-dirs: src
  ghc-options: -Wall
  type: exitcode-stdio-1.0
  main-is: takkytests.hs
  build-depends: base < 5, tak, random-shuffle, HUnit, matrix, parsec