this repo has no description
1opam-version: "2.0"
2maintainer: "tim@tbrk.org"
3authors: [
4 "Timothy Bourke <tim@tbrk.org>"
5 "Jun Inoue <Jun.Lambda@gmail.com>"
6 "Marc Pouzet <Marc.Pouzet@ens.fr>"
7]
8homepage: "http://inria-parkas.github.io/sundialsml/"
9bug-reports: "https://github.com/inria-parkas/sundialsml/issues"
10dev-repo: "git+https://github.com/inria-parkas/sundialsml"
11doc: "http://inria-parkas.github.io/sundialsml/"
12tags: [
13 "numerical"
14 "simulation"
15 "mathematics"
16 "science"
17]
18license: "BSD-3-Clause"
19build: [
20 [
21 "./configure"
22 "--stubdir=%{stublibs}%/"
23 "--libdir=%{lib}%/"
24 "--docdir=%{doc}%/"
25 ]
26 [make "doc"] {with-doc}
27]
28install: [
29 [make "install-findlib"]
30 [make "install-doc"] {with-doc}
31]
32depends: [
33 "ocaml" {>= "4.02.3" & < "4.14"}
34 "base-bigarray"
35 "ocamlfind" {build}
36 "conf-sundials" {build}
37]
38depopts: [
39 "mpi"
40]
41synopsis: "Interface to the Sundials suite of numerical solvers"
42description: """
43Sundials is a collection of six numerical solvers: CVODE, CVODES, IDA, IDAS,
44ARKODE, and KINSOL. This interface provides access to all features of the
45underlying library except the Hypre and PETSC nvectors.
46
47The structure of the OCaml interface mostly follows that of the original
48library, both for ease of reading the existing documentation and for
49converting existing source code, but several changes have been made for
50programming convenience and to increase safety, namely:
51
52- solver sessions are mostly configured via algebraic data types rather than
53 multiple function calls;
54
55- errors are signalled by exceptions not return codes (also from
56 user-supplied callback routines);
57
58- user data is shared between callback routines via closures (partial
59 applications of functions);
60
61- vectors are checked for compatibility with a session (using a combination
62 of static and dynamic checks), and;
63
64- explicit free commands are not necessary since OCaml is a
65 garbage-collected language.
66
67The detailed OCaml documentation contains cross-links to the original
68documentation. OCaml versions of the standard examples usually have an
69overhead of about 30% compared to the original C versions, and only rarely
70more than 50%."""
71url {
72 src: "https://github.com/inria-parkas/sundialsml/archive/v3.1.1p1.zip"
73 checksum: [
74 "sha256=ff2554dab84a15a6ea575059dbf615a8493d6ccb37c473e760c53018638601b1"
75 "md5=64363f3bccec3c561fa56ed59e555361"
76 ]
77}