-
Notifications
You must be signed in to change notification settings - Fork 6
/
NAMESPACE
137 lines (136 loc) · 3.41 KB
/
NAMESPACE
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# Generated by roxygen2: do not edit by hand
S3method(add_policy,MDP)
S3method(add_policy,POMDP)
S3method(plot_value_function,MDP)
S3method(plot_value_function,POMDP)
S3method(policy,MDP)
S3method(policy,POMDP)
S3method(print,MDP)
S3method(print,POMDP)
S3method(print,POMDP_solution)
S3method(print,text)
S3method(regret,MDP)
S3method(regret,POMDP)
S3method(value_function,MDP)
S3method(value_function,POMDP)
export(MDP)
export(MDP_policy_evaluation)
export(O_)
export(POMDP)
export(R_)
export(T_)
export(absorbing_states)
export(actions)
export(add_policy)
export(colors_continuous)
export(colors_discrete)
export(curve_multiple_directed)
export(epoch_to_episode)
export(estimate_belief_for_nodes)
export(greedy_MDP_action)
export(greedy_MDP_policy)
export(gridworld_animate)
export(gridworld_init)
export(gridworld_matrix)
export(gridworld_maze_MDP)
export(gridworld_plot_policy)
export(gridworld_plot_transition_graph)
export(gridworld_rc2s)
export(gridworld_s2rc)
export(is_converged_POMDP)
export(is_solved_MDP)
export(is_solved_POMDP)
export(is_timedependent_POMDP)
export(make_fully_observable)
export(make_partially_observable)
export(manual_MDP_policy)
export(normalize_MDP)
export(normalize_POMDP)
export(observation_matrix)
export(observation_val)
export(optimal_action)
export(plot_belief_space)
export(plot_policy_graph)
export(plot_transition_graph)
export(plot_value_function)
export(policy)
export(policy_graph)
export(projection)
export(q_values_MDP)
export(random_MDP_policy)
export(reachable_states)
export(read_POMDP)
export(regret)
export(remove_unreachable_states)
export(reward)
export(reward_matrix)
export(reward_node_action)
export(reward_val)
export(round_stochastic)
export(sample_belief_space)
export(simulate_MDP)
export(simulate_POMDP)
export(solve_MDP)
export(solve_MDP_DP)
export(solve_MDP_TD)
export(solve_POMDP)
export(solve_POMDP_parameter)
export(solve_SARSOP)
export(start_vector)
export(transition_graph)
export(transition_matrix)
export(transition_val)
export(update_belief)
export(value_function)
export(write_POMDP)
import(Rcpp)
import(pomdpSolve)
importFrom(Matrix,Math)
importFrom(Matrix,Math2)
importFrom(Matrix,cBind)
importFrom(Matrix,coerce)
importFrom(Matrix,colSums)
importFrom(Matrix,crossprod)
importFrom(Matrix,nnzero)
importFrom(Matrix,rBind)
importFrom(Matrix,spMatrix)
importFrom(foreach,"%dopar%")
importFrom(foreach,foreach)
importFrom(foreach,getDoParWorkers)
importFrom(foreach,times)
importFrom(graphics,abline)
importFrom(graphics,axis)
importFrom(graphics,barplot)
importFrom(graphics,box)
importFrom(graphics,image)
importFrom(graphics,legend)
importFrom(graphics,lines)
importFrom(graphics,plot)
importFrom(graphics,text)
importFrom(igraph,"%>%")
importFrom(igraph,"E<-")
importFrom(igraph,"V<-")
importFrom(igraph,"edge_attr<-")
importFrom(igraph,"vertex_attr<-")
importFrom(igraph,E)
importFrom(igraph,V)
importFrom(igraph,add_layout_)
importFrom(igraph,as_data_frame)
importFrom(igraph,as_edgelist)
importFrom(igraph,as_tree)
importFrom(igraph,edge_attr)
importFrom(igraph,graph_from_adjacency_matrix)
importFrom(igraph,graph_from_data_frame)
importFrom(igraph,graph_from_edgelist)
importFrom(igraph,induced_subgraph)
importFrom(igraph,norm_coords)
importFrom(igraph,plot.igraph)
importFrom(igraph,vertex_attr)
importFrom(methods,as)
importFrom(processx,run)
importFrom(stats,runif)
importFrom(utils,head)
importFrom(utils,read.table)
importFrom(utils,tail)
importFrom(utils,type.convert)
useDynLib(pomdp, .registration=TRUE)