this repo has no description
1opam-version: "2.0"
2maintainer: "Valentin Reis <fre@freux.fr>"
3authors: ["Valentin Reis <fre@freux.fr>"]
4homepage: "https://freuk.github.io/obandit/"
5doc: "https://freuk.github.io/obandit/api.docdir"
6license: "ISC"
7dev-repo: "git+https://github.com/freuk/obandit.git"
8bug-reports: "https://github.com/freuk/obandit/issues"
9depends: [
10 "ocaml" {>= "4.01.0" & < "5.0.0"}
11 "ocamlfind" {build}
12 "ocamlbuild" {build}
13 "topkg" {build}
14 "batteries"
15]
16build: [
17 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"]
18 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"]
19 {with-test}
20 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
21]
22synopsis: "Ocaml Multi-Armed Bandits"
23description: """
24[](https://zenodo.org/badge/latestdoi/81206527)
25
26Obandit is an OCaml module for basic multi-armed bandits. It supports the
27EXP3, UCB1 and Epsilon-greedy algorithms.
28
29Obandit is distributed under the ISC license."""
30url {
31 src:
32 "https://github.com/freuk/obandit/releases/download/v0.2.3.1-5-g40e1b6c/obandit-0.2.3.1-5-g40e1b6c.tbz"
33 checksum: [
34 "sha256=be3f5f5251993066ef25fc34f921376dc31383d95b0f226c2af41d1a7394b0bd"
35 "md5=d82685c6eee4b958f480a10f86c78d13"
36 ]
37}