API

Automodule this stuff:

>>> for i in range(5):
...    print(i)
... 
0
1
2
3
4

(Source code, png, hires.png, pdf)

_images/api-1.png

irlc.ex01.agent.Agent(env)

Main agent class. See (Her21, Subsection 4.4.3) for additional details.

irlc.ex01.agent.train(env[, agent, ...])

Implement the main training loop, see (Her21, Subsection 4.4.4).

irlc.ex01.sphinx.MainClass1.function1(arg1, ...)

returns (arg1 / arg2) + arg3

irlc.ex01.sphinx.MainClass1()

This class docstring shows how to use sphinx and rst syntax

irlc.ex02.dp.DP_stochastic(model)

Implement the stochastic DP algorithm.

irlc.ex02.dp_model.DPModel(N)

Code for the base DP model class.

irlc.ex04.continuous_time_model.ContiniousTimeSymbolicModel([...])

Continious time symbolic model.