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 ["dune" "subst"] {dev} 13 ["dune" "build" "-p" name "-j" jobs] 14 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.02.0"} 18 "dune" 19 "benchmark" {with-test} 20] 21synopsis: "Find roots of 1D functions" 22description: """ 23The module `Root1D` provides a collection of functions to seek roots 24of functions `float → float`. 25 26 27Installation 28------------ 29 30The easier way of installing this package is by using [opam][]: 31 32```shell 33opam install root1d 34``` 35 36To compile by hand, install [dune][] and do `dune build @install`. 37 38 39[opam]: https://opam.ocaml.org/ 40[dune]: https://github.com/ocaml/dune 41 42Documentation 43------------- 44 45See the [signature of `Root1D`](src/Root1D.mli). It can also be 46consulted rendered to [HTML](https://chris00.github.io/root1d/doc/).""" 47url { 48 src: 49 "https://github.com/Chris00/root1d/releases/download/0.5.1/root1d-0.5.1.tbz" 50 checksum: [ 51 "sha256=a5bce3aef1726da1579c2e9db5c6285371c0bcdb96a58f6b91bcd4964c0405ed" 52 "md5=5596bf68b453d460d4f1cd7338c07c9b" 53 ] 54}