1cabal-version: 3.42name: quebex-symex3version: 0.1.0.04-- synopsis:5-- description:6license: GPL-3.0-only AND MIT7-- license-file:8author: Sören Tempel9maintainer: soeren+git@soeren-tempel.net10-- copyright:11category: Language12build-type: Simple13-- extra-doc-files:14-- extra-source-files:1516common warnings17 -- -Wall-missed-specializations can be useful too18 ghc-options: -Wall1920common opts21 ghc-options: -fspecialise-aggressively2223library24 import: warnings, opts25 -- other-modules:26 hs-source-dirs: src27 default-language: GHC20212829 build-depends:30 base,31 deepseq,32 mtl,33 directory,34 containers,35 exceptions,36 random,37 quebex,38 quebex-syntax,39 simple-smt4041 exposed-modules:42 SimpleBV,43 Language.QBE.Backend,44 Language.QBE.Backend.Model,45 Language.QBE.Backend.Store,46 Language.QBE.Backend.ExecTree,47 Language.QBE.Backend.DFS,48 Language.QBE.Backend.Tracer,49 Language.QBE.Simulator.Explorer,50 Language.QBE.Simulator.Symbolic.Expression,51 Language.QBE.Simulator.Concolic.State,52 Language.QBE.Simulator.Concolic.Expression5354benchmark quebex-symex55 import: warnings, opts56 default-language: GHC202157 type: exitcode-stdio-1.058 hs-source-dirs: bench59 main-is: Main.hs6061 other-modules:62 SMTUnwind,63 SMT,64 Exec6566 build-depends:67 base,68 criterion ^>= 1.6.4.0,69 mtl,70 simple-smt,71 process,72 filepath,73 quebex,74 quebex-syntax,75 quebex-symex7677test-suite quebex-symex-test78 import: warnings79 default-language: GHC202180 type: exitcode-stdio-1.081 hs-source-dirs: test82 main-is: Main.hs8384 other-modules:85 Util,86 Golden,87 Backend,88 Explorer,89 Symbolic,90 Concolic,91 BV9293 build-depends:94 base,95 filepath,96 containers,97 random,98 quebex,99 quebex-syntax,100 quebex-symex,101 simple-smt,102 tasty >=1.4.3,103 tasty-hunit >=0.10,104 tasty-golden >=2.3.5,105 tasty-quickcheck >=0.10.2