X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Control%2FParallel%2FStrategies.hs;h=d011eca4866601a705062bf8f994247544fd23de;hb=9fa9bc17072a58c0bae2cce4764d38677e96ac29;hp=cad9aa3bf135a21231125c240b127f777653003e;hpb=7887b9e7f59b24c276eeedb74df6ad547c99ec01;p=ghc-base.git diff --git a/Control/Parallel/Strategies.hs b/Control/Parallel/Strategies.hs index cad9aa3..d011eca 100644 --- a/Control/Parallel/Strategies.hs +++ b/Control/Parallel/Strategies.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Parallel.Strategies -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $ -- -- Parallel strategy combinators -- @@ -16,7 +16,7 @@ {- Time-stamp: -$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $ This module defines parallel strategy combinators @@ -25,8 +25,8 @@ This module defines parallel strategy combinators Based on Version VII (1/5/96) `Strategies96' of type a -> () Author: $Author: simonmar $ -Date: $Date: 2001/06/28 14:15:02 $ -Revision: $Revision: 1.1 $ +Date: $Date: 2002/04/24 16:31:39 $ +Revision: $Revision: 1.2 $ Source: $Source: /srv/cvs/cvs.haskell.org/fptools/libraries/base/Control/Parallel/Strategies.hs,v $ State: $State: Exp $ @@ -50,6 +50,10 @@ The history of the Strategies module: Changelog: $Log: Strategies.hs,v $ +Revision 1.2 2002/04/24 16:31:39 simonmar +Add the single character '|' to the header comment of each module so +that Haddock will parse it as the module documentation. + Revision 1.1 2001/06/28 14:15:02 simonmar First cut of the Haskell Core Libraries ======================================= @@ -277,8 +281,8 @@ declaration of @par@ and @seq@ despite renaming the imported versions. > infixl 6 $||, $| -- strategic function application (seq and par) > infixl 9 .|, .||, -|, -|| -- strategic (inverse) function composition -> strategy_version = "$Revision: 1.1 $" -> strategy_id = "$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $" +> strategy_version = "$Revision: 1.2 $" +> strategy_id = "$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $" ------------------------------------------------------------------------------ Strategy Type, Application and Semantics