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" 10doc: "http://inria-parkas.github.io/sundialsml/" 11tags: [ 12 "numerical" 13 "simulation" 14 "mathematics" 15 "science" 16] 17license: "BSD-3-Clause" 18build: [ 19 [ 20 "./configure" 21 "--stubdir=%{stublibs}%/" 22 "--libdir=%{lib}%/" 23 "--docdir=%{doc}%/" 24 ] 25 [make "tests.opt.log"] {with-test} 26 [make "doc"] {with-doc} 27] 28install: [ 29 [make "install-findlib"] 30 [make "install-doc"] {with-doc} 31] 32depends: [ 33 "ocaml" {>= "3.12.1" & < "4.14"} 34 "base-bigarray" 35 "ocamlfind" 36 "conf-sundials" {build} 37] 38depopts: [ 39 "mpi" 40] 41dev-repo: "git+https://github.com/inria-parkas/sundialsml" 42synopsis: 43 "Sundials/ML is an interface to the Sundials suite of numerical solvers" 44description: """ 45Sundials is a collection of six numerical solvers: CVODE, CVODES, IDA, IDAS, 46ARKODE, and KINSOL. This interface provides access to all features of the 47underlying library. 48 49The structure of the OCaml interface mostly follows that of the original 50library, both for ease of reading the existing documentation and for 51converting existing source code, but several changes have been made for 52programming convenience and to increase safety, namely: 53 54- solver sessions are mostly configured via algebraic data types rather than 55 multiple function calls; 56 57- errors are signalled by exceptions not return codes (also from 58 user-supplied callback routines); 59 60- user data is shared between callback routines via closures (partial 61 applications of functions); 62 63- vectors are checked for compatibility with a session (using a combination 64 of static and dynamic checks), and; 65 66- explicit free commands are not necessary since OCaml is a 67 garbage-collected language. 68 69The OCaml documentation contains extensive cross-links to the original 70documentation. OCaml versions of the standard examples usually have an 71overhead of about 30% compared to the original C versions, and almost never 72more than 50%.""" 73url { 74 src: "https://github.com/inria-parkas/sundialsml/archive/v2.6.2p1.zip" 75 checksum: [ 76 "sha256=451b3a1cf1b24c6a1483945dac0901c9f1a104e1364081dd0443796ee7e179ab" 77 "md5=71fd10d67a87969d9fda2cbc188124f4" 78 ] 79}