From 31e4cfe8908ca152ed338d5ff9020c744ac915cb Mon Sep 17 00:00:00 2001 From: Bertram Felgenhauer Date: Thu, 15 May 2008 00:48:03 +0200 Subject: [PATCH] add file headers --- src/GUI.hs | 12 ++++++++++++ src/GUI/Common.hs | 12 ++++++++++++ src/GUI/Config.hs | 12 ++++++++++++ src/GUI/Stats.hs | 12 ++++++++++++ src/Main.hs | 12 ++++++++++++ src/Mine.hs | 12 ++++++++++++ src/SimpleStrat.hs | 17 ++++++++++++----- src/Strat1.hs | 16 +++++++++++----- src/Strategies.hs | 12 ++++++++++++ src/Util.hs | 12 ++++++++++++ 10 files changed, 119 insertions(+), 10 deletions(-) diff --git a/src/GUI.hs b/src/GUI.hs index 342ca1c..e85b667 100644 --- a/src/GUI.hs +++ b/src/GUI.hs @@ -1,3 +1,15 @@ +-- | +-- Module : GUI +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + {-# LANGUAGE GADTs, BangPatterns #-} module GUI ( diff --git a/src/GUI/Common.hs b/src/GUI/Common.hs index 3372686..b5b0059 100644 --- a/src/GUI/Common.hs +++ b/src/GUI/Common.hs @@ -1,3 +1,15 @@ +-- | +-- Module : GUI.Common +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + module GUI.Common ( Globals (..), State (..), diff --git a/src/GUI/Config.hs b/src/GUI/Config.hs index f5aecf1..4f69f11 100644 --- a/src/GUI/Config.hs +++ b/src/GUI/Config.hs @@ -1,3 +1,15 @@ +-- | +-- Module : GUI.Config +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + module GUI.Config ( configs, selectStrategy, diff --git a/src/GUI/Stats.hs b/src/GUI/Stats.hs index a21aa38..2bde381 100644 --- a/src/GUI/Stats.hs +++ b/src/GUI/Stats.hs @@ -1,3 +1,15 @@ +-- | +-- Module : GUI.Stats +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + {-# LANGUAGE BangPatterns #-} module GUI.Stats ( diff --git a/src/Main.hs b/src/Main.hs index 1a4da70..b7639d2 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -1,3 +1,15 @@ +-- | +-- Module : Main +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + {-# LANGUAGE GeneralizedNewtypeDeriving, GADTs, BangPatterns #-} module Main (main) where diff --git a/src/Mine.hs b/src/Mine.hs index 6afb0f6..683ebaf 100644 --- a/src/Mine.hs +++ b/src/Mine.hs @@ -1,3 +1,15 @@ +-- | +-- Module : Mine +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + {-# LANGUAGE GADTs, FlexibleContexts, Rank2Types, GeneralizedNewtypeDeriving #-} module Mine ( diff --git a/src/SimpleStrat.hs b/src/SimpleStrat.hs index 8eacc69..af428af 100644 --- a/src/SimpleStrat.hs +++ b/src/SimpleStrat.hs @@ -1,8 +1,15 @@ -{- - - beginner: ~ 60% - - intermediate: ~ 30% - - expert: ~ 0.7% - -} +-- | +-- Module : SimpleStrat +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + module SimpleStrat (simpleStrat) where import Mine diff --git a/src/Strat1.hs b/src/Strat1.hs index 5b4bf5e..374066b 100644 --- a/src/Strat1.hs +++ b/src/Strat1.hs @@ -1,8 +1,14 @@ -{- - - beginner: ~55% - - intermediate: ~24% - - expert: ~ 0.3% - -} +-- | +-- Module : Strat1 +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- module Strat1 (strat1) where diff --git a/src/Strategies.hs b/src/Strategies.hs index eb6ac61..b369771 100644 --- a/src/Strategies.hs +++ b/src/Strategies.hs @@ -1,3 +1,15 @@ +-- | +-- Module : Strategies +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + module Strategies ( strategies, diff --git a/src/Util.hs b/src/Util.hs index f58b6cc..ae271f8 100644 --- a/src/Util.hs +++ b/src/Util.hs @@ -1,3 +1,15 @@ +-- | +-- Module : Util +-- Copyright : (c) 2008 Bertram Felgenhauer +-- License : BSD3 +-- +-- Maintainer : Bertram Felgenhauer +-- Stability : experimental +-- Portability : portable +-- +-- This module is part of Haskell PGMS. +-- + module Util ( findFile, formatString -- 2.11.4.GIT