├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Math └── Statistics.hs ├── README ├── Setup.hs ├── Test └── BenchPress.hs ├── benchpress.cabal ├── example └── Main.hs ├── stack.yaml └── stack.yaml.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *.hi 2 | *.o 3 | /dist/* 4 | /.stack-work/* 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # next 2 | 3 | * add benchmarkWithResults (# 9) 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/LICENSE -------------------------------------------------------------------------------- /Math/Statistics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/Math/Statistics.hs -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/README -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | 3 | main = defaultMain 4 | -------------------------------------------------------------------------------- /Test/BenchPress.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/Test/BenchPress.hs -------------------------------------------------------------------------------- /benchpress.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/benchpress.cabal -------------------------------------------------------------------------------- /example/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/example/Main.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillSewell/benchpress/HEAD/stack.yaml.lock --------------------------------------------------------------------------------