packages feed

lbfgs-0.1: lbfgs.cabal

Name:               lbfgs
Version:            0.1
License:            OtherLicense
License-File:       LICENSE
Copyright:          Daniël de Kok
Maintainer:         Daniël de Kok <me@danieldk.eu>, Ian-Woo Kim <ianwookim@gmail.com>
Author:             Daniël de Kok <me@danieldk.eu>
Category:           Numeric
Synopsis:           L-BFGS optimization
Description:        Limited memory BFGS solver for non-linear optimization
                    problems.
Build-Type:         Simple
Cabal-Version:      >= 1.8
Extra-Source-Files: cbits/arithmetic_ansi.h cbits/arithmetic_sse_double.h
                    cbits/arithmetic_sse_float.h cbits/lbfgs.h 

Source-Repository HEAD
  Type:     git
  Location: git://github.com/wavewave/lbfgs-hs.git
                    
Library
  Build-Depends:        base >= 4 && < 5,
                        array >= 0.3.0.0,
                        vector >= 0.11
  Exposed-modules:
                        Numeric.LBFGS
                        Numeric.LBFGS.Raw
                        Numeric.LBFGS.Types
                        Numeric.LBFGS.Vector
  Other-modules:
                        Numeric.LBFGS.Internal
                  
  C-Sources:            cbits/lbfgs.c
  Include-Dirs:         cbits
  Includes:             lbfgs.h, arithmetic_ansi.h