-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
56 lines (40 loc) · 2.07 KB
/
README
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
**********************************************************************
| POMDP Solve |
| |
| version 5.1 |
| by Anthony R. Cassandra |
**********************************************************************
Program for performing value iteration on partially observable Markov
decision processes (POMDPs).
Contents:
README: This file.
COPYRIGHT: The legal stuff. This version of the code was done
independently, but is based upon previous work done at
Brown University.
INSTALL:
THANKS:
NEWS:
AUTHORS:
ChangeLog: Changes to the code since version 4.0
ToDo: My personal list of things I would like to do with the code, but
haven't gotten around to.
./src: The main source directory for the pomdp-solve program.
./doc: This directory has some useful documentation such as file
formats, command line arguments, etc. Start with the
index.html file to see the various documents.
./mdp: This directory contains the code for a library of low-level
POMDP manipulation routines, including parsing files and the
internal representation used by the program. Only look at the
stuff in this directory if you want to muck around with the
file format and/or the internal representation.
./lp_solve: This directory contains the code for a public domain
linear programming solver. It is included it in this
distribution because some minor changes were needed to
integrate it with the pomdp-solve code. If the commerical
program CPLEX does not exist, this is what is used to
solve the linear programs required.
./test: This directory has some test cases used by the auto-test
executable. It contains some POMDP files as well as some
finite and infinite horizon value functions and policy
graphs.
./config: project-specific GNU build tools