diff options
Diffstat (limited to 'all_pairs/source/epic/ChangeLog.txt')
| -rw-r--r-- | all_pairs/source/epic/ChangeLog.txt | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/all_pairs/source/epic/ChangeLog.txt b/all_pairs/source/epic/ChangeLog.txt new file mode 100644 index 0000000..5aad4f5 --- /dev/null +++ b/all_pairs/source/epic/ChangeLog.txt | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | Files: epic.c epic_data.h epic_data.c | ||
| 2 | Original provenience: MediaBench benchmark suite, | ||
| 3 | http://euler.slu.edu/~fritts/mediabench/mb1/index.html | ||
| 4 | |||
| 5 | 2016-02-03: | ||
| 6 | - Added TACLeBench header, also kept original copyright notice | ||
| 7 | - Removed commented-out code | ||
| 8 | - Removed seemingly unnecessary empty lines | ||
| 9 | - Removed unused function, variable, macro and type declarations except where | ||
| 10 | they may help understanding the program. | ||
| 11 | - Slightly changed wording of original comments to keep them in line with the | ||
| 12 | modified/removed code parts. | ||
| 13 | - Separated epic.c to epic.c and epic.h | ||
| 14 | - Added proper '#ifndef __EPIC_DATA_H_' and friends to epic_data.h | ||
| 15 | - Moved around all the following so that they are in the given order just after | ||
| 16 | the header | ||
| 17 | - macro definitions | ||
| 18 | - forward declaration of functions | ||
| 19 | - declaration of global variables | ||
| 20 | - Added a new main function that first calls init function then the old main | ||
| 21 | function sans init | ||
| 22 | - Annotated epic_main() as the entry point of the analysis | ||
| 23 | - Applied code formatting according to the following rules | ||
| 24 | - Lines shall not be wider than 80 characters; whenever possible, appropriate | ||
| 25 | line breaks shall be inserted to keep lines below 80 characters | ||
| 26 | - Indentation is done using whitespaces only, no tabs. Code is indented by | ||
| 27 | two whitespaces | ||
| 28 | - Two empty lines are put between any two functions | ||
| 29 | - In non-empty lists or index expressions, opening '(' and '[' are followed by | ||
| 30 | one whitespace, closing ')' and ']' are preceded by one whitespace | ||
| 31 | - In comma- or colon-separated argument lists, one whitespace is put after | ||
| 32 | each comma/colon | ||
| 33 | - Names of functions and global variables all start with a benchmark-specific | ||
| 34 | prefix (here: epic_) followed by lowercase letter | ||
| 35 | - For pointer types, one whitespace is put before the '*' | ||
| 36 | - Operators within expressions shall be preceded and followed by one | ||
| 37 | whitespace | ||
| 38 | - Code of then- and else-parts of if-then-else statements shall be put in | ||
| 39 | separate lines, not in the same lines as the if-condition or the keyword | ||
| 40 | "else" | ||
| 41 | - Opening braces '{' denoting the beginning of code for some if-else or loop | ||
| 42 | body shall be put at the end of the same line where the keywords "if", | ||
| 43 | "else", "for", "while" etc. occur | ||
| 44 | |||
| 45 | 2016-10-10: | ||
| 46 | - removed unused parameter 'char *edges' in epic_internal_filter() | ||
| 47 | - included input data definition in epic.c, and removed epic_data.c and epic_data.h | ||
| 48 | |||
| 49 | 2016-10-12: | ||
| 50 | - added initial value to variable 'rt_edge_res_pos' (in case the first for loop | ||
| 51 | at line 775) is not executed) | ||
| 52 | - added initial value to variable 'first_col' (in case the first for loop | ||
| 53 | at line 775) is not executed) | ||
| 54 | |||
| 55 | 2016-10_14: | ||
| 56 | - added epic_return() function | ||
