name: qchas version: 1.0.1.0 synopsis: A library for implementing Quantum Algorithms description: A library useful for implementing Quantum Algorithms. It contains definitions of Quantum Gates, Qubits. homepage: https://github.com/ardeleanasm/qchas#readme license: BSD3 license-file: LICENSE category: Algorithms author: Mihai Sebastian Ardelean maintainer: ardeleanasm@gmail.com copyright: 2017 Mihai Sebastian Ardelean build-type: Simple extra-source-files: README.md , CHANGELOG.md cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Qubits , Gates , MeasurementPerformer build-depends: base >= 4.7 && < 5 , hmatrix , random default-language: Haskell2010 --executable qchas-exe -- hs-source-dirs: app -- , app/examples -- other-modules: DeutschsAlgorithm -- main-is: Main.hs -- ghc-options: -threaded -rtsopts -with-rtsopts=-N -- build-depends: base -- , hmatrix -- , qchas -- default-language: Haskell2010 test-suite qchas-test type: exitcode-stdio-1.0 hs-source-dirs: test/unit main-is: Spec.hs other-modules: GatesTest , QubitsTest , MeasurementPerformerTest build-depends: base , tasty , tasty-hunit , hmatrix , qchas ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/ardeleanasm/qchas