-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreggression.cabal
More file actions
executable file
·93 lines (84 loc) · 2.49 KB
/
reggression.cabal
File metadata and controls
executable file
·93 lines (84 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: reggression
version: 1.0.10
synopsis: A general library to work with Symbolic Regression expression trees.
description: A Symbolic Regression Tree data structure to work with mathematical expressions with support to first order derivative and simplification;
category: Math, Data, Data Structures
homepage: https://github.com/folivetti/reggression#readme
bug-reports: https://github.com/folivetti/reggression/issues
author: Fabricio Olivetti de França
maintainer: fabricio.olivetti@gmail.com
copyright: 2023 Fabricio Olivetti de França
license-file: LICENSE
build-type: Custom
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/folivetti/reggression
custom-setup
setup-depends:
base >=4.19
, Cabal >=3.14
, directory >=1
, filepath >=1.4
common warnings
ghc-options: -Wall
foreign-library _binding
import: warnings
type: native-shared
-- 01-04-2023:
-- Standalone builds appear to work with macOS builds of GHC
if os(osx)
options: standalone
if os(windows)
options: standalone
mod-def-file: src/reggression/binding.def
c-sources: src/reggression/binding_wrap.c
hs-source-dirs: src
other-modules:
Reggression
CLI
Py
Commands
Util
Paths_reggression
extra-libraries:
nlopt
build-depends:
attoparsec >=0.14.4 && <0.15
, attoparsec-expr >=0.1.1.2 && <0.2
, base >=4.19 && <5
, binary >=0.8.9.1 && <0.9
, bytestring >=0.11 && <0.13
, containers >=0.6.7 && <0.8
, dlist ==1.0.*
, exceptions >=0.10.7 && <0.11
, filepath >=1.4.0.0 && <1.6
, hashable >=1.4.4.0 && <1.6
, ieee754 >=0.8.0 && <0.9
, lens >=5.2.3 && <5.4
, list-shuffle >=1.0.0.1 && <1.1
, massiv >=1.0.4.1 && <1.1
, mtl >=2.2 && <2.4
, optparse-applicative >=0.17 && <0.19
, random >=1.2 && <1.4
, scheduler >=2.0.0.1 && <3
, split >=0.2.5 && <0.3
, srtree >= 2.0.1.5
, statistics >=0.16.2.1 && <0.17
, transformers >=0.6.1.0 && <0.7
, unliftio >=0.2.10 && <1
, unliftio-core >=0.2.1 && <1
, unordered-containers ==0.2.*
, vector >=0.12 && <0.14
, zlib >=0.6.3 && <0.8
, directory
, repline
, ansi-terminal
, table-layout
default-language: Haskell2010