-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
137 lines (136 loc) · 3.29 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(absorbing_states,MDP)
S3method(action,MDP)
S3method(add_policy,MDP)
S3method(epoch_to_episode,MDP)
S3method(greedy_action,MDP)
S3method(greedy_action,matrix)
S3method(greedy_policy,MDP)
S3method(greedy_policy,matrix)
S3method(plot_value_function,MDP)
S3method(policy,MDP)
S3method(print,MDP)
S3method(regret,MDP)
S3method(reward,MDP)
S3method(reward_matrix,MDP)
S3method(transition_matrix,MDP)
S3method(unreachable_states,MDP)
S3method(value_function,MDP)
export(A)
export(MDP)
export(P_)
export(Q_random)
export(Q_values)
export(Q_zero)
export(R_)
export(S)
export(V_random)
export(V_zero)
export(absorbing_states)
export(act)
export(action)
export(action_discrepancy)
export(add_policy)
export(available_actions)
export(bellman_operator)
export(bellman_update)
export(colors_continuous)
export(colors_discrete)
export(curve_multiple_directed)
export(epoch_to_episode)
export(find_reachable_states)
export(greedy_action)
export(greedy_policy)
export(gw_animate)
export(gw_init)
export(gw_matrix)
export(gw_maze_MDP)
export(gw_path)
export(gw_plot)
export(gw_plot_transition_graph)
export(gw_random_maze)
export(gw_rc2s)
export(gw_read_maze)
export(gw_s2rc)
export(gw_transition_prob)
export(gw_transition_prob_end_state)
export(induced_reward_matrix)
export(induced_transition_matrix)
export(is_converged_MDP)
export(is_solved_MDP)
export(manual_policy)
export(normalize_MDP)
export(plot_transition_graph)
export(plot_value_function)
export(policy)
export(policy_evaluation)
export(policy_evaluation_LP)
export(random_policy)
export(regret)
export(remove_unreachable_states)
export(reward)
export(reward_matrix)
export(round_stochastic)
export(sample_MDP)
export(solve_MDP)
export(solve_MDP_DP)
export(solve_MDP_LP)
export(solve_MDP_MC)
export(solve_MDP_TD)
export(solve_MDP_sampling)
export(start_vector)
export(transition_graph)
export(transition_matrix)
export(unreachable_states)
export(value_error)
export(value_function)
export(visit_probability)
import(Rcpp)
importFrom(Matrix,Math)
importFrom(Matrix,Math2)
importFrom(Matrix,cBind)
importFrom(Matrix,coerce)
importFrom(Matrix,colSums)
importFrom(Matrix,crossprod)
importFrom(Matrix,diag)
importFrom(Matrix,nnzero)
importFrom(Matrix,rBind)
importFrom(Matrix,rowSums)
importFrom(Matrix,spMatrix)
importFrom(Matrix,sparseVector)
importFrom(Matrix,t)
importFrom(fastmap,fastmap)
importFrom(fastmap,faststack)
importFrom(foreach,"%do%")
importFrom(foreach,"%dopar%")
importFrom(foreach,foreach)
importFrom(foreach,getDoParWorkers)
importFrom(foreach,times)
importFrom(grDevices,hcl.colors)
importFrom(graphics,abline)
importFrom(graphics,barplot)
importFrom(graphics,box)
importFrom(graphics,image)
importFrom(graphics,legend)
importFrom(graphics,text)
importFrom(igraph,"%>%")
importFrom(igraph,"E<-")
importFrom(igraph,"V<-")
importFrom(igraph,E)
importFrom(igraph,V)
importFrom(igraph,add_layout_)
importFrom(igraph,as_data_frame)
importFrom(igraph,as_tree)
importFrom(igraph,graph_from_adjacency_matrix)
importFrom(igraph,graph_from_data_frame)
importFrom(igraph,induced_subgraph)
importFrom(igraph,norm_coords)
importFrom(methods,as)
importFrom(methods,is)
importFrom(methods,new)
importFrom(stats,runif)
importFrom(utils,head)
importFrom(utils,read.table)
importFrom(utils,tail)
importFrom(utils,type.convert)
useDynLib(markovDP, .registration=TRUE)