add README and statistics.
[hs-pgms.git] / src / Strategies.hs
blobf5015feb842a8dfda94d7a95f2f1350cb1d89c00
1 -- |
2 -- Module : Strategies
3 -- Copyright : (c) 2008 Bertram Felgenhauer
4 -- License : BSD3
5 --
6 -- Maintainer : Bertram Felgenhauer <int-e@gmx.de>
7 -- Stability : experimental
8 -- Portability : portable
9 --
10 -- This module is part of Haskell PGMS.
12 -- Import and export all available strategies.
15 module Strategies (
16 strategies,
18 simpleStrat,
19 strat1,
20 ) where
22 import Mine
23 import SimpleStrat
24 import Strat1
26 strategies :: [Strategy]
27 strategies = [strat1, simpleStrat]