Name: Timing Version: 0.1 License: BSD3 License-File: LICENSE Author: Clifford Beshers Maintainer: beshers@seereason.com Stability: alpha Category: Testing Synopsis: Tools for timing expression evaluation in Haskell Description: The Test.Timing library provides tools for analyzing the run time of expressions, both pure and IO. . The primary timing function uses Control.Exception.evaluate, a function provided to force full evaluation of an expression. The seq function won't force a full evaluation. Part of the expression might have been evaluated already and it only reduces the expression to weak-head normal form (WHNF), at least in GHC. . Currently, this library has only been tested in GHC. Homepage: http://seereason.org/darcs/public/Test.Timing Extra-source-files: TimeWNHF.hs, Tests.hs Build-Depends: base, time Build-Type: Simple Exposed-modules: Test.Timing Ghc-options: -Wall