diff options
author | Justin Bedo <cu@cua0.org> | 2014-10-28 10:19:49 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2014-10-28 10:33:14 +1100 |
commit | d68fb49cad1a5bba7e52c7ff464d15c867052d0f (patch) | |
tree | 5cf467953736b3c41c1cfc1a57a41f9f057b0edc /default.nix | |
parent | 544eef53181f52423f513227e2bd98c20815b243 (diff) |
Add support for binary/integer contraints;
Change to hash maps to speed up variable LUT for large number of
variables.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/default.nix b/default.nix index e2d13af..acadb7a 100644 --- a/default.nix +++ b/default.nix @@ -3,6 +3,7 @@ , haskellPackages ? (import <nixpkgs> {}).haskellPackages }: let inherit (haskellPackages) cabal + unorderedContainers QuickCheck recursionSchemes lens @@ -16,6 +17,7 @@ in cabal.mkDerivation (self: { src = ./.; isLibrary = true; buildDepends = [ + unorderedContainers QuickCheck recursionSchemes lens |