-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkov.opam
31 lines (31 loc) · 1.06 KB
/
markov.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"Interface between RL agents and continuous-time, concurrrently-running system"
description:
"Reinforcement learning agents assume they are interacting with a Markov Decision Process (MDP). Real-world systems are continuous-time and run concurrently with RL agents processes. This project provides a set of abstract interfaces that attempt to formalise the software components that must be implemented in order to develop an MDP-assuming RL agent capably of interacting with a continuous-time, concurrently-running system."
maintainer: ["Ed Chapman"]
authors: ["Ed Chapman"]
license: "MIT"
homepage: "https://github.com/edchapman88/blue"
bug-reports: "https://github.com/edchapman88/blue/issues"
depends: [
"ocaml" {>= "5.0"}
"dune" {>= "3.16"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/edchapman88/blue.git"