-
Notifications
You must be signed in to change notification settings - Fork 51
/
MANIFEST.in
27 lines (27 loc) · 1.31 KB
/
MANIFEST.in
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
include ./pomdp_py/representations/distribution/particles.pxd
include ./pomdp_py/representations/distribution/histogram.pxd
include ./pomdp_py/representations/distribution/gaussian.pxd
include ./pomdp_py/representations/belief/particles.pxd
include ./pomdp_py/utils/cython_utils.pxd
include ./pomdp_py/framework/oopomdp.pxd
include ./pomdp_py/framework/planner.pxd
include ./pomdp_py/framework/basics.pxd
include ./pomdp_py/algorithms/po_rollout.pxd
include ./pomdp_py/algorithms/pomcp.pxd
include ./pomdp_py/algorithms/po_uct.pxd
include ./pomdp_py/algorithms/value_iteration.pxd
include ./pomdp_py/problems/rocksample/cythonize/rocksample_problem.pyx
include ./pomdp_py/problems/tiger/cythonize/tiger_problem.pyx
include ./pomdp_py/representations/distribution/histogram.pyx
include ./pomdp_py/representations/distribution/gaussian.pyx
include ./pomdp_py/representations/distribution/particles.pyx
include ./pomdp_py/representations/belief/particles.pyx
include ./pomdp_py/utils/cython_utils.pyx
include ./pomdp_py/framework/planner.pyx
include ./pomdp_py/framework/basics.pyx
include ./pomdp_py/framework/oopomdp.pyx
include ./pomdp_py/algorithms/po_rollout.pyx
include ./pomdp_py/algorithms/value_iteration.pyx
include ./pomdp_py/algorithms/pomcp.pyx
include ./pomdp_py/algorithms/po_uct.pyx
include ./thirdparty/pomdp-solve/src/pomdp-solve