-- Initial mixed-strategies.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: mixed-strategies
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: Find optimal mixed strategies for two-player games
-- A longer description of the package.
description: A Haskell implementation of the method of
Chapter 6 of The Compleat Strategyst
(J.D. Williams, McGraw-Hill 1955) for
finding optimal mixed strategies for
two-player hidden information games
given a payoff matrix.
-- URL for the project homepage or repository.
homepage: http://wiki.cs.pdx.edu/bartforge/oms
-- The license under which the package is released.
license: MIT
-- The file containing the license text.
license-file: COPYING
-- The package author(s).
author: Bart Massey
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: bart@cs.pdx.edu
-- A copyright notice.
-- copyright:
category: Math
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.8
source-repository head
type: git
location: http://github.com/BartMassey/mixed-strategies.git
source-repository this
type: git
location: http://github.com/BartMassey/mixed-strategies.git
tag: v0.1
library
-- Modules exported by the library.
exposed-modules: Data.MixedStrategies
-- Modules included in this library but not exported.
other-modules:
-- Other library packages from which modules are imported.
build-depends: base ==4.5.*, array ==0.4.*, containers ==0.5.*,
simple-tabular ==0.1.*
executable oms
-- .hs or .lhs file containing the Main module.
main-is: oms.hs
-- Other library packages from which modules are imported.
build-depends: base ==4.5.*, array ==0.4.*, containers ==0.5.*,
simple-tabular ==0.1.*, mixed-strategies