-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from JuliaPOMDP/parametric
Parametric
- Loading branch information
Showing
22 changed files
with
703 additions
and
640 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
docs/build/ | ||
docs/site/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Documenter, POMDPs | ||
|
||
makedocs( | ||
# options | ||
modules = [POMDPs] | ||
) | ||
|
||
deploydocs( | ||
repo = "github.com/JuliaPOMDP/POMDPs.jl.git", | ||
julia = "release", | ||
osname = "linux" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
site_name: POMDPs.jl | ||
repo_url: https://github.com/JuliaPOMDP/POMDPs.jl | ||
site_description: API for solving partially observable Markov decision processes in Julia. | ||
site_author: Maxim Egorov | ||
|
||
theme: readthedocs | ||
|
||
extra: | ||
palette: | ||
primary: 'indigo' | ||
accent: 'blue' | ||
|
||
extra_css: | ||
- assets/Documenter.css | ||
|
||
markdown_extensions: | ||
- codehilite | ||
- extra | ||
- tables | ||
- fenced_code | ||
|
||
extra_javascript: | ||
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML | ||
- assets/mathjaxhelper.js | ||
|
||
docs_dir: 'build' | ||
|
||
pages: | ||
- Home: index.md | ||
- Manual: guide.md | ||
- API: api.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Solver Documentation | ||
|
||
Documentation for the `POMDPs.jl` user interface. You can get help for any type or | ||
function in the module by typing `?` in the Julia REPL followed by the name of | ||
type or function. For example: | ||
|
||
```julia | ||
julia>using POMDPs | ||
julia>? | ||
help?>reward | ||
search: reward | ||
|
||
reward{S,A,O}(pomdp::POMDP{S,A,O}, state::S, action::A, statep::S) | ||
|
||
Returns the immediate reward for the s-a-s triple | ||
|
||
reward{S,A,O}(pomdp::POMDP{S,A,O}, state::S, action::A) | ||
|
||
Returns the immediate reward for the s-a pair | ||
|
||
``` | ||
|
||
{meta} | ||
CurrentModule = POMDPs | ||
|
||
## Contents | ||
|
||
{contents} | ||
Pages = ["api.md"] | ||
|
||
## Index | ||
|
||
{index} | ||
Pages = ["api.md"] | ||
|
||
|
||
## Types | ||
|
||
{docs} | ||
POMDP | ||
MDP | ||
AbstractSpace | ||
AbstractDistribution | ||
Solver | ||
Policy | ||
Belief | ||
BeliefUpdater | ||
|
||
## Model Functions | ||
|
||
{docs} | ||
states | ||
actions | ||
observations | ||
reward | ||
transition | ||
observation | ||
isterminal | ||
isterminal_obs | ||
n_states | ||
n_actions | ||
n_observations | ||
state_index | ||
action_index | ||
obs_index | ||
discount | ||
|
||
## Distribution/Space Functions | ||
|
||
{docs} | ||
rand | ||
dimensions | ||
iterator | ||
create_transition_distribution | ||
create_observation_distribution | ||
|
||
## Belief Functions | ||
|
||
{docs} | ||
initial_belief | ||
create_belief | ||
update | ||
convert_belief | ||
|
||
## Policy and Solver Functions | ||
|
||
{docs} | ||
create_policy | ||
solve | ||
updater | ||
action | ||
value | ||
|
||
## Simulator | ||
|
||
{docs} | ||
Simulator | ||
simulate | ||
|
||
## Utility Tools | ||
|
||
{docs} | ||
add | ||
@pomdp_func | ||
strip_arg | ||
|
||
## Constants | ||
|
||
{docs} | ||
REMOTE_URL | ||
SUPPORTED_SOLVERS |
Oops, something went wrong.