diff options
Diffstat (limited to 'all_pairs/source/dijkstra/ChangeLog.txt')
| -rw-r--r-- | all_pairs/source/dijkstra/ChangeLog.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/all_pairs/source/dijkstra/ChangeLog.txt b/all_pairs/source/dijkstra/ChangeLog.txt new file mode 100644 index 0000000..f96350b --- /dev/null +++ b/all_pairs/source/dijkstra/ChangeLog.txt | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | File: dijkstra.c | ||
| 2 | Original provenience: network section of MiBench | ||
| 3 | |||
| 4 | 2015-11-30: | ||
| 5 | - Replaced "NULL" with "0", remove #include of glibc_common.h | ||
| 6 | - Removed commented code referring to variable "qKill" | ||
| 7 | - Made ch, i, iPrev, iNode, iCost and iDist local variables | ||
| 8 | - Stripped (inconsistently applied) Hungarian notation, replaced | ||
| 9 | prefix "q" with prefix "queue" for global variables, renamed | ||
| 10 | "next_in" to "queueNext" and "qNew" to "newItem" | ||
| 11 | - Initialize queueHead statically (like queueCount and queueNext) | ||
| 12 | - Prefixed all functions and global variables with "dijkstra_", | ||
| 13 | renaming "dijkstra" to "dijkstra_find" | ||
| 14 | - Calculate a checksum in dijkstra_main, return its value in new | ||
| 15 | function dijkstra_return | ||
| 16 | - Added (empty) function dijkstra_init and a main function | ||
| 17 | - Reordered functions in source code: initialization- and | ||
| 18 | return-value-related functions first, followed by algorithm core | ||
| 19 | functions, followed by main functions | ||
| 20 | - Added function prototypes | ||
| 21 | - Applied code formatting with astyle as in the example | ||
| 22 | - Added general TACLeBench header to beginning of source code | ||
| 23 | |||
| 24 | 2016-03-15: | ||
| 25 | - Return 0 if checksum is as expected, -1 otherwise | ||
| 26 | - Make all initializations explicit | ||
| 27 | - Touch input matrix with volatile to rule out optimizations | ||
| 28 | - Add entrypoint pragma | ||
| 29 | |||
| 30 | 2016-06-14: | ||
| 31 | - Removed cast to make C++ compiler happy | ||
| 32 | |||
| 33 | Files: input.h, input.c | ||
| 34 | Original provenience: network section of MiBench | ||
| 35 | |||
| 36 | 2015-11-30: | ||
| 37 | - Prefix global variable "AdjMatrix" with "dijkstra_" | ||
| 38 | - Applied code formatting with astyle as in the example | ||
| 39 | |||
| 40 | File: glibc_common.h | ||
| 41 | Original provenience: network section of MiBench | ||
| 42 | |||
| 43 | 2015-11-30: | ||
| 44 | - Removed file | ||
