summaryrefslogtreecommitdiffstats
path: root/baseline/source/dijkstra/ChangeLog.txt
diff options
context:
space:
mode:
Diffstat (limited to 'baseline/source/dijkstra/ChangeLog.txt')
-rw-r--r--baseline/source/dijkstra/ChangeLog.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/baseline/source/dijkstra/ChangeLog.txt b/baseline/source/dijkstra/ChangeLog.txt
new file mode 100644
index 0000000..f96350b
--- /dev/null
+++ b/baseline/source/dijkstra/ChangeLog.txt
@@ -0,0 +1,44 @@
1File: dijkstra.c
2Original provenience: network section of MiBench
3
42015-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
242016-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
302016-06-14:
31- Removed cast to make C++ compiler happy
32
33Files: input.h, input.c
34Original provenience: network section of MiBench
35
362015-11-30:
37- Prefix global variable "AdjMatrix" with "dijkstra_"
38- Applied code formatting with astyle as in the example
39
40File: glibc_common.h
41Original provenience: network section of MiBench
42
432015-11-30:
44- Removed file