this repo has no description
1opam-version: "2.0"
2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
3authors: [ "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
4 "Edgar Friendly <thelema314@gmail.com>" ]
5tags: ["scientfic" "root finding"]
6license: "ISC"
7homepage: "https://github.com/Chris00/root1d"
8dev-repo: "git+https://github.com/Chris00/root1d.git"
9bug-reports: "https://github.com/Chris00/root1d/issues"
10doc: "https://Chris00.github.io/root1d/doc"
11build: [
12 ["jbuilder" "subst" "-p" name] {dev}
13 ["jbuilder" "build" "-p" name "-j" jobs]
14 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
15]
16depends: [
17 "ocaml" {>= "4.02.0"}
18 "ocamlfind" {build}
19 "jbuilder" {>= "1.0+beta9"}
20 "benchmark" {with-test}
21]
22depopts: [
23 "benchmark"
24]
25synopsis: "Find roots of 1D functions"
26description: """
27The module `Root1D` provides a collection of functions to seek roots
28of functions `float → float`.
29
30
31Installation
32------------
33
34The easier way of installing this package is by using [opam][]:
35
36```shell
37opam install root1d
38```
39
40To compile bu hand, install [jbuilder][] and do `jbuilder build`.
41
42
43[opam]: https://opam.ocaml.org/
44[jbuilder]: https://github.com/janestreet/jbuilder
45
46Documentation
47-------------
48
49See the [signature of `Root1D`](src/Root1D.mli). It can also be
50consulted rendered to [HTML](http://math.umons.ac.be/an/software/doc/Root1D/)."""
51url {
52 src:
53 "https://github.com/Chris00/root1d/releases/download/0.5/root1d-0.5.tbz"
54 checksum: [
55 "sha256=1605ca9e7496569e17ee9a404b33a7a9e0ca109b99b91d8954e2886455e3d201"
56 "md5=3cf56f6370eb6e425dd9aa2439092582"
57 ]
58}