-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDESCRIPTION
86 lines (86 loc) · 2.36 KB
/
DESCRIPTION
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Package: pomdp
Title: Infrastructure for Partially Observable Markov Decision Processes (POMDP)
Version: 1.2.4
Date: 2024-12-05
Authors@R: c(
person(given = "Michael",
family = "Hahsler",
role = c("aut", "cph", "cre"),
email = "mhahsler@lyle.smu.edu",
comment = c(ORCID = "0000-0003-2716-1405")),
person(given = "Hossein",
family = "Kamalzadeh",
role = c("ctb")))
Description: Provides the infrastructure to define and analyze the solutions of Partially Observable Markov Decision Process (POMDP) models. Interfaces for various exact and approximate solution algorithms are available including value iteration, point-based value iteration and SARSOP. Smallwood and Sondik (1973) <doi:10.1287/opre.21.5.1071>.
Classification/ACM: G.4, G.1.6, I.2.6
URL: https://github.com/mhahsler/pomdp
BugReports: https://github.com/mhahsler/pomdp/issues
Depends: R (>= 3.5.0)
Imports: pomdpSolve (>= 1.0.4), processx, stats, methods, Matrix, Rcpp, foreach, igraph
SystemRequirements: C++17
LinkingTo: Rcpp
Suggests: knitr,
rmarkdown,
gifski,
testthat,
Ternary,
visNetwork,
sarsop,
doParallel
VignetteBuilder: knitr
Encoding: UTF-8
License: GPL (>=3)
Copyright: Copyright (C) Michael Hahsler and Hossein Kamalzadeh.
RoxygenNote: 7.3.2
Roxygen: list(markdown = TRUE)
Collate:
'AAA_check_installed.R'
'AAA_pomdp-package.R'
'AAA_shorten.R'
'Cliff_walking.R'
'DynaMaze.R'
'POMDP.R'
'MDP.R'
'MDP_policy_functions.R'
'Maze.R'
'POMDP_file_examples.R'
'RcppExports.R'
'RussianTiger.R'
'Tiger.R'
'Windy_gridworld.R'
'accessors.R'
'accessors_reward.R'
'accessors_trans_obs.R'
'actions.R'
'add_policy.R'
'check_and_fix_MDP.R'
'colors.R'
'estimate_belief_for_nodes.R'
'foreach_helper.R'
'gridworld.R'
'make_partially_observable.R'
'optimal_action.R'
'plot_belief_space.R'
'plot_policy_graph.R'
'policy.R'
'policy_graph.R'
'print.text.R'
'projection.R'
'queue.R'
'reachable_and_absorbing.R'
'read_write_POMDP.R'
'read_write_pomdp_solve.R'
'regret.R'
'reward.R'
'round_stochchastic.R'
'sample_belief_space.R'
'simulate_MDP.R'
'simulate_POMDP.R'
'solve_MDP.R'
'solve_POMDP.R'
'solve_SARSOP.R'
'stack.R'
'transition_graph.R'
'update_belief.R'
'value_function.R'
'which_max_random.R'