packages feed

uvector-algorithms-0.1: uvector-algorithms.cabal

Name:              uvector-algorithms
Version:           0.1
License:           BSD3
License-File:      LICENSE
Author:            Dan Doel
Maintainer:        Dan Doel <dan.doel@gmail.com>
Homepage:          http://code.haskell.org/~dolio/
Category:          Data
Synopsis:          Efficient algorithms for uvector unboxed arrays
Description:       Efficient algorithms for uvector unboxed arrays
                   be sure to compile with -O2, and -fvia-C -optc-O3 is
                   recommended.
Build-Type:        Simple
Cabal-Version:     >= 1.2

Library
    Build-Depends: base, uvector

    Exposed-Modules:
        Data.Array.Vector.Algorithms.Immutable
        Data.Array.Vector.Algorithms.Optimal
        Data.Array.Vector.Algorithms.Insertion
        Data.Array.Vector.Algorithms.Intro
        Data.Array.Vector.Algorithms.Merge
        Data.Array.Vector.Algorithms.Radix
        Data.Array.Vector.Algorithms.TriHeap

    Other-Modules:
        Data.Array.Vector.Algorithms.Common

    Extensions:
        BangPatterns,
        TypeOperators,
        Rank2Types,
        ScopedTypeVariables

    GHC-Options:
        -O2
        -fvia-C -optc-O3
        -funbox-strict-fields