-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
175 lines (133 loc) · 7.31 KB
/
ChangeLog
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
2003-05-13 Tony Cassandra <[email protected]>
* ChangeLog: adding per GNU build addition
* configure.ac: adding per GNU build addition
* Makefile.am: adding per GNU build addition
* AUTHORS: adding per GNU build addition
* NEWS: adding per GNU build addition
* THANKS: adding per GNU build addition
* src/Makefile.am: adding per GNU build addition
* mdp/Makefile.am: adding per GNU build addition
* lp-solve/Makefile.am: adding per GNU build addition
* config/: adding per GNU build addition
* config/bootstrap: adding per GNU build addition
* src/: Added XML headers to all 'src' dir source files
* src/mdp/scaner.l: Using parser.h instead of parser.tab.h
* src/lp-solve/lex.l: Added includes and extern defs
2004-03-08 Tony Cassandra <[email protected]>
* src/finite-grid.c: fixed major logic bug in main function call
* src/utils.c: added to support map-belief executable
* src/map-belief-main.c: added to support map-belief executable
* src/: refactored some of the belief and alpha file writing things
2004-03-16 Tony Cassandra <[email protected]>
* src/pg.[ch]: adding for explicit policy graph data structure
* src/pg-isomorphism-main.c: adding utility program to check isomorphisms
* src/params.c: added '-v' and '-version' flags
2004-04-18 Tony Cassandra <[email protected]>
* added the sort-alpha-list utility program
* src/pomdp-solve.c: sorting alpha list before saving for -save_all
* added the compare-alpha-lists utility program
* src/utils.c: added more alpha vector stats to the map-belief utility
* added the purge-alpha-list utility program
* src/finite-grid.c: added alpha list purge to finite grid method
2004-04-19 Tony Cassandra <[email protected]>
* src/pomdp-solve.c: fixed context bug for 'exact' stopping criteria
2004-06-16 Tony Cassandra <[email protected]>
* src/pomdp-tools-main.c: added for consolidation of misc tools programs
* src/associative-array.c: added for better option handling
* src/associative-array.h: added for better option handling
* src/command-line.c: added for better option handling
* src/command-line.h: added for better option handling
* src/config-file.c: added for better option handling
* src/config-file.h: added for better option handling
* src/pomdp-tools-options.c: added for better option handling
* src/pomdp-tools-options.h: added for better option handling
* src/program-options.c: added for better option handling
* src/program-options.h: added for better option handling
* src/compare-alpha-main.c: removed due to consolidation
* src/map-belief-main.c: removed due to consolidation
* src/pg-isomorphism-main.c: removed due to consolidation
* src/pomdp-tools-main.c: removed due to consolidation
* src/purge-alpha-main.c: removed due to consolidation
* src/sort-alpha-main.c: removed due to consolidation
2004-06-17 Tony Cassandra <[email protected]>
* src/Makefile.am: Added object files to 'tools' binary list
* src/main.c: altered main to deal with new option scheme
* src/params.c: removed functionality that new option scheme handles
* src/params.h: removed functionality that new option scheme handles
* src/pomdp-solve.c: removed usage routine, new option scheme handles this
* src/pomdp-tools-main.c: updated for more unique names
* src/pomdp-tools-options.c: updated for more unique names
* src/pomdp-tools-options.h: updated for more unique names
* src/program-options.c: updated for more unique names
* src/program-options.h: updated for more unique names
2004-07-01 Tony Cassandra <[email protected]>
* src/pomdp-tools-main.c: Added belief update loop tool
* src/utils.c: Added belief update loop tool
2004-09-03 Tony Cassandra <[email protected]>
* examples/: Added example .POMDP and .prob files
* examples/: Added example .POMDP and .prob files
* src/common.c: Added shouldTerminateEarly() stub procedure
* src/inc-prune.c: Added shouldTerminateEarly() call
* src/two-pass.c: Added two shouldTerminateEarly() calls
* src/witness.c: Added shouldTerminateEarly() call
* src/scripts/generate-options/: Added script for auto-code generation
2004-10-01 Tony Cassandra <[email protected]>
* src/mcgs.c: Merged this into main pomdp-solve executable
* src/finite-grid.c: Fixed bug in looping for initial belief list
* src/finite-grid.c: Made default belief list size 10,000 (old=50,000)
* src/finite-graid.c: Added option 'initial' for finite grid types
2004-10-05 Tony Cassandra <[email protected]>
* src/pg-eval.[ch]: Added for pomdp-tool use (future)
* src/laspack-utils.[ch]: Added for laspack support (future)
* src/laspack: added library source code for future use
2004-10-06 Tony Cassandra <[email protected]>
* src/mdp/scanner.l: Added '\r' as no-op character
* src/command-line.h: Increased MAX_CMD_LINE_STRING_LEN to 1024
2004-10-08 Tony Cassandra <[email protected]>
* src/alpha.c: Redid isBetterValue to use GreaterThan macro
* src/global.h: Redid isBetterValue to use GreaterThan macro
* src/pomdp-solve.c: Added sorting before 'exact' stopping criteria
* src/pomdp.c: Redid isBetterValue to use GreaterThan macro
* src/pomdp.h: Removed spurious isBetterValue() function
* src/utils.c: Redid isBetterValue to use GreaterThan macro
* src/pomdp-solve-options.[ch]: Added new defaults
2004-10-09 Tony Cassandra <[email protected]>
* configure.ac: Added debug and dmalloc support
* src/Makefile.am: Added debug and dmalloc support
* src/mdp/Makefile.am: Added debug and dmalloc support
* src/lp-solve/Makefile.am: Added debug and dmalloc support
* src/xalloc.[ch]: Redid to support dmalloc
2004-10-31 Tony Cassandra <[email protected]>
* pg.[ch]: Merged policy-graph.[ch] into here
* policy-graph.[ch]: Removed due to merge with pg.[ch]
* pg.[ch]: Refactored so only one read and one write pg routine
* pg-eval-main.c: changes to support being hooked up to pomdp-tools
* pomdp-tools-main.c: Hooked up pg_eval tool
* pomdp-tools-main.c: Added support for pg_relink tool
* utils.[ch]: Added routines to support pg_relink tool
* pomdp-tools-options.xml: Added 'pg_relink option
* pomdp-solve-options.xml: Added 'save_penultimate' flag
* params.[ch]: Added penultimate_filename to struct
2005-01-18 Tony Cassandra <[email protected]>
* util.c: Added tracking action in alpha compare
2005-01-25 Tony Cassandra <[email protected]>
* common.c: Added things to support belief-based alpah compare
* pomdp-solve.c: Added case of finite grid stopping criteria
* finite-grid.[ch]: Added special sopping critera function
* utils.c:
2005-02-01 Tony Cassandra <[email protected]>
* src/pomdp-fg-main.c: Beginnings of separate finite grid binary
* src/index-list.[ch]: Maintains a list of integers
* testing/Makefile.am: Unit test automake file
* testing/main-test.c: Unit test driver program
* testing/index-list-test.[ch]: Unit test for index-list.c
2005-05-27 Tony Cassandra <[email protected]>
* src/Makefile.am: Added flag to YFLAGS to autogenerate header file
2005-10-15 Tony Cassandra <[email protected]>
* alpha.c: added roundAlphaList()
* pomdp-solve.c: now pass old list to improveFiniteGrid()
* finite-grid.c: added retaining old vector if new not as good
* finite-grid.c: added lower bound default initial value function
* pomdp-solve-options.xml: Added a new flag '-force_rounding'
* pomdp-solve-options.xml: Added a new 'file' value to '-fg_type'
* pomdp-solve-options.xml: Added a new option '-grid_filename