Agda-2.5.1.1: A dependently typed functional programming language and proof assistant

Safe HaskellNone
LanguageHaskell98

Agda.Utils.Time

Description

Time-related utilities.

Synopsis

Documentation

type ClockTime = UTCTime Source #

Timestamps.

getClockTime :: IO ClockTime Source #

The current time.

measureTime :: MonadIO m => m a -> m (a, CPUTime) Source #

Measure the time of a computation. Of course, does not work with exceptions.

newtype CPUTime Source #

CPU time in pico (10^-12) seconds.

Constructors

CPUTime Integer 

Instances

Enum CPUTime Source # 
Eq CPUTime Source # 

Methods

(==) :: CPUTime -> CPUTime -> Bool #

(/=) :: CPUTime -> CPUTime -> Bool #

Integral CPUTime Source # 
Num CPUTime Source # 
Ord CPUTime Source # 
Real CPUTime Source # 
Show CPUTime Source # 
Pretty CPUTime Source #

Print CPU time in milli (10^-3) seconds.