name: spline3 version: 0.0 cabal-version: >= 1.8 author: Michael Orlitzky maintainer: Michael Orlitzky synopsis: An implementation of the Sorokina and Zeilfelder trivariate spline scheme on type-6 tetrahedral partitions. build-type: Simple flag HPC description: Build with Haskell Program Coverage (HPC) support default: False flag LLVM description: Build with LLVM default: False executable spline3 build-depends: base == 4.5.*, doctest == 0.7.*, filepath == 1.*, HUnit == 1.2.*, QuickCheck == 2.*, repa == 3.2.*, repa-algorithms == 3.2.*, repa-io == 3.2.*, test-framework == 0.6.*, test-framework-doctest == 0.2.*, test-framework-hunit == 0.2.*, test-framework-quickcheck2 == 0.2.*, vector == 0.9.* main-is: Main.hs hs-source-dirs: src/ ghc-options: -Wall -fwarn-hi-shadowing -fwarn-missing-signatures -fwarn-name-shadowing -fwarn-orphans -fwarn-type-defaults -fwarn-tabs -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction -fwarn-unused-do-bind -funbox-strict-fields -fexcess-precision -fno-spec-constr-count -rtsopts -threaded if flag(llvm) ghc-options: -fllvm -optlo-O3 -optlc-O3 else ghc-options: -O2 -optc-O3 -optc-march=native if flag(hpc) ghc-options: -fhpc ghc-prof-options: -prof -auto-all -caf-all