├── .github └── workflows │ ├── fourmolu.yml │ └── haskell-ci.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── fourmolu.yaml ├── src └── Test │ └── Tasty │ └── Bench │ ├── Crossover.hs │ ├── Fit.hs │ ├── Fit │ └── Complexity.hs │ └── Utils.hs ├── tasty-bench-fit.cabal └── test └── Main.hs /.github/workflows/fourmolu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/.github/workflows/fourmolu.yml -------------------------------------------------------------------------------- /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/README.md -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/fourmolu.yaml -------------------------------------------------------------------------------- /src/Test/Tasty/Bench/Crossover.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/src/Test/Tasty/Bench/Crossover.hs -------------------------------------------------------------------------------- /src/Test/Tasty/Bench/Fit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/src/Test/Tasty/Bench/Fit.hs -------------------------------------------------------------------------------- /src/Test/Tasty/Bench/Fit/Complexity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/src/Test/Tasty/Bench/Fit/Complexity.hs -------------------------------------------------------------------------------- /src/Test/Tasty/Bench/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/src/Test/Tasty/Bench/Utils.hs -------------------------------------------------------------------------------- /tasty-bench-fit.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/tasty-bench-fit.cabal -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bodigrim/tasty-bench-fit/HEAD/test/Main.hs --------------------------------------------------------------------------------